user.pb.go 611 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916139171391813919139201392113922139231392413925139261392713928139291393013931139321393313934139351393613937139381393913940139411394213943139441394513946139471394813949139501395113952139531395413955139561395713958139591396013961139621396313964139651396613967139681396913970139711397213973139741397513976139771397813979139801398113982139831398413985139861398713988139891399013991139921399313994139951399613997139981399914000140011400214003140041400514006140071400814009140101401114012140131401414015140161401714018140191402014021140221402314024140251402614027140281402914030140311403214033140341403514036140371403814039140401404114042140431404414045140461404714048140491405014051140521405314054140551405614057140581405914060140611406214063140641406514066140671406814069140701407114072140731407414075140761407714078140791408014081140821408314084140851408614087140881408914090140911409214093140941409514096140971409814099141001410114102141031410414105141061410714108141091411014111141121411314114141151411614117141181411914120141211412214123141241412514126141271412814129141301413114132141331413414135141361413714138141391414014141141421414314144141451414614147141481414914150141511415214153141541415514156141571415814159141601416114162141631416414165141661416714168141691417014171141721417314174141751417614177141781417914180141811418214183141841418514186141871418814189141901419114192141931419414195141961419714198141991420014201142021420314204142051420614207142081420914210142111421214213142141421514216142171421814219142201422114222142231422414225142261422714228142291423014231142321423314234142351423614237142381423914240142411424214243142441424514246142471424814249142501425114252142531425414255142561425714258142591426014261142621426314264142651426614267142681426914270142711427214273142741427514276142771427814279142801428114282142831428414285142861428714288142891429014291142921429314294142951429614297142981429914300143011430214303143041430514306143071430814309143101431114312143131431414315143161431714318143191432014321143221432314324143251432614327143281432914330143311433214333143341433514336143371433814339143401434114342143431434414345143461434714348143491435014351143521435314354143551435614357143581435914360143611436214363143641436514366143671436814369143701437114372143731437414375143761437714378143791438014381143821438314384143851438614387143881438914390143911439214393143941439514396143971439814399144001440114402144031440414405144061440714408144091441014411144121441314414144151441614417144181441914420144211442214423144241442514426144271442814429144301443114432144331443414435144361443714438144391444014441144421444314444144451444614447144481444914450144511445214453144541445514456144571445814459144601446114462144631446414465144661446714468144691447014471144721447314474144751447614477144781447914480144811448214483144841448514486144871448814489144901449114492144931449414495144961449714498144991450014501145021450314504145051450614507145081450914510145111451214513145141451514516145171451814519145201452114522145231452414525145261452714528145291453014531145321453314534145351453614537145381453914540145411454214543145441454514546145471454814549145501455114552145531455414555145561455714558145591456014561145621456314564145651456614567145681456914570145711457214573145741457514576145771457814579145801458114582145831458414585145861458714588145891459014591145921459314594145951459614597145981459914600146011460214603146041460514606146071460814609146101461114612146131461414615146161461714618146191462014621146221462314624146251462614627146281462914630146311463214633146341463514636146371463814639146401464114642146431464414645146461464714648146491465014651146521465314654146551465614657146581465914660146611466214663146641466514666146671466814669146701467114672146731467414675146761467714678146791468014681146821468314684146851468614687146881468914690146911469214693146941469514696146971469814699147001470114702147031470414705147061470714708147091471014711147121471314714147151471614717147181471914720147211472214723147241472514726147271472814729147301473114732147331473414735147361473714738147391474014741147421474314744147451474614747147481474914750147511475214753147541475514756147571475814759147601476114762147631476414765147661476714768147691477014771147721477314774147751477614777147781477914780147811478214783147841478514786147871478814789147901479114792147931479414795147961479714798147991480014801148021480314804148051480614807148081480914810148111481214813148141481514816148171481814819148201482114822148231482414825148261482714828148291483014831148321483314834148351483614837148381483914840148411484214843148441484514846148471484814849148501485114852148531485414855148561485714858148591486014861148621486314864148651486614867148681486914870148711487214873148741487514876148771487814879148801488114882148831488414885148861488714888148891489014891148921489314894148951489614897148981489914900149011490214903149041490514906149071490814909149101491114912149131491414915149161491714918149191492014921149221492314924149251492614927149281492914930149311493214933149341493514936149371493814939149401494114942149431494414945149461494714948149491495014951149521495314954149551495614957149581495914960149611496214963149641496514966149671496814969149701497114972149731497414975149761497714978149791498014981149821498314984149851498614987149881498914990149911499214993149941499514996149971499814999150001500115002150031500415005150061500715008150091501015011150121501315014150151501615017150181501915020150211502215023150241502515026150271502815029150301503115032150331503415035150361503715038150391504015041150421504315044150451504615047150481504915050150511505215053150541505515056150571505815059150601506115062150631506415065150661506715068150691507015071150721507315074150751507615077150781507915080150811508215083150841508515086150871508815089150901509115092150931509415095150961509715098150991510015101151021510315104151051510615107151081510915110151111511215113151141511515116151171511815119151201512115122151231512415125151261512715128151291513015131151321513315134151351513615137151381513915140151411514215143151441514515146151471514815149151501515115152151531515415155151561515715158151591516015161151621516315164151651516615167151681516915170151711517215173151741517515176151771517815179151801518115182151831518415185151861518715188151891519015191151921519315194151951519615197151981519915200152011520215203152041520515206152071520815209152101521115212152131521415215152161521715218152191522015221152221522315224152251522615227152281522915230152311523215233152341523515236152371523815239152401524115242152431524415245152461524715248152491525015251152521525315254152551525615257152581525915260152611526215263152641526515266152671526815269152701527115272152731527415275152761527715278152791528015281152821528315284152851528615287152881528915290152911529215293152941529515296152971529815299153001530115302153031530415305153061530715308153091531015311153121531315314153151531615317153181531915320153211532215323153241532515326153271532815329153301533115332153331533415335153361533715338153391534015341153421534315344153451534615347153481534915350153511535215353153541535515356153571535815359153601536115362153631536415365153661536715368153691537015371153721537315374153751537615377153781537915380153811538215383153841538515386153871538815389153901539115392153931539415395153961539715398153991540015401154021540315404154051540615407154081540915410154111541215413154141541515416154171541815419154201542115422154231542415425154261542715428154291543015431154321543315434154351543615437154381543915440154411544215443154441544515446154471544815449154501545115452154531545415455154561545715458154591546015461154621546315464154651546615467154681546915470154711547215473154741547515476154771547815479154801548115482154831548415485154861548715488154891549015491154921549315494154951549615497154981549915500155011550215503155041550515506155071550815509155101551115512155131551415515155161551715518155191552015521155221552315524155251552615527155281552915530155311553215533155341553515536155371553815539155401554115542155431554415545155461554715548155491555015551155521555315554155551555615557155581555915560155611556215563155641556515566155671556815569155701557115572155731557415575155761557715578155791558015581155821558315584155851558615587155881558915590155911559215593155941559515596155971559815599156001560115602156031560415605156061560715608156091561015611156121561315614156151561615617156181561915620156211562215623156241562515626156271562815629156301563115632156331563415635156361563715638156391564015641156421564315644156451564615647156481564915650156511565215653156541565515656156571565815659156601566115662156631566415665156661566715668156691567015671156721567315674156751567615677156781567915680156811568215683156841568515686156871568815689156901569115692156931569415695156961569715698156991570015701157021570315704157051570615707157081570915710157111571215713157141571515716157171571815719157201572115722157231572415725157261572715728157291573015731157321573315734157351573615737157381573915740157411574215743157441574515746157471574815749157501575115752157531575415755157561575715758157591576015761157621576315764157651576615767157681576915770157711577215773157741577515776157771577815779157801578115782157831578415785157861578715788157891579015791157921579315794157951579615797157981579915800158011580215803158041580515806158071580815809158101581115812158131581415815158161581715818158191582015821158221582315824158251582615827158281582915830158311583215833158341583515836158371583815839158401584115842158431584415845158461584715848158491585015851158521585315854158551585615857158581585915860158611586215863158641586515866158671586815869158701587115872158731587415875158761587715878158791588015881158821588315884158851588615887158881588915890158911589215893158941589515896158971589815899159001590115902159031590415905159061590715908159091591015911159121591315914159151591615917159181591915920159211592215923159241592515926159271592815929159301593115932159331593415935159361593715938159391594015941159421594315944159451594615947159481594915950159511595215953159541595515956159571595815959159601596115962159631596415965159661596715968159691597015971159721597315974159751597615977159781597915980159811598215983159841598515986159871598815989159901599115992159931599415995159961599715998159991600016001160021600316004160051600616007160081600916010160111601216013160141601516016160171601816019160201602116022160231602416025160261602716028160291603016031160321603316034160351603616037160381603916040160411604216043160441604516046160471604816049160501605116052160531605416055160561605716058160591606016061160621606316064160651606616067160681606916070160711607216073160741607516076160771607816079160801608116082160831608416085160861608716088160891609016091160921609316094160951609616097160981609916100161011610216103161041610516106161071610816109161101611116112161131611416115161161611716118161191612016121161221612316124161251612616127161281612916130161311613216133161341613516136161371613816139161401614116142161431614416145161461614716148161491615016151161521615316154161551615616157161581615916160161611616216163161641616516166161671616816169161701617116172161731617416175161761617716178161791618016181161821618316184161851618616187161881618916190161911619216193161941619516196161971619816199162001620116202162031620416205162061620716208162091621016211162121621316214162151621616217162181621916220162211622216223162241622516226162271622816229162301623116232162331623416235162361623716238162391624016241162421624316244162451624616247162481624916250162511625216253162541625516256162571625816259162601626116262162631626416265162661626716268162691627016271162721627316274162751627616277162781627916280162811628216283162841628516286162871628816289162901629116292162931629416295162961629716298162991630016301163021630316304163051630616307163081630916310163111631216313163141631516316163171631816319163201632116322163231632416325163261632716328163291633016331163321633316334163351633616337163381633916340163411634216343163441634516346163471634816349163501635116352163531635416355163561635716358163591636016361163621636316364163651636616367163681636916370163711637216373163741637516376163771637816379163801638116382163831638416385163861638716388163891639016391163921639316394163951639616397163981639916400164011640216403164041640516406164071640816409164101641116412164131641416415164161641716418164191642016421164221642316424164251642616427164281642916430164311643216433164341643516436164371643816439164401644116442164431644416445164461644716448164491645016451164521645316454164551645616457164581645916460164611646216463164641646516466164671646816469164701647116472164731647416475164761647716478164791648016481164821648316484164851648616487164881648916490164911649216493164941649516496164971649816499165001650116502165031650416505165061650716508165091651016511165121651316514165151651616517165181651916520165211652216523165241652516526165271652816529165301653116532165331653416535165361653716538165391654016541165421654316544165451654616547165481654916550165511655216553165541655516556165571655816559165601656116562165631656416565165661656716568165691657016571165721657316574165751657616577165781657916580165811658216583165841658516586165871658816589165901659116592165931659416595165961659716598165991660016601166021660316604166051660616607166081660916610166111661216613166141661516616166171661816619166201662116622166231662416625166261662716628166291663016631166321663316634166351663616637166381663916640166411664216643166441664516646166471664816649166501665116652166531665416655166561665716658166591666016661166621666316664166651666616667166681666916670166711667216673166741667516676166771667816679166801668116682166831668416685166861668716688166891669016691166921669316694166951669616697166981669916700167011670216703167041670516706167071670816709167101671116712167131671416715167161671716718167191672016721167221672316724167251672616727167281672916730167311673216733167341673516736167371673816739167401674116742167431674416745167461674716748167491675016751167521675316754167551675616757167581675916760167611676216763167641676516766167671676816769167701677116772167731677416775167761677716778167791678016781167821678316784167851678616787167881678916790167911679216793167941679516796167971679816799168001680116802168031680416805168061680716808168091681016811168121681316814168151681616817168181681916820168211682216823168241682516826168271682816829168301683116832168331683416835168361683716838168391684016841168421684316844168451684616847168481684916850168511685216853168541685516856168571685816859168601686116862168631686416865168661686716868168691687016871168721687316874168751687616877168781687916880168811688216883168841688516886168871688816889168901689116892168931689416895168961689716898168991690016901169021690316904169051690616907169081690916910169111691216913169141691516916169171691816919169201692116922169231692416925169261692716928169291693016931169321693316934169351693616937169381693916940169411694216943169441694516946169471694816949169501695116952169531695416955169561695716958169591696016961169621696316964169651696616967169681696916970169711697216973169741697516976169771697816979169801698116982169831698416985169861698716988169891699016991169921699316994169951699616997169981699917000170011700217003170041700517006170071700817009170101701117012170131701417015170161701717018170191702017021170221702317024170251702617027170281702917030170311703217033170341703517036170371703817039170401704117042170431704417045170461704717048170491705017051170521705317054170551705617057170581705917060170611706217063170641706517066170671706817069170701707117072170731707417075170761707717078170791708017081170821708317084170851708617087170881708917090170911709217093170941709517096170971709817099171001710117102171031710417105171061710717108171091711017111171121711317114171151711617117171181711917120171211712217123171241712517126171271712817129171301713117132171331713417135171361713717138171391714017141171421714317144171451714617147171481714917150171511715217153171541715517156171571715817159171601716117162171631716417165171661716717168171691717017171171721717317174171751717617177171781717917180171811718217183171841718517186171871718817189171901719117192171931719417195171961719717198171991720017201172021720317204172051720617207172081720917210172111721217213172141721517216172171721817219172201722117222172231722417225172261722717228172291723017231172321723317234172351723617237172381723917240172411724217243172441724517246172471724817249172501725117252172531725417255172561725717258172591726017261172621726317264172651726617267172681726917270172711727217273172741727517276172771727817279172801728117282172831728417285172861728717288172891729017291172921729317294172951729617297172981729917300173011730217303173041730517306173071730817309173101731117312173131731417315173161731717318173191732017321173221732317324173251732617327173281732917330173311733217333173341733517336173371733817339173401734117342173431734417345173461734717348173491735017351173521735317354173551735617357173581735917360173611736217363173641736517366173671736817369173701737117372173731737417375173761737717378173791738017381173821738317384173851738617387173881738917390173911739217393173941739517396173971739817399174001740117402174031740417405174061740717408174091741017411174121741317414174151741617417174181741917420174211742217423174241742517426174271742817429174301743117432174331743417435174361743717438174391744017441174421744317444174451744617447174481744917450174511745217453174541745517456174571745817459174601746117462174631746417465174661746717468174691747017471174721747317474174751747617477174781747917480174811748217483174841748517486174871748817489174901749117492174931749417495174961749717498174991750017501175021750317504175051750617507175081750917510175111751217513175141751517516175171751817519175201752117522175231752417525175261752717528175291753017531175321753317534175351753617537175381753917540175411754217543175441754517546175471754817549175501755117552175531755417555175561755717558175591756017561175621756317564175651756617567175681756917570175711757217573175741757517576175771757817579175801758117582175831758417585175861758717588175891759017591175921759317594175951759617597175981759917600176011760217603176041760517606176071760817609176101761117612176131761417615176161761717618176191762017621176221762317624176251762617627176281762917630176311763217633176341763517636176371763817639176401764117642176431764417645176461764717648176491765017651176521765317654176551765617657176581765917660176611766217663176641766517666176671766817669176701767117672176731767417675176761767717678176791768017681176821768317684176851768617687176881768917690176911769217693176941769517696176971769817699177001770117702177031770417705177061770717708177091771017711177121771317714177151771617717177181771917720177211772217723177241772517726177271772817729177301773117732177331773417735177361773717738177391774017741177421774317744177451774617747177481774917750177511775217753177541775517756177571775817759177601776117762177631776417765177661776717768177691777017771177721777317774
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: user.proto
  3. package serverproto
  4. import (
  5. fmt "fmt"
  6. proto "github.com/golang/protobuf/proto"
  7. math "math"
  8. )
  9. // Reference imports to suppress errors if they are not otherwise used.
  10. var _ = proto.Marshal
  11. var _ = fmt.Errorf
  12. var _ = math.Inf
  13. // This is a compile-time assertion to ensure that this generated file
  14. // is compatible with the proto package it is being compiled against.
  15. // A compilation error at this line likely means your copy of the
  16. // proto package needs to be updated.
  17. const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
  18. type AccountRole struct {
  19. OpenId string `protobuf:"bytes,1,opt,name=open_id,json=openId,proto3" json:"open_id,omitempty"`
  20. Platform string `protobuf:"bytes,2,opt,name=platform,proto3" json:"platform,omitempty"`
  21. Uid uint64 `protobuf:"varint,3,opt,name=uid,proto3" json:"uid,omitempty"`
  22. PhonePlatform int32 `protobuf:"varint,4,opt,name=phone_platform,json=phonePlatform,proto3" json:"phone_platform,omitempty"`
  23. RegisterTime uint64 `protobuf:"varint,5,opt,name=register_time,json=registerTime,proto3" json:"register_time,omitempty"`
  24. ZoneId int32 `protobuf:"varint,6,opt,name=ZoneId,proto3" json:"ZoneId,omitempty"`
  25. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  26. XXX_unrecognized []byte `json:"-"`
  27. XXX_sizecache int32 `json:"-"`
  28. }
  29. func (m *AccountRole) Reset() { *m = AccountRole{} }
  30. func (m *AccountRole) String() string { return proto.CompactTextString(m) }
  31. func (*AccountRole) ProtoMessage() {}
  32. func (*AccountRole) Descriptor() ([]byte, []int) {
  33. return fileDescriptor_116e343673f7ffaf, []int{0}
  34. }
  35. func (m *AccountRole) XXX_Unmarshal(b []byte) error {
  36. return xxx_messageInfo_AccountRole.Unmarshal(m, b)
  37. }
  38. func (m *AccountRole) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  39. return xxx_messageInfo_AccountRole.Marshal(b, m, deterministic)
  40. }
  41. func (m *AccountRole) XXX_Merge(src proto.Message) {
  42. xxx_messageInfo_AccountRole.Merge(m, src)
  43. }
  44. func (m *AccountRole) XXX_Size() int {
  45. return xxx_messageInfo_AccountRole.Size(m)
  46. }
  47. func (m *AccountRole) XXX_DiscardUnknown() {
  48. xxx_messageInfo_AccountRole.DiscardUnknown(m)
  49. }
  50. var xxx_messageInfo_AccountRole proto.InternalMessageInfo
  51. func (m *AccountRole) GetOpenId() string {
  52. if m != nil {
  53. return m.OpenId
  54. }
  55. return ""
  56. }
  57. func (m *AccountRole) GetPlatform() string {
  58. if m != nil {
  59. return m.Platform
  60. }
  61. return ""
  62. }
  63. func (m *AccountRole) GetUid() uint64 {
  64. if m != nil {
  65. return m.Uid
  66. }
  67. return 0
  68. }
  69. func (m *AccountRole) GetPhonePlatform() int32 {
  70. if m != nil {
  71. return m.PhonePlatform
  72. }
  73. return 0
  74. }
  75. func (m *AccountRole) GetRegisterTime() uint64 {
  76. if m != nil {
  77. return m.RegisterTime
  78. }
  79. return 0
  80. }
  81. func (m *AccountRole) GetZoneId() int32 {
  82. if m != nil {
  83. return m.ZoneId
  84. }
  85. return 0
  86. }
  87. // 后续需要做战场时,的重连信息(战场所在的服务器信息)
  88. type ReconnectInfo struct {
  89. PvpNode string `protobuf:"bytes,1,opt,name=pvp_node,json=pvpNode,proto3" json:"pvp_node,omitempty"`
  90. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  91. XXX_unrecognized []byte `json:"-"`
  92. XXX_sizecache int32 `json:"-"`
  93. }
  94. func (m *ReconnectInfo) Reset() { *m = ReconnectInfo{} }
  95. func (m *ReconnectInfo) String() string { return proto.CompactTextString(m) }
  96. func (*ReconnectInfo) ProtoMessage() {}
  97. func (*ReconnectInfo) Descriptor() ([]byte, []int) {
  98. return fileDescriptor_116e343673f7ffaf, []int{1}
  99. }
  100. func (m *ReconnectInfo) XXX_Unmarshal(b []byte) error {
  101. return xxx_messageInfo_ReconnectInfo.Unmarshal(m, b)
  102. }
  103. func (m *ReconnectInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  104. return xxx_messageInfo_ReconnectInfo.Marshal(b, m, deterministic)
  105. }
  106. func (m *ReconnectInfo) XXX_Merge(src proto.Message) {
  107. xxx_messageInfo_ReconnectInfo.Merge(m, src)
  108. }
  109. func (m *ReconnectInfo) XXX_Size() int {
  110. return xxx_messageInfo_ReconnectInfo.Size(m)
  111. }
  112. func (m *ReconnectInfo) XXX_DiscardUnknown() {
  113. xxx_messageInfo_ReconnectInfo.DiscardUnknown(m)
  114. }
  115. var xxx_messageInfo_ReconnectInfo proto.InternalMessageInfo
  116. func (m *ReconnectInfo) GetPvpNode() string {
  117. if m != nil {
  118. return m.PvpNode
  119. }
  120. return ""
  121. }
  122. type UserConnectInfo struct {
  123. LogicNode string `protobuf:"bytes,1,opt,name=logic_node,json=logicNode,proto3" json:"logic_node,omitempty"`
  124. TimeStamp int64 `protobuf:"varint,2,opt,name=time_stamp,json=timeStamp,proto3" json:"time_stamp,omitempty"`
  125. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  126. XXX_unrecognized []byte `json:"-"`
  127. XXX_sizecache int32 `json:"-"`
  128. }
  129. func (m *UserConnectInfo) Reset() { *m = UserConnectInfo{} }
  130. func (m *UserConnectInfo) String() string { return proto.CompactTextString(m) }
  131. func (*UserConnectInfo) ProtoMessage() {}
  132. func (*UserConnectInfo) Descriptor() ([]byte, []int) {
  133. return fileDescriptor_116e343673f7ffaf, []int{2}
  134. }
  135. func (m *UserConnectInfo) XXX_Unmarshal(b []byte) error {
  136. return xxx_messageInfo_UserConnectInfo.Unmarshal(m, b)
  137. }
  138. func (m *UserConnectInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  139. return xxx_messageInfo_UserConnectInfo.Marshal(b, m, deterministic)
  140. }
  141. func (m *UserConnectInfo) XXX_Merge(src proto.Message) {
  142. xxx_messageInfo_UserConnectInfo.Merge(m, src)
  143. }
  144. func (m *UserConnectInfo) XXX_Size() int {
  145. return xxx_messageInfo_UserConnectInfo.Size(m)
  146. }
  147. func (m *UserConnectInfo) XXX_DiscardUnknown() {
  148. xxx_messageInfo_UserConnectInfo.DiscardUnknown(m)
  149. }
  150. var xxx_messageInfo_UserConnectInfo proto.InternalMessageInfo
  151. func (m *UserConnectInfo) GetLogicNode() string {
  152. if m != nil {
  153. return m.LogicNode
  154. }
  155. return ""
  156. }
  157. func (m *UserConnectInfo) GetTimeStamp() int64 {
  158. if m != nil {
  159. return m.TimeStamp
  160. }
  161. return 0
  162. }
  163. // key value 类型
  164. type KeyValueType struct {
  165. Key int32 `protobuf:"varint,1,opt,name=key,proto3" json:"key,omitempty"`
  166. Value int32 `protobuf:"varint,2,opt,name=value,proto3" json:"value,omitempty"`
  167. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  168. XXX_unrecognized []byte `json:"-"`
  169. XXX_sizecache int32 `json:"-"`
  170. }
  171. func (m *KeyValueType) Reset() { *m = KeyValueType{} }
  172. func (m *KeyValueType) String() string { return proto.CompactTextString(m) }
  173. func (*KeyValueType) ProtoMessage() {}
  174. func (*KeyValueType) Descriptor() ([]byte, []int) {
  175. return fileDescriptor_116e343673f7ffaf, []int{3}
  176. }
  177. func (m *KeyValueType) XXX_Unmarshal(b []byte) error {
  178. return xxx_messageInfo_KeyValueType.Unmarshal(m, b)
  179. }
  180. func (m *KeyValueType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  181. return xxx_messageInfo_KeyValueType.Marshal(b, m, deterministic)
  182. }
  183. func (m *KeyValueType) XXX_Merge(src proto.Message) {
  184. xxx_messageInfo_KeyValueType.Merge(m, src)
  185. }
  186. func (m *KeyValueType) XXX_Size() int {
  187. return xxx_messageInfo_KeyValueType.Size(m)
  188. }
  189. func (m *KeyValueType) XXX_DiscardUnknown() {
  190. xxx_messageInfo_KeyValueType.DiscardUnknown(m)
  191. }
  192. var xxx_messageInfo_KeyValueType proto.InternalMessageInfo
  193. func (m *KeyValueType) GetKey() int32 {
  194. if m != nil {
  195. return m.Key
  196. }
  197. return 0
  198. }
  199. func (m *KeyValueType) GetValue() int32 {
  200. if m != nil {
  201. return m.Value
  202. }
  203. return 0
  204. }
  205. type KeyValueTypeList struct {
  206. Key int32 `protobuf:"varint,1,opt,name=key,proto3" json:"key,omitempty"`
  207. ValueList []int32 `protobuf:"varint,2,rep,packed,name=value_list,json=valueList,proto3" json:"value_list,omitempty"`
  208. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  209. XXX_unrecognized []byte `json:"-"`
  210. XXX_sizecache int32 `json:"-"`
  211. }
  212. func (m *KeyValueTypeList) Reset() { *m = KeyValueTypeList{} }
  213. func (m *KeyValueTypeList) String() string { return proto.CompactTextString(m) }
  214. func (*KeyValueTypeList) ProtoMessage() {}
  215. func (*KeyValueTypeList) Descriptor() ([]byte, []int) {
  216. return fileDescriptor_116e343673f7ffaf, []int{4}
  217. }
  218. func (m *KeyValueTypeList) XXX_Unmarshal(b []byte) error {
  219. return xxx_messageInfo_KeyValueTypeList.Unmarshal(m, b)
  220. }
  221. func (m *KeyValueTypeList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  222. return xxx_messageInfo_KeyValueTypeList.Marshal(b, m, deterministic)
  223. }
  224. func (m *KeyValueTypeList) XXX_Merge(src proto.Message) {
  225. xxx_messageInfo_KeyValueTypeList.Merge(m, src)
  226. }
  227. func (m *KeyValueTypeList) XXX_Size() int {
  228. return xxx_messageInfo_KeyValueTypeList.Size(m)
  229. }
  230. func (m *KeyValueTypeList) XXX_DiscardUnknown() {
  231. xxx_messageInfo_KeyValueTypeList.DiscardUnknown(m)
  232. }
  233. var xxx_messageInfo_KeyValueTypeList proto.InternalMessageInfo
  234. func (m *KeyValueTypeList) GetKey() int32 {
  235. if m != nil {
  236. return m.Key
  237. }
  238. return 0
  239. }
  240. func (m *KeyValueTypeList) GetValueList() []int32 {
  241. if m != nil {
  242. return m.ValueList
  243. }
  244. return nil
  245. }
  246. type KeyValueType64 struct {
  247. Key uint64 `protobuf:"varint,1,opt,name=key,proto3" json:"key,omitempty"`
  248. Value int32 `protobuf:"varint,2,opt,name=value,proto3" json:"value,omitempty"`
  249. Value2 int32 `protobuf:"varint,3,opt,name=value2,proto3" json:"value2,omitempty"`
  250. Value3 int32 `protobuf:"varint,4,opt,name=value3,proto3" json:"value3,omitempty"`
  251. StrVal string `protobuf:"bytes,5,opt,name=str_val,json=strVal,proto3" json:"str_val,omitempty"`
  252. Value4 uint64 `protobuf:"varint,6,opt,name=value4,proto3" json:"value4,omitempty"`
  253. Value5 bool `protobuf:"varint,7,opt,name=value5,proto3" json:"value5,omitempty"`
  254. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  255. XXX_unrecognized []byte `json:"-"`
  256. XXX_sizecache int32 `json:"-"`
  257. }
  258. func (m *KeyValueType64) Reset() { *m = KeyValueType64{} }
  259. func (m *KeyValueType64) String() string { return proto.CompactTextString(m) }
  260. func (*KeyValueType64) ProtoMessage() {}
  261. func (*KeyValueType64) Descriptor() ([]byte, []int) {
  262. return fileDescriptor_116e343673f7ffaf, []int{5}
  263. }
  264. func (m *KeyValueType64) XXX_Unmarshal(b []byte) error {
  265. return xxx_messageInfo_KeyValueType64.Unmarshal(m, b)
  266. }
  267. func (m *KeyValueType64) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  268. return xxx_messageInfo_KeyValueType64.Marshal(b, m, deterministic)
  269. }
  270. func (m *KeyValueType64) XXX_Merge(src proto.Message) {
  271. xxx_messageInfo_KeyValueType64.Merge(m, src)
  272. }
  273. func (m *KeyValueType64) XXX_Size() int {
  274. return xxx_messageInfo_KeyValueType64.Size(m)
  275. }
  276. func (m *KeyValueType64) XXX_DiscardUnknown() {
  277. xxx_messageInfo_KeyValueType64.DiscardUnknown(m)
  278. }
  279. var xxx_messageInfo_KeyValueType64 proto.InternalMessageInfo
  280. func (m *KeyValueType64) GetKey() uint64 {
  281. if m != nil {
  282. return m.Key
  283. }
  284. return 0
  285. }
  286. func (m *KeyValueType64) GetValue() int32 {
  287. if m != nil {
  288. return m.Value
  289. }
  290. return 0
  291. }
  292. func (m *KeyValueType64) GetValue2() int32 {
  293. if m != nil {
  294. return m.Value2
  295. }
  296. return 0
  297. }
  298. func (m *KeyValueType64) GetValue3() int32 {
  299. if m != nil {
  300. return m.Value3
  301. }
  302. return 0
  303. }
  304. func (m *KeyValueType64) GetStrVal() string {
  305. if m != nil {
  306. return m.StrVal
  307. }
  308. return ""
  309. }
  310. func (m *KeyValueType64) GetValue4() uint64 {
  311. if m != nil {
  312. return m.Value4
  313. }
  314. return 0
  315. }
  316. func (m *KeyValueType64) GetValue5() bool {
  317. if m != nil {
  318. return m.Value5
  319. }
  320. return false
  321. }
  322. type KeyValueType64Str struct {
  323. Key uint64 `protobuf:"varint,1,opt,name=key,proto3" json:"key,omitempty"`
  324. StrVal string `protobuf:"bytes,2,opt,name=str_val,json=strVal,proto3" json:"str_val,omitempty"`
  325. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  326. XXX_unrecognized []byte `json:"-"`
  327. XXX_sizecache int32 `json:"-"`
  328. }
  329. func (m *KeyValueType64Str) Reset() { *m = KeyValueType64Str{} }
  330. func (m *KeyValueType64Str) String() string { return proto.CompactTextString(m) }
  331. func (*KeyValueType64Str) ProtoMessage() {}
  332. func (*KeyValueType64Str) Descriptor() ([]byte, []int) {
  333. return fileDescriptor_116e343673f7ffaf, []int{6}
  334. }
  335. func (m *KeyValueType64Str) XXX_Unmarshal(b []byte) error {
  336. return xxx_messageInfo_KeyValueType64Str.Unmarshal(m, b)
  337. }
  338. func (m *KeyValueType64Str) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  339. return xxx_messageInfo_KeyValueType64Str.Marshal(b, m, deterministic)
  340. }
  341. func (m *KeyValueType64Str) XXX_Merge(src proto.Message) {
  342. xxx_messageInfo_KeyValueType64Str.Merge(m, src)
  343. }
  344. func (m *KeyValueType64Str) XXX_Size() int {
  345. return xxx_messageInfo_KeyValueType64Str.Size(m)
  346. }
  347. func (m *KeyValueType64Str) XXX_DiscardUnknown() {
  348. xxx_messageInfo_KeyValueType64Str.DiscardUnknown(m)
  349. }
  350. var xxx_messageInfo_KeyValueType64Str proto.InternalMessageInfo
  351. func (m *KeyValueType64Str) GetKey() uint64 {
  352. if m != nil {
  353. return m.Key
  354. }
  355. return 0
  356. }
  357. func (m *KeyValueType64Str) GetStrVal() string {
  358. if m != nil {
  359. return m.StrVal
  360. }
  361. return ""
  362. }
  363. type KeyValueFloat32 struct {
  364. Key int32 `protobuf:"varint,1,opt,name=key,proto3" json:"key,omitempty"`
  365. Value float32 `protobuf:"fixed32,2,opt,name=value,proto3" json:"value,omitempty"`
  366. Value64 float64 `protobuf:"fixed64,3,opt,name=value64,proto3" json:"value64,omitempty"`
  367. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  368. XXX_unrecognized []byte `json:"-"`
  369. XXX_sizecache int32 `json:"-"`
  370. }
  371. func (m *KeyValueFloat32) Reset() { *m = KeyValueFloat32{} }
  372. func (m *KeyValueFloat32) String() string { return proto.CompactTextString(m) }
  373. func (*KeyValueFloat32) ProtoMessage() {}
  374. func (*KeyValueFloat32) Descriptor() ([]byte, []int) {
  375. return fileDescriptor_116e343673f7ffaf, []int{7}
  376. }
  377. func (m *KeyValueFloat32) XXX_Unmarshal(b []byte) error {
  378. return xxx_messageInfo_KeyValueFloat32.Unmarshal(m, b)
  379. }
  380. func (m *KeyValueFloat32) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  381. return xxx_messageInfo_KeyValueFloat32.Marshal(b, m, deterministic)
  382. }
  383. func (m *KeyValueFloat32) XXX_Merge(src proto.Message) {
  384. xxx_messageInfo_KeyValueFloat32.Merge(m, src)
  385. }
  386. func (m *KeyValueFloat32) XXX_Size() int {
  387. return xxx_messageInfo_KeyValueFloat32.Size(m)
  388. }
  389. func (m *KeyValueFloat32) XXX_DiscardUnknown() {
  390. xxx_messageInfo_KeyValueFloat32.DiscardUnknown(m)
  391. }
  392. var xxx_messageInfo_KeyValueFloat32 proto.InternalMessageInfo
  393. func (m *KeyValueFloat32) GetKey() int32 {
  394. if m != nil {
  395. return m.Key
  396. }
  397. return 0
  398. }
  399. func (m *KeyValueFloat32) GetValue() float32 {
  400. if m != nil {
  401. return m.Value
  402. }
  403. return 0
  404. }
  405. func (m *KeyValueFloat32) GetValue64() float64 {
  406. if m != nil {
  407. return m.Value64
  408. }
  409. return 0
  410. }
  411. type UKeyValueType struct {
  412. Key uint32 `protobuf:"varint,1,opt,name=key,proto3" json:"key,omitempty"`
  413. Value uint32 `protobuf:"varint,2,opt,name=value,proto3" json:"value,omitempty"`
  414. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  415. XXX_unrecognized []byte `json:"-"`
  416. XXX_sizecache int32 `json:"-"`
  417. }
  418. func (m *UKeyValueType) Reset() { *m = UKeyValueType{} }
  419. func (m *UKeyValueType) String() string { return proto.CompactTextString(m) }
  420. func (*UKeyValueType) ProtoMessage() {}
  421. func (*UKeyValueType) Descriptor() ([]byte, []int) {
  422. return fileDescriptor_116e343673f7ffaf, []int{8}
  423. }
  424. func (m *UKeyValueType) XXX_Unmarshal(b []byte) error {
  425. return xxx_messageInfo_UKeyValueType.Unmarshal(m, b)
  426. }
  427. func (m *UKeyValueType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  428. return xxx_messageInfo_UKeyValueType.Marshal(b, m, deterministic)
  429. }
  430. func (m *UKeyValueType) XXX_Merge(src proto.Message) {
  431. xxx_messageInfo_UKeyValueType.Merge(m, src)
  432. }
  433. func (m *UKeyValueType) XXX_Size() int {
  434. return xxx_messageInfo_UKeyValueType.Size(m)
  435. }
  436. func (m *UKeyValueType) XXX_DiscardUnknown() {
  437. xxx_messageInfo_UKeyValueType.DiscardUnknown(m)
  438. }
  439. var xxx_messageInfo_UKeyValueType proto.InternalMessageInfo
  440. func (m *UKeyValueType) GetKey() uint32 {
  441. if m != nil {
  442. return m.Key
  443. }
  444. return 0
  445. }
  446. func (m *UKeyValueType) GetValue() uint32 {
  447. if m != nil {
  448. return m.Value
  449. }
  450. return 0
  451. }
  452. // 6部位信息
  453. type SlotDetailData struct {
  454. Level int32 `protobuf:"varint,1,opt,name=level,proto3" json:"level,omitempty"`
  455. EquipId int32 `protobuf:"varint,2,opt,name=equip_id,json=equipId,proto3" json:"equip_id,omitempty"`
  456. CardIdList []int32 `protobuf:"varint,3,rep,packed,name=card_id_list,json=cardIdList,proto3" json:"card_id_list,omitempty"`
  457. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  458. XXX_unrecognized []byte `json:"-"`
  459. XXX_sizecache int32 `json:"-"`
  460. }
  461. func (m *SlotDetailData) Reset() { *m = SlotDetailData{} }
  462. func (m *SlotDetailData) String() string { return proto.CompactTextString(m) }
  463. func (*SlotDetailData) ProtoMessage() {}
  464. func (*SlotDetailData) Descriptor() ([]byte, []int) {
  465. return fileDescriptor_116e343673f7ffaf, []int{9}
  466. }
  467. func (m *SlotDetailData) XXX_Unmarshal(b []byte) error {
  468. return xxx_messageInfo_SlotDetailData.Unmarshal(m, b)
  469. }
  470. func (m *SlotDetailData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  471. return xxx_messageInfo_SlotDetailData.Marshal(b, m, deterministic)
  472. }
  473. func (m *SlotDetailData) XXX_Merge(src proto.Message) {
  474. xxx_messageInfo_SlotDetailData.Merge(m, src)
  475. }
  476. func (m *SlotDetailData) XXX_Size() int {
  477. return xxx_messageInfo_SlotDetailData.Size(m)
  478. }
  479. func (m *SlotDetailData) XXX_DiscardUnknown() {
  480. xxx_messageInfo_SlotDetailData.DiscardUnknown(m)
  481. }
  482. var xxx_messageInfo_SlotDetailData proto.InternalMessageInfo
  483. func (m *SlotDetailData) GetLevel() int32 {
  484. if m != nil {
  485. return m.Level
  486. }
  487. return 0
  488. }
  489. func (m *SlotDetailData) GetEquipId() int32 {
  490. if m != nil {
  491. return m.EquipId
  492. }
  493. return 0
  494. }
  495. func (m *SlotDetailData) GetCardIdList() []int32 {
  496. if m != nil {
  497. return m.CardIdList
  498. }
  499. return nil
  500. }
  501. // 坑位信息
  502. type SlotData struct {
  503. HeroId int32 `protobuf:"varint,1,opt,name=hero_id,json=heroId,proto3" json:"hero_id,omitempty"`
  504. SlotList []*SlotDetailData `protobuf:"bytes,2,rep,name=slot_list,json=slotList,proto3" json:"slot_list,omitempty"`
  505. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  506. XXX_unrecognized []byte `json:"-"`
  507. XXX_sizecache int32 `json:"-"`
  508. }
  509. func (m *SlotData) Reset() { *m = SlotData{} }
  510. func (m *SlotData) String() string { return proto.CompactTextString(m) }
  511. func (*SlotData) ProtoMessage() {}
  512. func (*SlotData) Descriptor() ([]byte, []int) {
  513. return fileDescriptor_116e343673f7ffaf, []int{10}
  514. }
  515. func (m *SlotData) XXX_Unmarshal(b []byte) error {
  516. return xxx_messageInfo_SlotData.Unmarshal(m, b)
  517. }
  518. func (m *SlotData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  519. return xxx_messageInfo_SlotData.Marshal(b, m, deterministic)
  520. }
  521. func (m *SlotData) XXX_Merge(src proto.Message) {
  522. xxx_messageInfo_SlotData.Merge(m, src)
  523. }
  524. func (m *SlotData) XXX_Size() int {
  525. return xxx_messageInfo_SlotData.Size(m)
  526. }
  527. func (m *SlotData) XXX_DiscardUnknown() {
  528. xxx_messageInfo_SlotData.DiscardUnknown(m)
  529. }
  530. var xxx_messageInfo_SlotData proto.InternalMessageInfo
  531. func (m *SlotData) GetHeroId() int32 {
  532. if m != nil {
  533. return m.HeroId
  534. }
  535. return 0
  536. }
  537. func (m *SlotData) GetSlotList() []*SlotDetailData {
  538. if m != nil {
  539. return m.SlotList
  540. }
  541. return nil
  542. }
  543. // 宠物6坑位信息
  544. // 宠物印记信息
  545. type PetEquipData struct {
  546. Id uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  547. EquipCfgId int32 `protobuf:"varint,2,opt,name=equip_cfg_id,json=equipCfgId,proto3" json:"equip_cfg_id,omitempty"`
  548. Level int32 `protobuf:"varint,3,opt,name=level,proto3" json:"level,omitempty"`
  549. EquipPetId uint32 `protobuf:"varint,4,opt,name=equip_pet_id,json=equipPetId,proto3" json:"equip_pet_id,omitempty"`
  550. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  551. XXX_unrecognized []byte `json:"-"`
  552. XXX_sizecache int32 `json:"-"`
  553. }
  554. func (m *PetEquipData) Reset() { *m = PetEquipData{} }
  555. func (m *PetEquipData) String() string { return proto.CompactTextString(m) }
  556. func (*PetEquipData) ProtoMessage() {}
  557. func (*PetEquipData) Descriptor() ([]byte, []int) {
  558. return fileDescriptor_116e343673f7ffaf, []int{11}
  559. }
  560. func (m *PetEquipData) XXX_Unmarshal(b []byte) error {
  561. return xxx_messageInfo_PetEquipData.Unmarshal(m, b)
  562. }
  563. func (m *PetEquipData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  564. return xxx_messageInfo_PetEquipData.Marshal(b, m, deterministic)
  565. }
  566. func (m *PetEquipData) XXX_Merge(src proto.Message) {
  567. xxx_messageInfo_PetEquipData.Merge(m, src)
  568. }
  569. func (m *PetEquipData) XXX_Size() int {
  570. return xxx_messageInfo_PetEquipData.Size(m)
  571. }
  572. func (m *PetEquipData) XXX_DiscardUnknown() {
  573. xxx_messageInfo_PetEquipData.DiscardUnknown(m)
  574. }
  575. var xxx_messageInfo_PetEquipData proto.InternalMessageInfo
  576. func (m *PetEquipData) GetId() uint32 {
  577. if m != nil {
  578. return m.Id
  579. }
  580. return 0
  581. }
  582. func (m *PetEquipData) GetEquipCfgId() int32 {
  583. if m != nil {
  584. return m.EquipCfgId
  585. }
  586. return 0
  587. }
  588. func (m *PetEquipData) GetLevel() int32 {
  589. if m != nil {
  590. return m.Level
  591. }
  592. return 0
  593. }
  594. func (m *PetEquipData) GetEquipPetId() uint32 {
  595. if m != nil {
  596. return m.EquipPetId
  597. }
  598. return 0
  599. }
  600. // 宠物6坑位信息(6个部位)
  601. type PetSlotDetailData struct {
  602. Idx int32 `protobuf:"varint,1,opt,name=idx,proto3" json:"idx,omitempty"`
  603. EquipId uint32 `protobuf:"varint,2,opt,name=equip_id,json=equipId,proto3" json:"equip_id,omitempty"`
  604. StoneIdList []int32 `protobuf:"varint,3,rep,packed,name=stone_id_list,json=stoneIdList,proto3" json:"stone_id_list,omitempty"`
  605. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  606. XXX_unrecognized []byte `json:"-"`
  607. XXX_sizecache int32 `json:"-"`
  608. }
  609. func (m *PetSlotDetailData) Reset() { *m = PetSlotDetailData{} }
  610. func (m *PetSlotDetailData) String() string { return proto.CompactTextString(m) }
  611. func (*PetSlotDetailData) ProtoMessage() {}
  612. func (*PetSlotDetailData) Descriptor() ([]byte, []int) {
  613. return fileDescriptor_116e343673f7ffaf, []int{12}
  614. }
  615. func (m *PetSlotDetailData) XXX_Unmarshal(b []byte) error {
  616. return xxx_messageInfo_PetSlotDetailData.Unmarshal(m, b)
  617. }
  618. func (m *PetSlotDetailData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  619. return xxx_messageInfo_PetSlotDetailData.Marshal(b, m, deterministic)
  620. }
  621. func (m *PetSlotDetailData) XXX_Merge(src proto.Message) {
  622. xxx_messageInfo_PetSlotDetailData.Merge(m, src)
  623. }
  624. func (m *PetSlotDetailData) XXX_Size() int {
  625. return xxx_messageInfo_PetSlotDetailData.Size(m)
  626. }
  627. func (m *PetSlotDetailData) XXX_DiscardUnknown() {
  628. xxx_messageInfo_PetSlotDetailData.DiscardUnknown(m)
  629. }
  630. var xxx_messageInfo_PetSlotDetailData proto.InternalMessageInfo
  631. func (m *PetSlotDetailData) GetIdx() int32 {
  632. if m != nil {
  633. return m.Idx
  634. }
  635. return 0
  636. }
  637. func (m *PetSlotDetailData) GetEquipId() uint32 {
  638. if m != nil {
  639. return m.EquipId
  640. }
  641. return 0
  642. }
  643. func (m *PetSlotDetailData) GetStoneIdList() []int32 {
  644. if m != nil {
  645. return m.StoneIdList
  646. }
  647. return nil
  648. }
  649. // 技能信息
  650. type SkillData struct {
  651. Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  652. Point int32 `protobuf:"varint,2,opt,name=point,proto3" json:"point,omitempty"`
  653. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  654. XXX_unrecognized []byte `json:"-"`
  655. XXX_sizecache int32 `json:"-"`
  656. }
  657. func (m *SkillData) Reset() { *m = SkillData{} }
  658. func (m *SkillData) String() string { return proto.CompactTextString(m) }
  659. func (*SkillData) ProtoMessage() {}
  660. func (*SkillData) Descriptor() ([]byte, []int) {
  661. return fileDescriptor_116e343673f7ffaf, []int{13}
  662. }
  663. func (m *SkillData) XXX_Unmarshal(b []byte) error {
  664. return xxx_messageInfo_SkillData.Unmarshal(m, b)
  665. }
  666. func (m *SkillData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  667. return xxx_messageInfo_SkillData.Marshal(b, m, deterministic)
  668. }
  669. func (m *SkillData) XXX_Merge(src proto.Message) {
  670. xxx_messageInfo_SkillData.Merge(m, src)
  671. }
  672. func (m *SkillData) XXX_Size() int {
  673. return xxx_messageInfo_SkillData.Size(m)
  674. }
  675. func (m *SkillData) XXX_DiscardUnknown() {
  676. xxx_messageInfo_SkillData.DiscardUnknown(m)
  677. }
  678. var xxx_messageInfo_SkillData proto.InternalMessageInfo
  679. func (m *SkillData) GetId() int32 {
  680. if m != nil {
  681. return m.Id
  682. }
  683. return 0
  684. }
  685. func (m *SkillData) GetPoint() int32 {
  686. if m != nil {
  687. return m.Point
  688. }
  689. return 0
  690. }
  691. type ChangeJob struct {
  692. TaskList []*TaskData `protobuf:"bytes,1,rep,name=task_list,json=taskList,proto3" json:"task_list,omitempty"`
  693. HeroId int32 `protobuf:"varint,2,opt,name=hero_id,json=heroId,proto3" json:"hero_id,omitempty"`
  694. JobFushState uint32 `protobuf:"varint,3,opt,name=job_fush_state,json=jobFushState,proto3" json:"job_fush_state,omitempty"`
  695. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  696. XXX_unrecognized []byte `json:"-"`
  697. XXX_sizecache int32 `json:"-"`
  698. }
  699. func (m *ChangeJob) Reset() { *m = ChangeJob{} }
  700. func (m *ChangeJob) String() string { return proto.CompactTextString(m) }
  701. func (*ChangeJob) ProtoMessage() {}
  702. func (*ChangeJob) Descriptor() ([]byte, []int) {
  703. return fileDescriptor_116e343673f7ffaf, []int{14}
  704. }
  705. func (m *ChangeJob) XXX_Unmarshal(b []byte) error {
  706. return xxx_messageInfo_ChangeJob.Unmarshal(m, b)
  707. }
  708. func (m *ChangeJob) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  709. return xxx_messageInfo_ChangeJob.Marshal(b, m, deterministic)
  710. }
  711. func (m *ChangeJob) XXX_Merge(src proto.Message) {
  712. xxx_messageInfo_ChangeJob.Merge(m, src)
  713. }
  714. func (m *ChangeJob) XXX_Size() int {
  715. return xxx_messageInfo_ChangeJob.Size(m)
  716. }
  717. func (m *ChangeJob) XXX_DiscardUnknown() {
  718. xxx_messageInfo_ChangeJob.DiscardUnknown(m)
  719. }
  720. var xxx_messageInfo_ChangeJob proto.InternalMessageInfo
  721. func (m *ChangeJob) GetTaskList() []*TaskData {
  722. if m != nil {
  723. return m.TaskList
  724. }
  725. return nil
  726. }
  727. func (m *ChangeJob) GetHeroId() int32 {
  728. if m != nil {
  729. return m.HeroId
  730. }
  731. return 0
  732. }
  733. func (m *ChangeJob) GetJobFushState() uint32 {
  734. if m != nil {
  735. return m.JobFushState
  736. }
  737. return 0
  738. }
  739. // 宠物觉醒(当前伙伴跟随的宠物觉醒信息,觉醒槽位跟着角色走)
  740. type PetQiyueSlotInfo struct {
  741. SlotIdx int32 `protobuf:"varint,1,opt,name=slot_idx,json=slotIdx,proto3" json:"slot_idx,omitempty"`
  742. PetId uint32 `protobuf:"varint,2,opt,name=pet_id,json=petId,proto3" json:"pet_id,omitempty"`
  743. PetCfgId int32 `protobuf:"varint,3,opt,name=pet_cfg_id,json=petCfgId,proto3" json:"pet_cfg_id,omitempty"`
  744. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  745. XXX_unrecognized []byte `json:"-"`
  746. XXX_sizecache int32 `json:"-"`
  747. }
  748. func (m *PetQiyueSlotInfo) Reset() { *m = PetQiyueSlotInfo{} }
  749. func (m *PetQiyueSlotInfo) String() string { return proto.CompactTextString(m) }
  750. func (*PetQiyueSlotInfo) ProtoMessage() {}
  751. func (*PetQiyueSlotInfo) Descriptor() ([]byte, []int) {
  752. return fileDescriptor_116e343673f7ffaf, []int{15}
  753. }
  754. func (m *PetQiyueSlotInfo) XXX_Unmarshal(b []byte) error {
  755. return xxx_messageInfo_PetQiyueSlotInfo.Unmarshal(m, b)
  756. }
  757. func (m *PetQiyueSlotInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  758. return xxx_messageInfo_PetQiyueSlotInfo.Marshal(b, m, deterministic)
  759. }
  760. func (m *PetQiyueSlotInfo) XXX_Merge(src proto.Message) {
  761. xxx_messageInfo_PetQiyueSlotInfo.Merge(m, src)
  762. }
  763. func (m *PetQiyueSlotInfo) XXX_Size() int {
  764. return xxx_messageInfo_PetQiyueSlotInfo.Size(m)
  765. }
  766. func (m *PetQiyueSlotInfo) XXX_DiscardUnknown() {
  767. xxx_messageInfo_PetQiyueSlotInfo.DiscardUnknown(m)
  768. }
  769. var xxx_messageInfo_PetQiyueSlotInfo proto.InternalMessageInfo
  770. func (m *PetQiyueSlotInfo) GetSlotIdx() int32 {
  771. if m != nil {
  772. return m.SlotIdx
  773. }
  774. return 0
  775. }
  776. func (m *PetQiyueSlotInfo) GetPetId() uint32 {
  777. if m != nil {
  778. return m.PetId
  779. }
  780. return 0
  781. }
  782. func (m *PetQiyueSlotInfo) GetPetCfgId() int32 {
  783. if m != nil {
  784. return m.PetCfgId
  785. }
  786. return 0
  787. }
  788. type PetQiyueInfo struct {
  789. PetId uint32 `protobuf:"varint,1,opt,name=pet_id,json=petId,proto3" json:"pet_id,omitempty"`
  790. QiyueSlotList []*PetQiyueSlotInfo `protobuf:"bytes,2,rep,name=qiyue_slot_list,json=qiyueSlotList,proto3" json:"qiyue_slot_list,omitempty"`
  791. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  792. XXX_unrecognized []byte `json:"-"`
  793. XXX_sizecache int32 `json:"-"`
  794. }
  795. func (m *PetQiyueInfo) Reset() { *m = PetQiyueInfo{} }
  796. func (m *PetQiyueInfo) String() string { return proto.CompactTextString(m) }
  797. func (*PetQiyueInfo) ProtoMessage() {}
  798. func (*PetQiyueInfo) Descriptor() ([]byte, []int) {
  799. return fileDescriptor_116e343673f7ffaf, []int{16}
  800. }
  801. func (m *PetQiyueInfo) XXX_Unmarshal(b []byte) error {
  802. return xxx_messageInfo_PetQiyueInfo.Unmarshal(m, b)
  803. }
  804. func (m *PetQiyueInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  805. return xxx_messageInfo_PetQiyueInfo.Marshal(b, m, deterministic)
  806. }
  807. func (m *PetQiyueInfo) XXX_Merge(src proto.Message) {
  808. xxx_messageInfo_PetQiyueInfo.Merge(m, src)
  809. }
  810. func (m *PetQiyueInfo) XXX_Size() int {
  811. return xxx_messageInfo_PetQiyueInfo.Size(m)
  812. }
  813. func (m *PetQiyueInfo) XXX_DiscardUnknown() {
  814. xxx_messageInfo_PetQiyueInfo.DiscardUnknown(m)
  815. }
  816. var xxx_messageInfo_PetQiyueInfo proto.InternalMessageInfo
  817. func (m *PetQiyueInfo) GetPetId() uint32 {
  818. if m != nil {
  819. return m.PetId
  820. }
  821. return 0
  822. }
  823. func (m *PetQiyueInfo) GetQiyueSlotList() []*PetQiyueSlotInfo {
  824. if m != nil {
  825. return m.QiyueSlotList
  826. }
  827. return nil
  828. }
  829. // 宠物契约属性
  830. type PetQiyueAttr struct {
  831. PetId uint32 `protobuf:"varint,1,opt,name=pet_id,json=petId,proto3" json:"pet_id,omitempty"`
  832. BattleAttrList []*KeyValueFloat32 `protobuf:"bytes,2,rep,name=battle_attr_list,json=battleAttrList,proto3" json:"battle_attr_list,omitempty"`
  833. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  834. XXX_unrecognized []byte `json:"-"`
  835. XXX_sizecache int32 `json:"-"`
  836. }
  837. func (m *PetQiyueAttr) Reset() { *m = PetQiyueAttr{} }
  838. func (m *PetQiyueAttr) String() string { return proto.CompactTextString(m) }
  839. func (*PetQiyueAttr) ProtoMessage() {}
  840. func (*PetQiyueAttr) Descriptor() ([]byte, []int) {
  841. return fileDescriptor_116e343673f7ffaf, []int{17}
  842. }
  843. func (m *PetQiyueAttr) XXX_Unmarshal(b []byte) error {
  844. return xxx_messageInfo_PetQiyueAttr.Unmarshal(m, b)
  845. }
  846. func (m *PetQiyueAttr) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  847. return xxx_messageInfo_PetQiyueAttr.Marshal(b, m, deterministic)
  848. }
  849. func (m *PetQiyueAttr) XXX_Merge(src proto.Message) {
  850. xxx_messageInfo_PetQiyueAttr.Merge(m, src)
  851. }
  852. func (m *PetQiyueAttr) XXX_Size() int {
  853. return xxx_messageInfo_PetQiyueAttr.Size(m)
  854. }
  855. func (m *PetQiyueAttr) XXX_DiscardUnknown() {
  856. xxx_messageInfo_PetQiyueAttr.DiscardUnknown(m)
  857. }
  858. var xxx_messageInfo_PetQiyueAttr proto.InternalMessageInfo
  859. func (m *PetQiyueAttr) GetPetId() uint32 {
  860. if m != nil {
  861. return m.PetId
  862. }
  863. return 0
  864. }
  865. func (m *PetQiyueAttr) GetBattleAttrList() []*KeyValueFloat32 {
  866. if m != nil {
  867. return m.BattleAttrList
  868. }
  869. return nil
  870. }
  871. // 玩家角色结构中的strength_level和advance_level不使用
  872. type HeroData struct {
  873. Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  874. ConfigId int32 `protobuf:"varint,2,opt,name=config_id,json=configId,proto3" json:"config_id,omitempty"`
  875. FightPower int32 `protobuf:"varint,3,opt,name=fight_power,json=fightPower,proto3" json:"fight_power,omitempty"`
  876. IsBattle bool `protobuf:"varint,4,opt,name=is_battle,json=isBattle,proto3" json:"is_battle,omitempty"`
  877. BaseLevel int32 `protobuf:"varint,5,opt,name=base_level,json=baseLevel,proto3" json:"base_level,omitempty"`
  878. AdvanceLevel int32 `protobuf:"varint,6,opt,name=advance_level,json=advanceLevel,proto3" json:"advance_level,omitempty"`
  879. StrengthLevel int32 `protobuf:"varint,7,opt,name=strength_level,json=strengthLevel,proto3" json:"strength_level,omitempty"`
  880. Slot *SlotData `protobuf:"bytes,8,opt,name=slot,proto3" json:"slot,omitempty"`
  881. Skill *RoleSkill `protobuf:"bytes,9,opt,name=skill,proto3" json:"skill,omitempty"`
  882. AttrList []*KeyValueType `protobuf:"bytes,10,rep,name=attr_list,json=attrList,proto3" json:"attr_list,omitempty"`
  883. AttrPoint int32 `protobuf:"varint,11,opt,name=attr_point,json=attrPoint,proto3" json:"attr_point,omitempty"`
  884. BattlePetId uint32 `protobuf:"varint,12,opt,name=battle_pet_id,json=battlePetId,proto3" json:"battle_pet_id,omitempty"`
  885. PetFightPower uint64 `protobuf:"varint,13,opt,name=pet_fight_power,json=petFightPower,proto3" json:"pet_fight_power,omitempty"`
  886. QualityList []*KeyValueType `protobuf:"bytes,14,rep,name=quality_list,json=qualityList,proto3" json:"quality_list,omitempty"`
  887. RepressSkillPvpVal int32 `protobuf:"varint,15,opt,name=repress_skill_pvp_val,json=repressSkillPvpVal,proto3" json:"repress_skill_pvp_val,omitempty"`
  888. SkillEquipSlot *SkillEquipSlotData `protobuf:"bytes,16,opt,name=skill_equip_slot,json=skillEquipSlot,proto3" json:"skill_equip_slot,omitempty"`
  889. PetQiyueData *PetQiyueInfo `protobuf:"bytes,17,opt,name=pet_qiyue_data,json=petQiyueData,proto3" json:"pet_qiyue_data,omitempty"`
  890. // 有可能没有(老号)
  891. BattleAttrListOld []*KeyValueType `protobuf:"bytes,50,rep,name=battle_attr_list_old,json=battleAttrListOld,proto3" json:"battle_attr_list_old,omitempty"`
  892. BattleAttrList []*KeyValueFloat32 `protobuf:"bytes,51,rep,name=battle_attr_list,json=battleAttrList,proto3" json:"battle_attr_list,omitempty"`
  893. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  894. XXX_unrecognized []byte `json:"-"`
  895. XXX_sizecache int32 `json:"-"`
  896. }
  897. func (m *HeroData) Reset() { *m = HeroData{} }
  898. func (m *HeroData) String() string { return proto.CompactTextString(m) }
  899. func (*HeroData) ProtoMessage() {}
  900. func (*HeroData) Descriptor() ([]byte, []int) {
  901. return fileDescriptor_116e343673f7ffaf, []int{18}
  902. }
  903. func (m *HeroData) XXX_Unmarshal(b []byte) error {
  904. return xxx_messageInfo_HeroData.Unmarshal(m, b)
  905. }
  906. func (m *HeroData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  907. return xxx_messageInfo_HeroData.Marshal(b, m, deterministic)
  908. }
  909. func (m *HeroData) XXX_Merge(src proto.Message) {
  910. xxx_messageInfo_HeroData.Merge(m, src)
  911. }
  912. func (m *HeroData) XXX_Size() int {
  913. return xxx_messageInfo_HeroData.Size(m)
  914. }
  915. func (m *HeroData) XXX_DiscardUnknown() {
  916. xxx_messageInfo_HeroData.DiscardUnknown(m)
  917. }
  918. var xxx_messageInfo_HeroData proto.InternalMessageInfo
  919. func (m *HeroData) GetId() int32 {
  920. if m != nil {
  921. return m.Id
  922. }
  923. return 0
  924. }
  925. func (m *HeroData) GetConfigId() int32 {
  926. if m != nil {
  927. return m.ConfigId
  928. }
  929. return 0
  930. }
  931. func (m *HeroData) GetFightPower() int32 {
  932. if m != nil {
  933. return m.FightPower
  934. }
  935. return 0
  936. }
  937. func (m *HeroData) GetIsBattle() bool {
  938. if m != nil {
  939. return m.IsBattle
  940. }
  941. return false
  942. }
  943. func (m *HeroData) GetBaseLevel() int32 {
  944. if m != nil {
  945. return m.BaseLevel
  946. }
  947. return 0
  948. }
  949. func (m *HeroData) GetAdvanceLevel() int32 {
  950. if m != nil {
  951. return m.AdvanceLevel
  952. }
  953. return 0
  954. }
  955. func (m *HeroData) GetStrengthLevel() int32 {
  956. if m != nil {
  957. return m.StrengthLevel
  958. }
  959. return 0
  960. }
  961. func (m *HeroData) GetSlot() *SlotData {
  962. if m != nil {
  963. return m.Slot
  964. }
  965. return nil
  966. }
  967. func (m *HeroData) GetSkill() *RoleSkill {
  968. if m != nil {
  969. return m.Skill
  970. }
  971. return nil
  972. }
  973. func (m *HeroData) GetAttrList() []*KeyValueType {
  974. if m != nil {
  975. return m.AttrList
  976. }
  977. return nil
  978. }
  979. func (m *HeroData) GetAttrPoint() int32 {
  980. if m != nil {
  981. return m.AttrPoint
  982. }
  983. return 0
  984. }
  985. func (m *HeroData) GetBattlePetId() uint32 {
  986. if m != nil {
  987. return m.BattlePetId
  988. }
  989. return 0
  990. }
  991. func (m *HeroData) GetPetFightPower() uint64 {
  992. if m != nil {
  993. return m.PetFightPower
  994. }
  995. return 0
  996. }
  997. func (m *HeroData) GetQualityList() []*KeyValueType {
  998. if m != nil {
  999. return m.QualityList
  1000. }
  1001. return nil
  1002. }
  1003. func (m *HeroData) GetRepressSkillPvpVal() int32 {
  1004. if m != nil {
  1005. return m.RepressSkillPvpVal
  1006. }
  1007. return 0
  1008. }
  1009. func (m *HeroData) GetSkillEquipSlot() *SkillEquipSlotData {
  1010. if m != nil {
  1011. return m.SkillEquipSlot
  1012. }
  1013. return nil
  1014. }
  1015. func (m *HeroData) GetPetQiyueData() *PetQiyueInfo {
  1016. if m != nil {
  1017. return m.PetQiyueData
  1018. }
  1019. return nil
  1020. }
  1021. func (m *HeroData) GetBattleAttrListOld() []*KeyValueType {
  1022. if m != nil {
  1023. return m.BattleAttrListOld
  1024. }
  1025. return nil
  1026. }
  1027. func (m *HeroData) GetBattleAttrList() []*KeyValueFloat32 {
  1028. if m != nil {
  1029. return m.BattleAttrList
  1030. }
  1031. return nil
  1032. }
  1033. // 时装数据
  1034. type FashionData struct {
  1035. Eye int32 `protobuf:"varint,1,opt,name=eye,proto3" json:"eye,omitempty"`
  1036. Hair int32 `protobuf:"varint,2,opt,name=hair,proto3" json:"hair,omitempty"`
  1037. HairAvatar int32 `protobuf:"varint,3,opt,name=hair_avatar,json=hairAvatar,proto3" json:"hair_avatar,omitempty"`
  1038. FashionUpList []int32 `protobuf:"varint,4,rep,packed,name=fashion_up_list,json=fashionUpList,proto3" json:"fashion_up_list,omitempty"`
  1039. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1040. XXX_unrecognized []byte `json:"-"`
  1041. XXX_sizecache int32 `json:"-"`
  1042. }
  1043. func (m *FashionData) Reset() { *m = FashionData{} }
  1044. func (m *FashionData) String() string { return proto.CompactTextString(m) }
  1045. func (*FashionData) ProtoMessage() {}
  1046. func (*FashionData) Descriptor() ([]byte, []int) {
  1047. return fileDescriptor_116e343673f7ffaf, []int{19}
  1048. }
  1049. func (m *FashionData) XXX_Unmarshal(b []byte) error {
  1050. return xxx_messageInfo_FashionData.Unmarshal(m, b)
  1051. }
  1052. func (m *FashionData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1053. return xxx_messageInfo_FashionData.Marshal(b, m, deterministic)
  1054. }
  1055. func (m *FashionData) XXX_Merge(src proto.Message) {
  1056. xxx_messageInfo_FashionData.Merge(m, src)
  1057. }
  1058. func (m *FashionData) XXX_Size() int {
  1059. return xxx_messageInfo_FashionData.Size(m)
  1060. }
  1061. func (m *FashionData) XXX_DiscardUnknown() {
  1062. xxx_messageInfo_FashionData.DiscardUnknown(m)
  1063. }
  1064. var xxx_messageInfo_FashionData proto.InternalMessageInfo
  1065. func (m *FashionData) GetEye() int32 {
  1066. if m != nil {
  1067. return m.Eye
  1068. }
  1069. return 0
  1070. }
  1071. func (m *FashionData) GetHair() int32 {
  1072. if m != nil {
  1073. return m.Hair
  1074. }
  1075. return 0
  1076. }
  1077. func (m *FashionData) GetHairAvatar() int32 {
  1078. if m != nil {
  1079. return m.HairAvatar
  1080. }
  1081. return 0
  1082. }
  1083. func (m *FashionData) GetFashionUpList() []int32 {
  1084. if m != nil {
  1085. return m.FashionUpList
  1086. }
  1087. return nil
  1088. }
  1089. type FashionAttr struct {
  1090. JobType int32 `protobuf:"varint,1,opt,name=jobType,proto3" json:"jobType,omitempty"`
  1091. AttrId int32 `protobuf:"varint,2,opt,name=attrId,proto3" json:"attrId,omitempty"`
  1092. Value int32 `protobuf:"varint,3,opt,name=value,proto3" json:"value,omitempty"`
  1093. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1094. XXX_unrecognized []byte `json:"-"`
  1095. XXX_sizecache int32 `json:"-"`
  1096. }
  1097. func (m *FashionAttr) Reset() { *m = FashionAttr{} }
  1098. func (m *FashionAttr) String() string { return proto.CompactTextString(m) }
  1099. func (*FashionAttr) ProtoMessage() {}
  1100. func (*FashionAttr) Descriptor() ([]byte, []int) {
  1101. return fileDescriptor_116e343673f7ffaf, []int{20}
  1102. }
  1103. func (m *FashionAttr) XXX_Unmarshal(b []byte) error {
  1104. return xxx_messageInfo_FashionAttr.Unmarshal(m, b)
  1105. }
  1106. func (m *FashionAttr) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1107. return xxx_messageInfo_FashionAttr.Marshal(b, m, deterministic)
  1108. }
  1109. func (m *FashionAttr) XXX_Merge(src proto.Message) {
  1110. xxx_messageInfo_FashionAttr.Merge(m, src)
  1111. }
  1112. func (m *FashionAttr) XXX_Size() int {
  1113. return xxx_messageInfo_FashionAttr.Size(m)
  1114. }
  1115. func (m *FashionAttr) XXX_DiscardUnknown() {
  1116. xxx_messageInfo_FashionAttr.DiscardUnknown(m)
  1117. }
  1118. var xxx_messageInfo_FashionAttr proto.InternalMessageInfo
  1119. func (m *FashionAttr) GetJobType() int32 {
  1120. if m != nil {
  1121. return m.JobType
  1122. }
  1123. return 0
  1124. }
  1125. func (m *FashionAttr) GetAttrId() int32 {
  1126. if m != nil {
  1127. return m.AttrId
  1128. }
  1129. return 0
  1130. }
  1131. func (m *FashionAttr) GetValue() int32 {
  1132. if m != nil {
  1133. return m.Value
  1134. }
  1135. return 0
  1136. }
  1137. type HeadFrameData struct {
  1138. HeadFrameId int32 `protobuf:"varint,1,opt,name=head_frame_id,json=headFrameId,proto3" json:"head_frame_id,omitempty"`
  1139. HeadFrameTime int64 `protobuf:"varint,2,opt,name=head_frame_time,json=headFrameTime,proto3" json:"head_frame_time,omitempty"`
  1140. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1141. XXX_unrecognized []byte `json:"-"`
  1142. XXX_sizecache int32 `json:"-"`
  1143. }
  1144. func (m *HeadFrameData) Reset() { *m = HeadFrameData{} }
  1145. func (m *HeadFrameData) String() string { return proto.CompactTextString(m) }
  1146. func (*HeadFrameData) ProtoMessage() {}
  1147. func (*HeadFrameData) Descriptor() ([]byte, []int) {
  1148. return fileDescriptor_116e343673f7ffaf, []int{21}
  1149. }
  1150. func (m *HeadFrameData) XXX_Unmarshal(b []byte) error {
  1151. return xxx_messageInfo_HeadFrameData.Unmarshal(m, b)
  1152. }
  1153. func (m *HeadFrameData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1154. return xxx_messageInfo_HeadFrameData.Marshal(b, m, deterministic)
  1155. }
  1156. func (m *HeadFrameData) XXX_Merge(src proto.Message) {
  1157. xxx_messageInfo_HeadFrameData.Merge(m, src)
  1158. }
  1159. func (m *HeadFrameData) XXX_Size() int {
  1160. return xxx_messageInfo_HeadFrameData.Size(m)
  1161. }
  1162. func (m *HeadFrameData) XXX_DiscardUnknown() {
  1163. xxx_messageInfo_HeadFrameData.DiscardUnknown(m)
  1164. }
  1165. var xxx_messageInfo_HeadFrameData proto.InternalMessageInfo
  1166. func (m *HeadFrameData) GetHeadFrameId() int32 {
  1167. if m != nil {
  1168. return m.HeadFrameId
  1169. }
  1170. return 0
  1171. }
  1172. func (m *HeadFrameData) GetHeadFrameTime() int64 {
  1173. if m != nil {
  1174. return m.HeadFrameTime
  1175. }
  1176. return 0
  1177. }
  1178. // 头像信息
  1179. type HeadInfo struct {
  1180. HeadVersion int32 `protobuf:"varint,1,opt,name=head_version,json=headVersion,proto3" json:"head_version,omitempty"`
  1181. HeadList []int32 `protobuf:"varint,2,rep,packed,name=head_list,json=headList,proto3" json:"head_list,omitempty"`
  1182. HeadFrameList []*HeadFrameData `protobuf:"bytes,3,rep,name=head_frame_list,json=headFrameList,proto3" json:"head_frame_list,omitempty"`
  1183. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1184. XXX_unrecognized []byte `json:"-"`
  1185. XXX_sizecache int32 `json:"-"`
  1186. }
  1187. func (m *HeadInfo) Reset() { *m = HeadInfo{} }
  1188. func (m *HeadInfo) String() string { return proto.CompactTextString(m) }
  1189. func (*HeadInfo) ProtoMessage() {}
  1190. func (*HeadInfo) Descriptor() ([]byte, []int) {
  1191. return fileDescriptor_116e343673f7ffaf, []int{22}
  1192. }
  1193. func (m *HeadInfo) XXX_Unmarshal(b []byte) error {
  1194. return xxx_messageInfo_HeadInfo.Unmarshal(m, b)
  1195. }
  1196. func (m *HeadInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1197. return xxx_messageInfo_HeadInfo.Marshal(b, m, deterministic)
  1198. }
  1199. func (m *HeadInfo) XXX_Merge(src proto.Message) {
  1200. xxx_messageInfo_HeadInfo.Merge(m, src)
  1201. }
  1202. func (m *HeadInfo) XXX_Size() int {
  1203. return xxx_messageInfo_HeadInfo.Size(m)
  1204. }
  1205. func (m *HeadInfo) XXX_DiscardUnknown() {
  1206. xxx_messageInfo_HeadInfo.DiscardUnknown(m)
  1207. }
  1208. var xxx_messageInfo_HeadInfo proto.InternalMessageInfo
  1209. func (m *HeadInfo) GetHeadVersion() int32 {
  1210. if m != nil {
  1211. return m.HeadVersion
  1212. }
  1213. return 0
  1214. }
  1215. func (m *HeadInfo) GetHeadList() []int32 {
  1216. if m != nil {
  1217. return m.HeadList
  1218. }
  1219. return nil
  1220. }
  1221. func (m *HeadInfo) GetHeadFrameList() []*HeadFrameData {
  1222. if m != nil {
  1223. return m.HeadFrameList
  1224. }
  1225. return nil
  1226. }
  1227. // 玩家附属属性
  1228. type RoleData struct {
  1229. BaseExp int32 `protobuf:"varint,1,opt,name=base_exp,json=baseExp,proto3" json:"base_exp,omitempty"`
  1230. JobExp int32 `protobuf:"varint,2,opt,name=job_exp,json=jobExp,proto3" json:"job_exp,omitempty"`
  1231. JobLevel int32 `protobuf:"varint,3,opt,name=job_level,json=jobLevel,proto3" json:"job_level,omitempty"`
  1232. HeroExp int32 `protobuf:"varint,4,opt,name=hero_exp,json=heroExp,proto3" json:"hero_exp,omitempty"`
  1233. HeroData *HeroData `protobuf:"bytes,5,opt,name=hero_data,json=heroData,proto3" json:"hero_data,omitempty"`
  1234. FightPower uint64 `protobuf:"varint,6,opt,name=fight_power,json=fightPower,proto3" json:"fight_power,omitempty"`
  1235. Cruise int32 `protobuf:"varint,7,opt,name=cruise,proto3" json:"cruise,omitempty"`
  1236. MaxCruise int32 `protobuf:"varint,8,opt,name=max_cruise,json=maxCruise,proto3" json:"max_cruise,omitempty"`
  1237. HeadId int32 `protobuf:"varint,9,opt,name=head_id,json=headId,proto3" json:"head_id,omitempty"`
  1238. LastLoginTime uint64 `protobuf:"varint,10,opt,name=last_login_time,json=lastLoginTime,proto3" json:"last_login_time,omitempty"`
  1239. SkillBox int32 `protobuf:"varint,11,opt,name=skill_box,json=skillBox,proto3" json:"skill_box,omitempty"`
  1240. BossRewardList []*KeyValueType `protobuf:"bytes,12,rep,name=boss_reward_list,json=bossRewardList,proto3" json:"boss_reward_list,omitempty"`
  1241. SkillResetCount int32 `protobuf:"varint,13,opt,name=skill_reset_count,json=skillResetCount,proto3" json:"skill_reset_count,omitempty"`
  1242. HeadFrameId int32 `protobuf:"varint,14,opt,name=head_frame_id,json=headFrameId,proto3" json:"head_frame_id,omitempty"`
  1243. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1244. XXX_unrecognized []byte `json:"-"`
  1245. XXX_sizecache int32 `json:"-"`
  1246. }
  1247. func (m *RoleData) Reset() { *m = RoleData{} }
  1248. func (m *RoleData) String() string { return proto.CompactTextString(m) }
  1249. func (*RoleData) ProtoMessage() {}
  1250. func (*RoleData) Descriptor() ([]byte, []int) {
  1251. return fileDescriptor_116e343673f7ffaf, []int{23}
  1252. }
  1253. func (m *RoleData) XXX_Unmarshal(b []byte) error {
  1254. return xxx_messageInfo_RoleData.Unmarshal(m, b)
  1255. }
  1256. func (m *RoleData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1257. return xxx_messageInfo_RoleData.Marshal(b, m, deterministic)
  1258. }
  1259. func (m *RoleData) XXX_Merge(src proto.Message) {
  1260. xxx_messageInfo_RoleData.Merge(m, src)
  1261. }
  1262. func (m *RoleData) XXX_Size() int {
  1263. return xxx_messageInfo_RoleData.Size(m)
  1264. }
  1265. func (m *RoleData) XXX_DiscardUnknown() {
  1266. xxx_messageInfo_RoleData.DiscardUnknown(m)
  1267. }
  1268. var xxx_messageInfo_RoleData proto.InternalMessageInfo
  1269. func (m *RoleData) GetBaseExp() int32 {
  1270. if m != nil {
  1271. return m.BaseExp
  1272. }
  1273. return 0
  1274. }
  1275. func (m *RoleData) GetJobExp() int32 {
  1276. if m != nil {
  1277. return m.JobExp
  1278. }
  1279. return 0
  1280. }
  1281. func (m *RoleData) GetJobLevel() int32 {
  1282. if m != nil {
  1283. return m.JobLevel
  1284. }
  1285. return 0
  1286. }
  1287. func (m *RoleData) GetHeroExp() int32 {
  1288. if m != nil {
  1289. return m.HeroExp
  1290. }
  1291. return 0
  1292. }
  1293. func (m *RoleData) GetHeroData() *HeroData {
  1294. if m != nil {
  1295. return m.HeroData
  1296. }
  1297. return nil
  1298. }
  1299. func (m *RoleData) GetFightPower() uint64 {
  1300. if m != nil {
  1301. return m.FightPower
  1302. }
  1303. return 0
  1304. }
  1305. func (m *RoleData) GetCruise() int32 {
  1306. if m != nil {
  1307. return m.Cruise
  1308. }
  1309. return 0
  1310. }
  1311. func (m *RoleData) GetMaxCruise() int32 {
  1312. if m != nil {
  1313. return m.MaxCruise
  1314. }
  1315. return 0
  1316. }
  1317. func (m *RoleData) GetHeadId() int32 {
  1318. if m != nil {
  1319. return m.HeadId
  1320. }
  1321. return 0
  1322. }
  1323. func (m *RoleData) GetLastLoginTime() uint64 {
  1324. if m != nil {
  1325. return m.LastLoginTime
  1326. }
  1327. return 0
  1328. }
  1329. func (m *RoleData) GetSkillBox() int32 {
  1330. if m != nil {
  1331. return m.SkillBox
  1332. }
  1333. return 0
  1334. }
  1335. func (m *RoleData) GetBossRewardList() []*KeyValueType {
  1336. if m != nil {
  1337. return m.BossRewardList
  1338. }
  1339. return nil
  1340. }
  1341. func (m *RoleData) GetSkillResetCount() int32 {
  1342. if m != nil {
  1343. return m.SkillResetCount
  1344. }
  1345. return 0
  1346. }
  1347. func (m *RoleData) GetHeadFrameId() int32 {
  1348. if m != nil {
  1349. return m.HeadFrameId
  1350. }
  1351. return 0
  1352. }
  1353. // 角色基本信息(不包括其他系统部分)
  1354. type RoleBase struct {
  1355. Id uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  1356. NickName string `protobuf:"bytes,2,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
  1357. Desc string `protobuf:"bytes,3,opt,name=desc,proto3" json:"desc,omitempty"`
  1358. Sex int32 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex,omitempty"`
  1359. Country int32 `protobuf:"varint,5,opt,name=country,proto3" json:"country,omitempty"`
  1360. GuideId int32 `protobuf:"varint,6,opt,name=guide_id,json=guideId,proto3" json:"guide_id,omitempty"`
  1361. Coin uint64 `protobuf:"varint,7,opt,name=coin,proto3" json:"coin,omitempty"`
  1362. Rmb uint32 `protobuf:"varint,8,opt,name=rmb,proto3" json:"rmb,omitempty"`
  1363. ResList []*KeyValueType `protobuf:"bytes,9,rep,name=res_list,json=resList,proto3" json:"res_list,omitempty"`
  1364. RoleData *RoleData `protobuf:"bytes,10,opt,name=role_data,json=roleData,proto3" json:"role_data,omitempty"`
  1365. FashionData *FashionData `protobuf:"bytes,11,opt,name=fashion_data,json=fashionData,proto3" json:"fashion_data,omitempty"`
  1366. Head_Info *HeadInfo `protobuf:"bytes,13,opt,name=head_Info,json=headInfo,proto3" json:"head_Info,omitempty"`
  1367. StoryId []int32 `protobuf:"varint,14,rep,packed,name=story_id,json=storyId,proto3" json:"story_id,omitempty"`
  1368. Cguide *KeyValueType `protobuf:"bytes,15,opt,name=cguide,proto3" json:"cguide,omitempty"`
  1369. MapAnimation *KeyValueType `protobuf:"bytes,16,opt,name=map_animation,json=mapAnimation,proto3" json:"map_animation,omitempty"`
  1370. BanTime uint64 `protobuf:"varint,17,opt,name=ban_time,json=banTime,proto3" json:"ban_time,omitempty"`
  1371. TotalRecharge float32 `protobuf:"fixed32,18,opt,name=total_recharge,json=totalRecharge,proto3" json:"total_recharge,omitempty"`
  1372. DayRecharge float32 `protobuf:"fixed32,19,opt,name=day_recharge,json=dayRecharge,proto3" json:"day_recharge,omitempty"`
  1373. VipLevel int32 `protobuf:"varint,20,opt,name=vip_level,json=vipLevel,proto3" json:"vip_level,omitempty"`
  1374. LastRechargeTime uint64 `protobuf:"varint,21,opt,name=last_recharge_time,json=lastRechargeTime,proto3" json:"last_recharge_time,omitempty"`
  1375. QuestionReward int32 `protobuf:"varint,22,opt,name=question_reward,json=questionReward,proto3" json:"question_reward,omitempty"`
  1376. CreateReward bool `protobuf:"varint,23,opt,name=create_reward,json=createReward,proto3" json:"create_reward,omitempty"`
  1377. BanType int32 `protobuf:"varint,24,opt,name=ban_type,json=banType,proto3" json:"ban_type,omitempty"`
  1378. ChatBanTime uint64 `protobuf:"varint,25,opt,name=chat_ban_time,json=chatBanTime,proto3" json:"chat_ban_time,omitempty"`
  1379. ChatBanType int32 `protobuf:"varint,26,opt,name=chat_ban_type,json=chatBanType,proto3" json:"chat_ban_type,omitempty"`
  1380. TotalOnlineTime int32 `protobuf:"varint,27,opt,name=total_online_time,json=totalOnlineTime,proto3" json:"total_online_time,omitempty"`
  1381. OnlineStamp uint64 `protobuf:"varint,28,opt,name=online_stamp,json=onlineStamp,proto3" json:"online_stamp,omitempty"`
  1382. OnlineRewardId int32 `protobuf:"varint,29,opt,name=online_reward_id,json=onlineRewardId,proto3" json:"online_reward_id,omitempty"`
  1383. DailyResetTimeStamp uint64 `protobuf:"varint,30,opt,name=daily_reset_time_stamp,json=dailyResetTimeStamp,proto3" json:"daily_reset_time_stamp,omitempty"`
  1384. RepressSkillPvpVal int32 `protobuf:"varint,31,opt,name=repress_skill_pvp_val,json=repressSkillPvpVal,proto3" json:"repress_skill_pvp_val,omitempty"`
  1385. BtZhenDayRecharge float32 `protobuf:"fixed32,50,opt,name=bt_zhen_day_recharge,json=btZhenDayRecharge,proto3" json:"bt_zhen_day_recharge,omitempty"`
  1386. BtJiaDayRecharge int32 `protobuf:"varint,51,opt,name=bt_jia_day_recharge,json=btJiaDayRecharge,proto3" json:"bt_jia_day_recharge,omitempty"`
  1387. BtJiaTotalRecharge uint64 `protobuf:"varint,52,opt,name=bt_jia_total_recharge,json=btJiaTotalRecharge,proto3" json:"bt_jia_total_recharge,omitempty"`
  1388. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1389. XXX_unrecognized []byte `json:"-"`
  1390. XXX_sizecache int32 `json:"-"`
  1391. }
  1392. func (m *RoleBase) Reset() { *m = RoleBase{} }
  1393. func (m *RoleBase) String() string { return proto.CompactTextString(m) }
  1394. func (*RoleBase) ProtoMessage() {}
  1395. func (*RoleBase) Descriptor() ([]byte, []int) {
  1396. return fileDescriptor_116e343673f7ffaf, []int{24}
  1397. }
  1398. func (m *RoleBase) XXX_Unmarshal(b []byte) error {
  1399. return xxx_messageInfo_RoleBase.Unmarshal(m, b)
  1400. }
  1401. func (m *RoleBase) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1402. return xxx_messageInfo_RoleBase.Marshal(b, m, deterministic)
  1403. }
  1404. func (m *RoleBase) XXX_Merge(src proto.Message) {
  1405. xxx_messageInfo_RoleBase.Merge(m, src)
  1406. }
  1407. func (m *RoleBase) XXX_Size() int {
  1408. return xxx_messageInfo_RoleBase.Size(m)
  1409. }
  1410. func (m *RoleBase) XXX_DiscardUnknown() {
  1411. xxx_messageInfo_RoleBase.DiscardUnknown(m)
  1412. }
  1413. var xxx_messageInfo_RoleBase proto.InternalMessageInfo
  1414. func (m *RoleBase) GetId() uint64 {
  1415. if m != nil {
  1416. return m.Id
  1417. }
  1418. return 0
  1419. }
  1420. func (m *RoleBase) GetNickName() string {
  1421. if m != nil {
  1422. return m.NickName
  1423. }
  1424. return ""
  1425. }
  1426. func (m *RoleBase) GetDesc() string {
  1427. if m != nil {
  1428. return m.Desc
  1429. }
  1430. return ""
  1431. }
  1432. func (m *RoleBase) GetSex() int32 {
  1433. if m != nil {
  1434. return m.Sex
  1435. }
  1436. return 0
  1437. }
  1438. func (m *RoleBase) GetCountry() int32 {
  1439. if m != nil {
  1440. return m.Country
  1441. }
  1442. return 0
  1443. }
  1444. func (m *RoleBase) GetGuideId() int32 {
  1445. if m != nil {
  1446. return m.GuideId
  1447. }
  1448. return 0
  1449. }
  1450. func (m *RoleBase) GetCoin() uint64 {
  1451. if m != nil {
  1452. return m.Coin
  1453. }
  1454. return 0
  1455. }
  1456. func (m *RoleBase) GetRmb() uint32 {
  1457. if m != nil {
  1458. return m.Rmb
  1459. }
  1460. return 0
  1461. }
  1462. func (m *RoleBase) GetResList() []*KeyValueType {
  1463. if m != nil {
  1464. return m.ResList
  1465. }
  1466. return nil
  1467. }
  1468. func (m *RoleBase) GetRoleData() *RoleData {
  1469. if m != nil {
  1470. return m.RoleData
  1471. }
  1472. return nil
  1473. }
  1474. func (m *RoleBase) GetFashionData() *FashionData {
  1475. if m != nil {
  1476. return m.FashionData
  1477. }
  1478. return nil
  1479. }
  1480. func (m *RoleBase) GetHead_Info() *HeadInfo {
  1481. if m != nil {
  1482. return m.Head_Info
  1483. }
  1484. return nil
  1485. }
  1486. func (m *RoleBase) GetStoryId() []int32 {
  1487. if m != nil {
  1488. return m.StoryId
  1489. }
  1490. return nil
  1491. }
  1492. func (m *RoleBase) GetCguide() *KeyValueType {
  1493. if m != nil {
  1494. return m.Cguide
  1495. }
  1496. return nil
  1497. }
  1498. func (m *RoleBase) GetMapAnimation() *KeyValueType {
  1499. if m != nil {
  1500. return m.MapAnimation
  1501. }
  1502. return nil
  1503. }
  1504. func (m *RoleBase) GetBanTime() uint64 {
  1505. if m != nil {
  1506. return m.BanTime
  1507. }
  1508. return 0
  1509. }
  1510. func (m *RoleBase) GetTotalRecharge() float32 {
  1511. if m != nil {
  1512. return m.TotalRecharge
  1513. }
  1514. return 0
  1515. }
  1516. func (m *RoleBase) GetDayRecharge() float32 {
  1517. if m != nil {
  1518. return m.DayRecharge
  1519. }
  1520. return 0
  1521. }
  1522. func (m *RoleBase) GetVipLevel() int32 {
  1523. if m != nil {
  1524. return m.VipLevel
  1525. }
  1526. return 0
  1527. }
  1528. func (m *RoleBase) GetLastRechargeTime() uint64 {
  1529. if m != nil {
  1530. return m.LastRechargeTime
  1531. }
  1532. return 0
  1533. }
  1534. func (m *RoleBase) GetQuestionReward() int32 {
  1535. if m != nil {
  1536. return m.QuestionReward
  1537. }
  1538. return 0
  1539. }
  1540. func (m *RoleBase) GetCreateReward() bool {
  1541. if m != nil {
  1542. return m.CreateReward
  1543. }
  1544. return false
  1545. }
  1546. func (m *RoleBase) GetBanType() int32 {
  1547. if m != nil {
  1548. return m.BanType
  1549. }
  1550. return 0
  1551. }
  1552. func (m *RoleBase) GetChatBanTime() uint64 {
  1553. if m != nil {
  1554. return m.ChatBanTime
  1555. }
  1556. return 0
  1557. }
  1558. func (m *RoleBase) GetChatBanType() int32 {
  1559. if m != nil {
  1560. return m.ChatBanType
  1561. }
  1562. return 0
  1563. }
  1564. func (m *RoleBase) GetTotalOnlineTime() int32 {
  1565. if m != nil {
  1566. return m.TotalOnlineTime
  1567. }
  1568. return 0
  1569. }
  1570. func (m *RoleBase) GetOnlineStamp() uint64 {
  1571. if m != nil {
  1572. return m.OnlineStamp
  1573. }
  1574. return 0
  1575. }
  1576. func (m *RoleBase) GetOnlineRewardId() int32 {
  1577. if m != nil {
  1578. return m.OnlineRewardId
  1579. }
  1580. return 0
  1581. }
  1582. func (m *RoleBase) GetDailyResetTimeStamp() uint64 {
  1583. if m != nil {
  1584. return m.DailyResetTimeStamp
  1585. }
  1586. return 0
  1587. }
  1588. func (m *RoleBase) GetRepressSkillPvpVal() int32 {
  1589. if m != nil {
  1590. return m.RepressSkillPvpVal
  1591. }
  1592. return 0
  1593. }
  1594. func (m *RoleBase) GetBtZhenDayRecharge() float32 {
  1595. if m != nil {
  1596. return m.BtZhenDayRecharge
  1597. }
  1598. return 0
  1599. }
  1600. func (m *RoleBase) GetBtJiaDayRecharge() int32 {
  1601. if m != nil {
  1602. return m.BtJiaDayRecharge
  1603. }
  1604. return 0
  1605. }
  1606. func (m *RoleBase) GetBtJiaTotalRecharge() uint64 {
  1607. if m != nil {
  1608. return m.BtJiaTotalRecharge
  1609. }
  1610. return 0
  1611. }
  1612. // 神器槽位详细信息
  1613. type SkillEquipSlotDetailData struct {
  1614. SkillEquipId uint32 `protobuf:"varint,1,opt,name=skill_equip_id,json=skillEquipId,proto3" json:"skill_equip_id,omitempty"`
  1615. SkillEquipConfigId int32 `protobuf:"varint,2,opt,name=skill_equip_config_id,json=skillEquipConfigId,proto3" json:"skill_equip_config_id,omitempty"`
  1616. SkillEquipStarLevel int32 `protobuf:"varint,3,opt,name=skill_equip_star_level,json=skillEquipStarLevel,proto3" json:"skill_equip_star_level,omitempty"`
  1617. SlotLevel int32 `protobuf:"varint,4,opt,name=slot_level,json=slotLevel,proto3" json:"slot_level,omitempty"`
  1618. SlotAttrs []*KeyValueType `protobuf:"bytes,5,rep,name=slot_attrs,json=slotAttrs,proto3" json:"slot_attrs,omitempty"`
  1619. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1620. XXX_unrecognized []byte `json:"-"`
  1621. XXX_sizecache int32 `json:"-"`
  1622. }
  1623. func (m *SkillEquipSlotDetailData) Reset() { *m = SkillEquipSlotDetailData{} }
  1624. func (m *SkillEquipSlotDetailData) String() string { return proto.CompactTextString(m) }
  1625. func (*SkillEquipSlotDetailData) ProtoMessage() {}
  1626. func (*SkillEquipSlotDetailData) Descriptor() ([]byte, []int) {
  1627. return fileDescriptor_116e343673f7ffaf, []int{25}
  1628. }
  1629. func (m *SkillEquipSlotDetailData) XXX_Unmarshal(b []byte) error {
  1630. return xxx_messageInfo_SkillEquipSlotDetailData.Unmarshal(m, b)
  1631. }
  1632. func (m *SkillEquipSlotDetailData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1633. return xxx_messageInfo_SkillEquipSlotDetailData.Marshal(b, m, deterministic)
  1634. }
  1635. func (m *SkillEquipSlotDetailData) XXX_Merge(src proto.Message) {
  1636. xxx_messageInfo_SkillEquipSlotDetailData.Merge(m, src)
  1637. }
  1638. func (m *SkillEquipSlotDetailData) XXX_Size() int {
  1639. return xxx_messageInfo_SkillEquipSlotDetailData.Size(m)
  1640. }
  1641. func (m *SkillEquipSlotDetailData) XXX_DiscardUnknown() {
  1642. xxx_messageInfo_SkillEquipSlotDetailData.DiscardUnknown(m)
  1643. }
  1644. var xxx_messageInfo_SkillEquipSlotDetailData proto.InternalMessageInfo
  1645. func (m *SkillEquipSlotDetailData) GetSkillEquipId() uint32 {
  1646. if m != nil {
  1647. return m.SkillEquipId
  1648. }
  1649. return 0
  1650. }
  1651. func (m *SkillEquipSlotDetailData) GetSkillEquipConfigId() int32 {
  1652. if m != nil {
  1653. return m.SkillEquipConfigId
  1654. }
  1655. return 0
  1656. }
  1657. func (m *SkillEquipSlotDetailData) GetSkillEquipStarLevel() int32 {
  1658. if m != nil {
  1659. return m.SkillEquipStarLevel
  1660. }
  1661. return 0
  1662. }
  1663. func (m *SkillEquipSlotDetailData) GetSlotLevel() int32 {
  1664. if m != nil {
  1665. return m.SlotLevel
  1666. }
  1667. return 0
  1668. }
  1669. func (m *SkillEquipSlotDetailData) GetSlotAttrs() []*KeyValueType {
  1670. if m != nil {
  1671. return m.SlotAttrs
  1672. }
  1673. return nil
  1674. }
  1675. // 神器槽位列表详细数据
  1676. type SkillEquipSlotData struct {
  1677. HeroId int32 `protobuf:"varint,1,opt,name=hero_id,json=heroId,proto3" json:"hero_id,omitempty"`
  1678. SlotList []*SkillEquipSlotDetailData `protobuf:"bytes,2,rep,name=slot_list,json=slotList,proto3" json:"slot_list,omitempty"`
  1679. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1680. XXX_unrecognized []byte `json:"-"`
  1681. XXX_sizecache int32 `json:"-"`
  1682. }
  1683. func (m *SkillEquipSlotData) Reset() { *m = SkillEquipSlotData{} }
  1684. func (m *SkillEquipSlotData) String() string { return proto.CompactTextString(m) }
  1685. func (*SkillEquipSlotData) ProtoMessage() {}
  1686. func (*SkillEquipSlotData) Descriptor() ([]byte, []int) {
  1687. return fileDescriptor_116e343673f7ffaf, []int{26}
  1688. }
  1689. func (m *SkillEquipSlotData) XXX_Unmarshal(b []byte) error {
  1690. return xxx_messageInfo_SkillEquipSlotData.Unmarshal(m, b)
  1691. }
  1692. func (m *SkillEquipSlotData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1693. return xxx_messageInfo_SkillEquipSlotData.Marshal(b, m, deterministic)
  1694. }
  1695. func (m *SkillEquipSlotData) XXX_Merge(src proto.Message) {
  1696. xxx_messageInfo_SkillEquipSlotData.Merge(m, src)
  1697. }
  1698. func (m *SkillEquipSlotData) XXX_Size() int {
  1699. return xxx_messageInfo_SkillEquipSlotData.Size(m)
  1700. }
  1701. func (m *SkillEquipSlotData) XXX_DiscardUnknown() {
  1702. xxx_messageInfo_SkillEquipSlotData.DiscardUnknown(m)
  1703. }
  1704. var xxx_messageInfo_SkillEquipSlotData proto.InternalMessageInfo
  1705. func (m *SkillEquipSlotData) GetHeroId() int32 {
  1706. if m != nil {
  1707. return m.HeroId
  1708. }
  1709. return 0
  1710. }
  1711. func (m *SkillEquipSlotData) GetSlotList() []*SkillEquipSlotDetailData {
  1712. if m != nil {
  1713. return m.SlotList
  1714. }
  1715. return nil
  1716. }
  1717. // 神器数据
  1718. type SkillEquipData struct {
  1719. Id uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  1720. ConfigId int32 `protobuf:"varint,2,opt,name=config_id,json=configId,proto3" json:"config_id,omitempty"`
  1721. StarLevel int32 `protobuf:"varint,3,opt,name=star_level,json=starLevel,proto3" json:"star_level,omitempty"`
  1722. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1723. XXX_unrecognized []byte `json:"-"`
  1724. XXX_sizecache int32 `json:"-"`
  1725. }
  1726. func (m *SkillEquipData) Reset() { *m = SkillEquipData{} }
  1727. func (m *SkillEquipData) String() string { return proto.CompactTextString(m) }
  1728. func (*SkillEquipData) ProtoMessage() {}
  1729. func (*SkillEquipData) Descriptor() ([]byte, []int) {
  1730. return fileDescriptor_116e343673f7ffaf, []int{27}
  1731. }
  1732. func (m *SkillEquipData) XXX_Unmarshal(b []byte) error {
  1733. return xxx_messageInfo_SkillEquipData.Unmarshal(m, b)
  1734. }
  1735. func (m *SkillEquipData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1736. return xxx_messageInfo_SkillEquipData.Marshal(b, m, deterministic)
  1737. }
  1738. func (m *SkillEquipData) XXX_Merge(src proto.Message) {
  1739. xxx_messageInfo_SkillEquipData.Merge(m, src)
  1740. }
  1741. func (m *SkillEquipData) XXX_Size() int {
  1742. return xxx_messageInfo_SkillEquipData.Size(m)
  1743. }
  1744. func (m *SkillEquipData) XXX_DiscardUnknown() {
  1745. xxx_messageInfo_SkillEquipData.DiscardUnknown(m)
  1746. }
  1747. var xxx_messageInfo_SkillEquipData proto.InternalMessageInfo
  1748. func (m *SkillEquipData) GetId() uint32 {
  1749. if m != nil {
  1750. return m.Id
  1751. }
  1752. return 0
  1753. }
  1754. func (m *SkillEquipData) GetConfigId() int32 {
  1755. if m != nil {
  1756. return m.ConfigId
  1757. }
  1758. return 0
  1759. }
  1760. func (m *SkillEquipData) GetStarLevel() int32 {
  1761. if m != nil {
  1762. return m.StarLevel
  1763. }
  1764. return 0
  1765. }
  1766. type SkillEquipChangeData struct {
  1767. SkillEquipData *SkillEquipData `protobuf:"bytes,1,opt,name=skill_equip_data,json=skillEquipData,proto3" json:"skill_equip_data,omitempty"`
  1768. Add bool `protobuf:"varint,2,opt,name=add,proto3" json:"add,omitempty"`
  1769. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1770. XXX_unrecognized []byte `json:"-"`
  1771. XXX_sizecache int32 `json:"-"`
  1772. }
  1773. func (m *SkillEquipChangeData) Reset() { *m = SkillEquipChangeData{} }
  1774. func (m *SkillEquipChangeData) String() string { return proto.CompactTextString(m) }
  1775. func (*SkillEquipChangeData) ProtoMessage() {}
  1776. func (*SkillEquipChangeData) Descriptor() ([]byte, []int) {
  1777. return fileDescriptor_116e343673f7ffaf, []int{28}
  1778. }
  1779. func (m *SkillEquipChangeData) XXX_Unmarshal(b []byte) error {
  1780. return xxx_messageInfo_SkillEquipChangeData.Unmarshal(m, b)
  1781. }
  1782. func (m *SkillEquipChangeData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1783. return xxx_messageInfo_SkillEquipChangeData.Marshal(b, m, deterministic)
  1784. }
  1785. func (m *SkillEquipChangeData) XXX_Merge(src proto.Message) {
  1786. xxx_messageInfo_SkillEquipChangeData.Merge(m, src)
  1787. }
  1788. func (m *SkillEquipChangeData) XXX_Size() int {
  1789. return xxx_messageInfo_SkillEquipChangeData.Size(m)
  1790. }
  1791. func (m *SkillEquipChangeData) XXX_DiscardUnknown() {
  1792. xxx_messageInfo_SkillEquipChangeData.DiscardUnknown(m)
  1793. }
  1794. var xxx_messageInfo_SkillEquipChangeData proto.InternalMessageInfo
  1795. func (m *SkillEquipChangeData) GetSkillEquipData() *SkillEquipData {
  1796. if m != nil {
  1797. return m.SkillEquipData
  1798. }
  1799. return nil
  1800. }
  1801. func (m *SkillEquipChangeData) GetAdd() bool {
  1802. if m != nil {
  1803. return m.Add
  1804. }
  1805. return false
  1806. }
  1807. // 玩家神器列表
  1808. type RoleSkillEquip struct {
  1809. MaxSkillEquipId uint32 `protobuf:"varint,1,opt,name=max_skill_equip_id,json=maxSkillEquipId,proto3" json:"max_skill_equip_id,omitempty"`
  1810. SkillEquipList []*SkillEquipData `protobuf:"bytes,2,rep,name=skill_equip_list,json=skillEquipList,proto3" json:"skill_equip_list,omitempty"`
  1811. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1812. XXX_unrecognized []byte `json:"-"`
  1813. XXX_sizecache int32 `json:"-"`
  1814. }
  1815. func (m *RoleSkillEquip) Reset() { *m = RoleSkillEquip{} }
  1816. func (m *RoleSkillEquip) String() string { return proto.CompactTextString(m) }
  1817. func (*RoleSkillEquip) ProtoMessage() {}
  1818. func (*RoleSkillEquip) Descriptor() ([]byte, []int) {
  1819. return fileDescriptor_116e343673f7ffaf, []int{29}
  1820. }
  1821. func (m *RoleSkillEquip) XXX_Unmarshal(b []byte) error {
  1822. return xxx_messageInfo_RoleSkillEquip.Unmarshal(m, b)
  1823. }
  1824. func (m *RoleSkillEquip) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1825. return xxx_messageInfo_RoleSkillEquip.Marshal(b, m, deterministic)
  1826. }
  1827. func (m *RoleSkillEquip) XXX_Merge(src proto.Message) {
  1828. xxx_messageInfo_RoleSkillEquip.Merge(m, src)
  1829. }
  1830. func (m *RoleSkillEquip) XXX_Size() int {
  1831. return xxx_messageInfo_RoleSkillEquip.Size(m)
  1832. }
  1833. func (m *RoleSkillEquip) XXX_DiscardUnknown() {
  1834. xxx_messageInfo_RoleSkillEquip.DiscardUnknown(m)
  1835. }
  1836. var xxx_messageInfo_RoleSkillEquip proto.InternalMessageInfo
  1837. func (m *RoleSkillEquip) GetMaxSkillEquipId() uint32 {
  1838. if m != nil {
  1839. return m.MaxSkillEquipId
  1840. }
  1841. return 0
  1842. }
  1843. func (m *RoleSkillEquip) GetSkillEquipList() []*SkillEquipData {
  1844. if m != nil {
  1845. return m.SkillEquipList
  1846. }
  1847. return nil
  1848. }
  1849. // ///////////////////////////////////////////////////////////////////////////
  1850. type EquipData struct {
  1851. ConfigId int32 `protobuf:"varint,1,opt,name=config_id,json=configId,proto3" json:"config_id,omitempty"`
  1852. Num int32 `protobuf:"varint,2,opt,name=num,proto3" json:"num,omitempty"`
  1853. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1854. XXX_unrecognized []byte `json:"-"`
  1855. XXX_sizecache int32 `json:"-"`
  1856. }
  1857. func (m *EquipData) Reset() { *m = EquipData{} }
  1858. func (m *EquipData) String() string { return proto.CompactTextString(m) }
  1859. func (*EquipData) ProtoMessage() {}
  1860. func (*EquipData) Descriptor() ([]byte, []int) {
  1861. return fileDescriptor_116e343673f7ffaf, []int{30}
  1862. }
  1863. func (m *EquipData) XXX_Unmarshal(b []byte) error {
  1864. return xxx_messageInfo_EquipData.Unmarshal(m, b)
  1865. }
  1866. func (m *EquipData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1867. return xxx_messageInfo_EquipData.Marshal(b, m, deterministic)
  1868. }
  1869. func (m *EquipData) XXX_Merge(src proto.Message) {
  1870. xxx_messageInfo_EquipData.Merge(m, src)
  1871. }
  1872. func (m *EquipData) XXX_Size() int {
  1873. return xxx_messageInfo_EquipData.Size(m)
  1874. }
  1875. func (m *EquipData) XXX_DiscardUnknown() {
  1876. xxx_messageInfo_EquipData.DiscardUnknown(m)
  1877. }
  1878. var xxx_messageInfo_EquipData proto.InternalMessageInfo
  1879. func (m *EquipData) GetConfigId() int32 {
  1880. if m != nil {
  1881. return m.ConfigId
  1882. }
  1883. return 0
  1884. }
  1885. func (m *EquipData) GetNum() int32 {
  1886. if m != nil {
  1887. return m.Num
  1888. }
  1889. return 0
  1890. }
  1891. type RoleEquip struct {
  1892. EquipList []*EquipData `protobuf:"bytes,1,rep,name=equip_list,json=equipList,proto3" json:"equip_list,omitempty"`
  1893. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1894. XXX_unrecognized []byte `json:"-"`
  1895. XXX_sizecache int32 `json:"-"`
  1896. }
  1897. func (m *RoleEquip) Reset() { *m = RoleEquip{} }
  1898. func (m *RoleEquip) String() string { return proto.CompactTextString(m) }
  1899. func (*RoleEquip) ProtoMessage() {}
  1900. func (*RoleEquip) Descriptor() ([]byte, []int) {
  1901. return fileDescriptor_116e343673f7ffaf, []int{31}
  1902. }
  1903. func (m *RoleEquip) XXX_Unmarshal(b []byte) error {
  1904. return xxx_messageInfo_RoleEquip.Unmarshal(m, b)
  1905. }
  1906. func (m *RoleEquip) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1907. return xxx_messageInfo_RoleEquip.Marshal(b, m, deterministic)
  1908. }
  1909. func (m *RoleEquip) XXX_Merge(src proto.Message) {
  1910. xxx_messageInfo_RoleEquip.Merge(m, src)
  1911. }
  1912. func (m *RoleEquip) XXX_Size() int {
  1913. return xxx_messageInfo_RoleEquip.Size(m)
  1914. }
  1915. func (m *RoleEquip) XXX_DiscardUnknown() {
  1916. xxx_messageInfo_RoleEquip.DiscardUnknown(m)
  1917. }
  1918. var xxx_messageInfo_RoleEquip proto.InternalMessageInfo
  1919. func (m *RoleEquip) GetEquipList() []*EquipData {
  1920. if m != nil {
  1921. return m.EquipList
  1922. }
  1923. return nil
  1924. }
  1925. // 道具数据
  1926. type ItemData struct {
  1927. Id uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  1928. ConfigId int32 `protobuf:"varint,2,opt,name=config_id,json=configId,proto3" json:"config_id,omitempty"`
  1929. Num uint32 `protobuf:"varint,3,opt,name=num,proto3" json:"num,omitempty"`
  1930. TimeStamp uint32 `protobuf:"varint,4,opt,name=time_stamp,json=timeStamp,proto3" json:"time_stamp,omitempty"`
  1931. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1932. XXX_unrecognized []byte `json:"-"`
  1933. XXX_sizecache int32 `json:"-"`
  1934. }
  1935. func (m *ItemData) Reset() { *m = ItemData{} }
  1936. func (m *ItemData) String() string { return proto.CompactTextString(m) }
  1937. func (*ItemData) ProtoMessage() {}
  1938. func (*ItemData) Descriptor() ([]byte, []int) {
  1939. return fileDescriptor_116e343673f7ffaf, []int{32}
  1940. }
  1941. func (m *ItemData) XXX_Unmarshal(b []byte) error {
  1942. return xxx_messageInfo_ItemData.Unmarshal(m, b)
  1943. }
  1944. func (m *ItemData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1945. return xxx_messageInfo_ItemData.Marshal(b, m, deterministic)
  1946. }
  1947. func (m *ItemData) XXX_Merge(src proto.Message) {
  1948. xxx_messageInfo_ItemData.Merge(m, src)
  1949. }
  1950. func (m *ItemData) XXX_Size() int {
  1951. return xxx_messageInfo_ItemData.Size(m)
  1952. }
  1953. func (m *ItemData) XXX_DiscardUnknown() {
  1954. xxx_messageInfo_ItemData.DiscardUnknown(m)
  1955. }
  1956. var xxx_messageInfo_ItemData proto.InternalMessageInfo
  1957. func (m *ItemData) GetId() uint64 {
  1958. if m != nil {
  1959. return m.Id
  1960. }
  1961. return 0
  1962. }
  1963. func (m *ItemData) GetConfigId() int32 {
  1964. if m != nil {
  1965. return m.ConfigId
  1966. }
  1967. return 0
  1968. }
  1969. func (m *ItemData) GetNum() uint32 {
  1970. if m != nil {
  1971. return m.Num
  1972. }
  1973. return 0
  1974. }
  1975. func (m *ItemData) GetTimeStamp() uint32 {
  1976. if m != nil {
  1977. return m.TimeStamp
  1978. }
  1979. return 0
  1980. }
  1981. // 碎片数据
  1982. type ChipData struct {
  1983. ConfigId int32 `protobuf:"varint,1,opt,name=config_id,json=configId,proto3" json:"config_id,omitempty"`
  1984. Num uint32 `protobuf:"varint,2,opt,name=num,proto3" json:"num,omitempty"`
  1985. TimeStamp uint32 `protobuf:"varint,3,opt,name=time_stamp,json=timeStamp,proto3" json:"time_stamp,omitempty"`
  1986. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1987. XXX_unrecognized []byte `json:"-"`
  1988. XXX_sizecache int32 `json:"-"`
  1989. }
  1990. func (m *ChipData) Reset() { *m = ChipData{} }
  1991. func (m *ChipData) String() string { return proto.CompactTextString(m) }
  1992. func (*ChipData) ProtoMessage() {}
  1993. func (*ChipData) Descriptor() ([]byte, []int) {
  1994. return fileDescriptor_116e343673f7ffaf, []int{33}
  1995. }
  1996. func (m *ChipData) XXX_Unmarshal(b []byte) error {
  1997. return xxx_messageInfo_ChipData.Unmarshal(m, b)
  1998. }
  1999. func (m *ChipData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2000. return xxx_messageInfo_ChipData.Marshal(b, m, deterministic)
  2001. }
  2002. func (m *ChipData) XXX_Merge(src proto.Message) {
  2003. xxx_messageInfo_ChipData.Merge(m, src)
  2004. }
  2005. func (m *ChipData) XXX_Size() int {
  2006. return xxx_messageInfo_ChipData.Size(m)
  2007. }
  2008. func (m *ChipData) XXX_DiscardUnknown() {
  2009. xxx_messageInfo_ChipData.DiscardUnknown(m)
  2010. }
  2011. var xxx_messageInfo_ChipData proto.InternalMessageInfo
  2012. func (m *ChipData) GetConfigId() int32 {
  2013. if m != nil {
  2014. return m.ConfigId
  2015. }
  2016. return 0
  2017. }
  2018. func (m *ChipData) GetNum() uint32 {
  2019. if m != nil {
  2020. return m.Num
  2021. }
  2022. return 0
  2023. }
  2024. func (m *ChipData) GetTimeStamp() uint32 {
  2025. if m != nil {
  2026. return m.TimeStamp
  2027. }
  2028. return 0
  2029. }
  2030. type RoleBag struct {
  2031. ItemList []*ItemData `protobuf:"bytes,1,rep,name=item_list,json=itemList,proto3" json:"item_list,omitempty"`
  2032. BagCount int32 `protobuf:"varint,2,opt,name=bag_count,json=bagCount,proto3" json:"bag_count,omitempty"`
  2033. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2034. XXX_unrecognized []byte `json:"-"`
  2035. XXX_sizecache int32 `json:"-"`
  2036. }
  2037. func (m *RoleBag) Reset() { *m = RoleBag{} }
  2038. func (m *RoleBag) String() string { return proto.CompactTextString(m) }
  2039. func (*RoleBag) ProtoMessage() {}
  2040. func (*RoleBag) Descriptor() ([]byte, []int) {
  2041. return fileDescriptor_116e343673f7ffaf, []int{34}
  2042. }
  2043. func (m *RoleBag) XXX_Unmarshal(b []byte) error {
  2044. return xxx_messageInfo_RoleBag.Unmarshal(m, b)
  2045. }
  2046. func (m *RoleBag) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2047. return xxx_messageInfo_RoleBag.Marshal(b, m, deterministic)
  2048. }
  2049. func (m *RoleBag) XXX_Merge(src proto.Message) {
  2050. xxx_messageInfo_RoleBag.Merge(m, src)
  2051. }
  2052. func (m *RoleBag) XXX_Size() int {
  2053. return xxx_messageInfo_RoleBag.Size(m)
  2054. }
  2055. func (m *RoleBag) XXX_DiscardUnknown() {
  2056. xxx_messageInfo_RoleBag.DiscardUnknown(m)
  2057. }
  2058. var xxx_messageInfo_RoleBag proto.InternalMessageInfo
  2059. func (m *RoleBag) GetItemList() []*ItemData {
  2060. if m != nil {
  2061. return m.ItemList
  2062. }
  2063. return nil
  2064. }
  2065. func (m *RoleBag) GetBagCount() int32 {
  2066. if m != nil {
  2067. return m.BagCount
  2068. }
  2069. return 0
  2070. }
  2071. type RoleHero struct {
  2072. HeroData []*HeroData `protobuf:"bytes,1,rep,name=hero_data,json=heroData,proto3" json:"hero_data,omitempty"`
  2073. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2074. XXX_unrecognized []byte `json:"-"`
  2075. XXX_sizecache int32 `json:"-"`
  2076. }
  2077. func (m *RoleHero) Reset() { *m = RoleHero{} }
  2078. func (m *RoleHero) String() string { return proto.CompactTextString(m) }
  2079. func (*RoleHero) ProtoMessage() {}
  2080. func (*RoleHero) Descriptor() ([]byte, []int) {
  2081. return fileDescriptor_116e343673f7ffaf, []int{35}
  2082. }
  2083. func (m *RoleHero) XXX_Unmarshal(b []byte) error {
  2084. return xxx_messageInfo_RoleHero.Unmarshal(m, b)
  2085. }
  2086. func (m *RoleHero) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2087. return xxx_messageInfo_RoleHero.Marshal(b, m, deterministic)
  2088. }
  2089. func (m *RoleHero) XXX_Merge(src proto.Message) {
  2090. xxx_messageInfo_RoleHero.Merge(m, src)
  2091. }
  2092. func (m *RoleHero) XXX_Size() int {
  2093. return xxx_messageInfo_RoleHero.Size(m)
  2094. }
  2095. func (m *RoleHero) XXX_DiscardUnknown() {
  2096. xxx_messageInfo_RoleHero.DiscardUnknown(m)
  2097. }
  2098. var xxx_messageInfo_RoleHero proto.InternalMessageInfo
  2099. func (m *RoleHero) GetHeroData() []*HeroData {
  2100. if m != nil {
  2101. return m.HeroData
  2102. }
  2103. return nil
  2104. }
  2105. type RoleChip struct {
  2106. ChipList []*ChipData `protobuf:"bytes,1,rep,name=chip_list,json=chipList,proto3" json:"chip_list,omitempty"`
  2107. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2108. XXX_unrecognized []byte `json:"-"`
  2109. XXX_sizecache int32 `json:"-"`
  2110. }
  2111. func (m *RoleChip) Reset() { *m = RoleChip{} }
  2112. func (m *RoleChip) String() string { return proto.CompactTextString(m) }
  2113. func (*RoleChip) ProtoMessage() {}
  2114. func (*RoleChip) Descriptor() ([]byte, []int) {
  2115. return fileDescriptor_116e343673f7ffaf, []int{36}
  2116. }
  2117. func (m *RoleChip) XXX_Unmarshal(b []byte) error {
  2118. return xxx_messageInfo_RoleChip.Unmarshal(m, b)
  2119. }
  2120. func (m *RoleChip) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2121. return xxx_messageInfo_RoleChip.Marshal(b, m, deterministic)
  2122. }
  2123. func (m *RoleChip) XXX_Merge(src proto.Message) {
  2124. xxx_messageInfo_RoleChip.Merge(m, src)
  2125. }
  2126. func (m *RoleChip) XXX_Size() int {
  2127. return xxx_messageInfo_RoleChip.Size(m)
  2128. }
  2129. func (m *RoleChip) XXX_DiscardUnknown() {
  2130. xxx_messageInfo_RoleChip.DiscardUnknown(m)
  2131. }
  2132. var xxx_messageInfo_RoleChip proto.InternalMessageInfo
  2133. func (m *RoleChip) GetChipList() []*ChipData {
  2134. if m != nil {
  2135. return m.ChipList
  2136. }
  2137. return nil
  2138. }
  2139. // 当前职业对应拥有的技能
  2140. type JobSkillData struct {
  2141. JobStage int32 `protobuf:"varint,1,opt,name=job_stage,json=jobStage,proto3" json:"job_stage,omitempty"`
  2142. UnlockSkillList []*KeyValueType `protobuf:"bytes,2,rep,name=unlock_skill_list,json=unlockSkillList,proto3" json:"unlock_skill_list,omitempty"`
  2143. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2144. XXX_unrecognized []byte `json:"-"`
  2145. XXX_sizecache int32 `json:"-"`
  2146. }
  2147. func (m *JobSkillData) Reset() { *m = JobSkillData{} }
  2148. func (m *JobSkillData) String() string { return proto.CompactTextString(m) }
  2149. func (*JobSkillData) ProtoMessage() {}
  2150. func (*JobSkillData) Descriptor() ([]byte, []int) {
  2151. return fileDescriptor_116e343673f7ffaf, []int{37}
  2152. }
  2153. func (m *JobSkillData) XXX_Unmarshal(b []byte) error {
  2154. return xxx_messageInfo_JobSkillData.Unmarshal(m, b)
  2155. }
  2156. func (m *JobSkillData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2157. return xxx_messageInfo_JobSkillData.Marshal(b, m, deterministic)
  2158. }
  2159. func (m *JobSkillData) XXX_Merge(src proto.Message) {
  2160. xxx_messageInfo_JobSkillData.Merge(m, src)
  2161. }
  2162. func (m *JobSkillData) XXX_Size() int {
  2163. return xxx_messageInfo_JobSkillData.Size(m)
  2164. }
  2165. func (m *JobSkillData) XXX_DiscardUnknown() {
  2166. xxx_messageInfo_JobSkillData.DiscardUnknown(m)
  2167. }
  2168. var xxx_messageInfo_JobSkillData proto.InternalMessageInfo
  2169. func (m *JobSkillData) GetJobStage() int32 {
  2170. if m != nil {
  2171. return m.JobStage
  2172. }
  2173. return 0
  2174. }
  2175. func (m *JobSkillData) GetUnlockSkillList() []*KeyValueType {
  2176. if m != nil {
  2177. return m.UnlockSkillList
  2178. }
  2179. return nil
  2180. }
  2181. // 技能槽位信息
  2182. type RoleSkillSlot struct {
  2183. SkillId int32 `protobuf:"varint,1,opt,name=skill_id,json=skillId,proto3" json:"skill_id,omitempty"`
  2184. Unlock int32 `protobuf:"varint,2,opt,name=unlock,proto3" json:"unlock,omitempty"`
  2185. DefaultSkillId int32 `protobuf:"varint,3,opt,name=default_skill_id,json=defaultSkillId,proto3" json:"default_skill_id,omitempty"`
  2186. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2187. XXX_unrecognized []byte `json:"-"`
  2188. XXX_sizecache int32 `json:"-"`
  2189. }
  2190. func (m *RoleSkillSlot) Reset() { *m = RoleSkillSlot{} }
  2191. func (m *RoleSkillSlot) String() string { return proto.CompactTextString(m) }
  2192. func (*RoleSkillSlot) ProtoMessage() {}
  2193. func (*RoleSkillSlot) Descriptor() ([]byte, []int) {
  2194. return fileDescriptor_116e343673f7ffaf, []int{38}
  2195. }
  2196. func (m *RoleSkillSlot) XXX_Unmarshal(b []byte) error {
  2197. return xxx_messageInfo_RoleSkillSlot.Unmarshal(m, b)
  2198. }
  2199. func (m *RoleSkillSlot) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2200. return xxx_messageInfo_RoleSkillSlot.Marshal(b, m, deterministic)
  2201. }
  2202. func (m *RoleSkillSlot) XXX_Merge(src proto.Message) {
  2203. xxx_messageInfo_RoleSkillSlot.Merge(m, src)
  2204. }
  2205. func (m *RoleSkillSlot) XXX_Size() int {
  2206. return xxx_messageInfo_RoleSkillSlot.Size(m)
  2207. }
  2208. func (m *RoleSkillSlot) XXX_DiscardUnknown() {
  2209. xxx_messageInfo_RoleSkillSlot.DiscardUnknown(m)
  2210. }
  2211. var xxx_messageInfo_RoleSkillSlot proto.InternalMessageInfo
  2212. func (m *RoleSkillSlot) GetSkillId() int32 {
  2213. if m != nil {
  2214. return m.SkillId
  2215. }
  2216. return 0
  2217. }
  2218. func (m *RoleSkillSlot) GetUnlock() int32 {
  2219. if m != nil {
  2220. return m.Unlock
  2221. }
  2222. return 0
  2223. }
  2224. func (m *RoleSkillSlot) GetDefaultSkillId() int32 {
  2225. if m != nil {
  2226. return m.DefaultSkillId
  2227. }
  2228. return 0
  2229. }
  2230. type RoleSkill struct {
  2231. JobSkillList []*JobSkillData `protobuf:"bytes,1,rep,name=job_skill_list,json=jobSkillList,proto3" json:"job_skill_list,omitempty"`
  2232. SkillList []*RoleSkillSlot `protobuf:"bytes,2,rep,name=skill_list,json=skillList,proto3" json:"skill_list,omitempty"`
  2233. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2234. XXX_unrecognized []byte `json:"-"`
  2235. XXX_sizecache int32 `json:"-"`
  2236. }
  2237. func (m *RoleSkill) Reset() { *m = RoleSkill{} }
  2238. func (m *RoleSkill) String() string { return proto.CompactTextString(m) }
  2239. func (*RoleSkill) ProtoMessage() {}
  2240. func (*RoleSkill) Descriptor() ([]byte, []int) {
  2241. return fileDescriptor_116e343673f7ffaf, []int{39}
  2242. }
  2243. func (m *RoleSkill) XXX_Unmarshal(b []byte) error {
  2244. return xxx_messageInfo_RoleSkill.Unmarshal(m, b)
  2245. }
  2246. func (m *RoleSkill) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2247. return xxx_messageInfo_RoleSkill.Marshal(b, m, deterministic)
  2248. }
  2249. func (m *RoleSkill) XXX_Merge(src proto.Message) {
  2250. xxx_messageInfo_RoleSkill.Merge(m, src)
  2251. }
  2252. func (m *RoleSkill) XXX_Size() int {
  2253. return xxx_messageInfo_RoleSkill.Size(m)
  2254. }
  2255. func (m *RoleSkill) XXX_DiscardUnknown() {
  2256. xxx_messageInfo_RoleSkill.DiscardUnknown(m)
  2257. }
  2258. var xxx_messageInfo_RoleSkill proto.InternalMessageInfo
  2259. func (m *RoleSkill) GetJobSkillList() []*JobSkillData {
  2260. if m != nil {
  2261. return m.JobSkillList
  2262. }
  2263. return nil
  2264. }
  2265. func (m *RoleSkill) GetSkillList() []*RoleSkillSlot {
  2266. if m != nil {
  2267. return m.SkillList
  2268. }
  2269. return nil
  2270. }
  2271. type CardData struct {
  2272. ConfigId int32 `protobuf:"varint,1,opt,name=config_id,json=configId,proto3" json:"config_id,omitempty"`
  2273. Num int32 `protobuf:"varint,2,opt,name=num,proto3" json:"num,omitempty"`
  2274. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2275. XXX_unrecognized []byte `json:"-"`
  2276. XXX_sizecache int32 `json:"-"`
  2277. }
  2278. func (m *CardData) Reset() { *m = CardData{} }
  2279. func (m *CardData) String() string { return proto.CompactTextString(m) }
  2280. func (*CardData) ProtoMessage() {}
  2281. func (*CardData) Descriptor() ([]byte, []int) {
  2282. return fileDescriptor_116e343673f7ffaf, []int{40}
  2283. }
  2284. func (m *CardData) XXX_Unmarshal(b []byte) error {
  2285. return xxx_messageInfo_CardData.Unmarshal(m, b)
  2286. }
  2287. func (m *CardData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2288. return xxx_messageInfo_CardData.Marshal(b, m, deterministic)
  2289. }
  2290. func (m *CardData) XXX_Merge(src proto.Message) {
  2291. xxx_messageInfo_CardData.Merge(m, src)
  2292. }
  2293. func (m *CardData) XXX_Size() int {
  2294. return xxx_messageInfo_CardData.Size(m)
  2295. }
  2296. func (m *CardData) XXX_DiscardUnknown() {
  2297. xxx_messageInfo_CardData.DiscardUnknown(m)
  2298. }
  2299. var xxx_messageInfo_CardData proto.InternalMessageInfo
  2300. func (m *CardData) GetConfigId() int32 {
  2301. if m != nil {
  2302. return m.ConfigId
  2303. }
  2304. return 0
  2305. }
  2306. func (m *CardData) GetNum() int32 {
  2307. if m != nil {
  2308. return m.Num
  2309. }
  2310. return 0
  2311. }
  2312. type CardHandBook struct {
  2313. CardId int32 `protobuf:"varint,1,opt,name=card_id,json=cardId,proto3" json:"card_id,omitempty"`
  2314. CardLevel int32 `protobuf:"varint,2,opt,name=card_level,json=cardLevel,proto3" json:"card_level,omitempty"`
  2315. RewardRec int32 `protobuf:"varint,3,opt,name=reward_rec,json=rewardRec,proto3" json:"reward_rec,omitempty"`
  2316. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2317. XXX_unrecognized []byte `json:"-"`
  2318. XXX_sizecache int32 `json:"-"`
  2319. }
  2320. func (m *CardHandBook) Reset() { *m = CardHandBook{} }
  2321. func (m *CardHandBook) String() string { return proto.CompactTextString(m) }
  2322. func (*CardHandBook) ProtoMessage() {}
  2323. func (*CardHandBook) Descriptor() ([]byte, []int) {
  2324. return fileDescriptor_116e343673f7ffaf, []int{41}
  2325. }
  2326. func (m *CardHandBook) XXX_Unmarshal(b []byte) error {
  2327. return xxx_messageInfo_CardHandBook.Unmarshal(m, b)
  2328. }
  2329. func (m *CardHandBook) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2330. return xxx_messageInfo_CardHandBook.Marshal(b, m, deterministic)
  2331. }
  2332. func (m *CardHandBook) XXX_Merge(src proto.Message) {
  2333. xxx_messageInfo_CardHandBook.Merge(m, src)
  2334. }
  2335. func (m *CardHandBook) XXX_Size() int {
  2336. return xxx_messageInfo_CardHandBook.Size(m)
  2337. }
  2338. func (m *CardHandBook) XXX_DiscardUnknown() {
  2339. xxx_messageInfo_CardHandBook.DiscardUnknown(m)
  2340. }
  2341. var xxx_messageInfo_CardHandBook proto.InternalMessageInfo
  2342. func (m *CardHandBook) GetCardId() int32 {
  2343. if m != nil {
  2344. return m.CardId
  2345. }
  2346. return 0
  2347. }
  2348. func (m *CardHandBook) GetCardLevel() int32 {
  2349. if m != nil {
  2350. return m.CardLevel
  2351. }
  2352. return 0
  2353. }
  2354. func (m *CardHandBook) GetRewardRec() int32 {
  2355. if m != nil {
  2356. return m.RewardRec
  2357. }
  2358. return 0
  2359. }
  2360. type CardCollect struct {
  2361. CardQuality int32 `protobuf:"varint,1,opt,name=card_quality,json=cardQuality,proto3" json:"card_quality,omitempty"`
  2362. CardBook []*CardHandBook `protobuf:"bytes,2,rep,name=card_book,json=cardBook,proto3" json:"card_book,omitempty"`
  2363. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2364. XXX_unrecognized []byte `json:"-"`
  2365. XXX_sizecache int32 `json:"-"`
  2366. }
  2367. func (m *CardCollect) Reset() { *m = CardCollect{} }
  2368. func (m *CardCollect) String() string { return proto.CompactTextString(m) }
  2369. func (*CardCollect) ProtoMessage() {}
  2370. func (*CardCollect) Descriptor() ([]byte, []int) {
  2371. return fileDescriptor_116e343673f7ffaf, []int{42}
  2372. }
  2373. func (m *CardCollect) XXX_Unmarshal(b []byte) error {
  2374. return xxx_messageInfo_CardCollect.Unmarshal(m, b)
  2375. }
  2376. func (m *CardCollect) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2377. return xxx_messageInfo_CardCollect.Marshal(b, m, deterministic)
  2378. }
  2379. func (m *CardCollect) XXX_Merge(src proto.Message) {
  2380. xxx_messageInfo_CardCollect.Merge(m, src)
  2381. }
  2382. func (m *CardCollect) XXX_Size() int {
  2383. return xxx_messageInfo_CardCollect.Size(m)
  2384. }
  2385. func (m *CardCollect) XXX_DiscardUnknown() {
  2386. xxx_messageInfo_CardCollect.DiscardUnknown(m)
  2387. }
  2388. var xxx_messageInfo_CardCollect proto.InternalMessageInfo
  2389. func (m *CardCollect) GetCardQuality() int32 {
  2390. if m != nil {
  2391. return m.CardQuality
  2392. }
  2393. return 0
  2394. }
  2395. func (m *CardCollect) GetCardBook() []*CardHandBook {
  2396. if m != nil {
  2397. return m.CardBook
  2398. }
  2399. return nil
  2400. }
  2401. type RoleCard struct {
  2402. CardList []*CardData `protobuf:"bytes,1,rep,name=card_list,json=cardList,proto3" json:"card_list,omitempty"`
  2403. CardSlotList []int32 `protobuf:"varint,2,rep,packed,name=card_slot_list,json=cardSlotList,proto3" json:"card_slot_list,omitempty"`
  2404. CardCollect []*CardCollect `protobuf:"bytes,3,rep,name=card_collect,json=cardCollect,proto3" json:"card_collect,omitempty"`
  2405. TotalCardNumList []*KeyValueType `protobuf:"bytes,4,rep,name=total_card_num_list,json=totalCardNumList,proto3" json:"total_card_num_list,omitempty"`
  2406. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2407. XXX_unrecognized []byte `json:"-"`
  2408. XXX_sizecache int32 `json:"-"`
  2409. }
  2410. func (m *RoleCard) Reset() { *m = RoleCard{} }
  2411. func (m *RoleCard) String() string { return proto.CompactTextString(m) }
  2412. func (*RoleCard) ProtoMessage() {}
  2413. func (*RoleCard) Descriptor() ([]byte, []int) {
  2414. return fileDescriptor_116e343673f7ffaf, []int{43}
  2415. }
  2416. func (m *RoleCard) XXX_Unmarshal(b []byte) error {
  2417. return xxx_messageInfo_RoleCard.Unmarshal(m, b)
  2418. }
  2419. func (m *RoleCard) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2420. return xxx_messageInfo_RoleCard.Marshal(b, m, deterministic)
  2421. }
  2422. func (m *RoleCard) XXX_Merge(src proto.Message) {
  2423. xxx_messageInfo_RoleCard.Merge(m, src)
  2424. }
  2425. func (m *RoleCard) XXX_Size() int {
  2426. return xxx_messageInfo_RoleCard.Size(m)
  2427. }
  2428. func (m *RoleCard) XXX_DiscardUnknown() {
  2429. xxx_messageInfo_RoleCard.DiscardUnknown(m)
  2430. }
  2431. var xxx_messageInfo_RoleCard proto.InternalMessageInfo
  2432. func (m *RoleCard) GetCardList() []*CardData {
  2433. if m != nil {
  2434. return m.CardList
  2435. }
  2436. return nil
  2437. }
  2438. func (m *RoleCard) GetCardSlotList() []int32 {
  2439. if m != nil {
  2440. return m.CardSlotList
  2441. }
  2442. return nil
  2443. }
  2444. func (m *RoleCard) GetCardCollect() []*CardCollect {
  2445. if m != nil {
  2446. return m.CardCollect
  2447. }
  2448. return nil
  2449. }
  2450. func (m *RoleCard) GetTotalCardNumList() []*KeyValueType {
  2451. if m != nil {
  2452. return m.TotalCardNumList
  2453. }
  2454. return nil
  2455. }
  2456. type RoleFashionData struct {
  2457. FashionId int32 `protobuf:"varint,1,opt,name=fashion_id,json=fashionId,proto3" json:"fashion_id,omitempty"`
  2458. FashionLvl int32 `protobuf:"varint,2,opt,name=fashion_lvl,json=fashionLvl,proto3" json:"fashion_lvl,omitempty"`
  2459. FashionWear bool `protobuf:"varint,3,opt,name=fashion_wear,json=fashionWear,proto3" json:"fashion_wear,omitempty"`
  2460. ResetAttrs []*FashionAttr `protobuf:"bytes,4,rep,name=resetAttrs,proto3" json:"resetAttrs,omitempty"`
  2461. Attrs []*FashionAttr `protobuf:"bytes,5,rep,name=attrs,proto3" json:"attrs,omitempty"`
  2462. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2463. XXX_unrecognized []byte `json:"-"`
  2464. XXX_sizecache int32 `json:"-"`
  2465. }
  2466. func (m *RoleFashionData) Reset() { *m = RoleFashionData{} }
  2467. func (m *RoleFashionData) String() string { return proto.CompactTextString(m) }
  2468. func (*RoleFashionData) ProtoMessage() {}
  2469. func (*RoleFashionData) Descriptor() ([]byte, []int) {
  2470. return fileDescriptor_116e343673f7ffaf, []int{44}
  2471. }
  2472. func (m *RoleFashionData) XXX_Unmarshal(b []byte) error {
  2473. return xxx_messageInfo_RoleFashionData.Unmarshal(m, b)
  2474. }
  2475. func (m *RoleFashionData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2476. return xxx_messageInfo_RoleFashionData.Marshal(b, m, deterministic)
  2477. }
  2478. func (m *RoleFashionData) XXX_Merge(src proto.Message) {
  2479. xxx_messageInfo_RoleFashionData.Merge(m, src)
  2480. }
  2481. func (m *RoleFashionData) XXX_Size() int {
  2482. return xxx_messageInfo_RoleFashionData.Size(m)
  2483. }
  2484. func (m *RoleFashionData) XXX_DiscardUnknown() {
  2485. xxx_messageInfo_RoleFashionData.DiscardUnknown(m)
  2486. }
  2487. var xxx_messageInfo_RoleFashionData proto.InternalMessageInfo
  2488. func (m *RoleFashionData) GetFashionId() int32 {
  2489. if m != nil {
  2490. return m.FashionId
  2491. }
  2492. return 0
  2493. }
  2494. func (m *RoleFashionData) GetFashionLvl() int32 {
  2495. if m != nil {
  2496. return m.FashionLvl
  2497. }
  2498. return 0
  2499. }
  2500. func (m *RoleFashionData) GetFashionWear() bool {
  2501. if m != nil {
  2502. return m.FashionWear
  2503. }
  2504. return false
  2505. }
  2506. func (m *RoleFashionData) GetResetAttrs() []*FashionAttr {
  2507. if m != nil {
  2508. return m.ResetAttrs
  2509. }
  2510. return nil
  2511. }
  2512. func (m *RoleFashionData) GetAttrs() []*FashionAttr {
  2513. if m != nil {
  2514. return m.Attrs
  2515. }
  2516. return nil
  2517. }
  2518. type RoleFashion struct {
  2519. FashionList []int32 `protobuf:"varint,1,rep,packed,name=fashion_list,json=fashionList,proto3" json:"fashion_list,omitempty"`
  2520. FashionData []*RoleFashionData `protobuf:"bytes,2,rep,name=fashion_data,json=fashionData,proto3" json:"fashion_data,omitempty"`
  2521. Lvs []*KeyValueType `protobuf:"bytes,3,rep,name=lvs,proto3" json:"lvs,omitempty"`
  2522. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2523. XXX_unrecognized []byte `json:"-"`
  2524. XXX_sizecache int32 `json:"-"`
  2525. }
  2526. func (m *RoleFashion) Reset() { *m = RoleFashion{} }
  2527. func (m *RoleFashion) String() string { return proto.CompactTextString(m) }
  2528. func (*RoleFashion) ProtoMessage() {}
  2529. func (*RoleFashion) Descriptor() ([]byte, []int) {
  2530. return fileDescriptor_116e343673f7ffaf, []int{45}
  2531. }
  2532. func (m *RoleFashion) XXX_Unmarshal(b []byte) error {
  2533. return xxx_messageInfo_RoleFashion.Unmarshal(m, b)
  2534. }
  2535. func (m *RoleFashion) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2536. return xxx_messageInfo_RoleFashion.Marshal(b, m, deterministic)
  2537. }
  2538. func (m *RoleFashion) XXX_Merge(src proto.Message) {
  2539. xxx_messageInfo_RoleFashion.Merge(m, src)
  2540. }
  2541. func (m *RoleFashion) XXX_Size() int {
  2542. return xxx_messageInfo_RoleFashion.Size(m)
  2543. }
  2544. func (m *RoleFashion) XXX_DiscardUnknown() {
  2545. xxx_messageInfo_RoleFashion.DiscardUnknown(m)
  2546. }
  2547. var xxx_messageInfo_RoleFashion proto.InternalMessageInfo
  2548. func (m *RoleFashion) GetFashionList() []int32 {
  2549. if m != nil {
  2550. return m.FashionList
  2551. }
  2552. return nil
  2553. }
  2554. func (m *RoleFashion) GetFashionData() []*RoleFashionData {
  2555. if m != nil {
  2556. return m.FashionData
  2557. }
  2558. return nil
  2559. }
  2560. func (m *RoleFashion) GetLvs() []*KeyValueType {
  2561. if m != nil {
  2562. return m.Lvs
  2563. }
  2564. return nil
  2565. }
  2566. // //////////////////////AOI
  2567. type RoleMap struct {
  2568. MapType int32 `protobuf:"varint,1,opt,name=map_type,json=mapType,proto3" json:"map_type,omitempty"`
  2569. Pos *Position `protobuf:"bytes,2,opt,name=pos,proto3" json:"pos,omitempty"`
  2570. WorldBossCount int32 `protobuf:"varint,3,opt,name=world_boss_count,json=worldBossCount,proto3" json:"world_boss_count,omitempty"`
  2571. WorldBossChallengeList []int32 `protobuf:"varint,4,rep,packed,name=world_boss_challenge_list,json=worldBossChallengeList,proto3" json:"world_boss_challenge_list,omitempty"`
  2572. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2573. XXX_unrecognized []byte `json:"-"`
  2574. XXX_sizecache int32 `json:"-"`
  2575. }
  2576. func (m *RoleMap) Reset() { *m = RoleMap{} }
  2577. func (m *RoleMap) String() string { return proto.CompactTextString(m) }
  2578. func (*RoleMap) ProtoMessage() {}
  2579. func (*RoleMap) Descriptor() ([]byte, []int) {
  2580. return fileDescriptor_116e343673f7ffaf, []int{46}
  2581. }
  2582. func (m *RoleMap) XXX_Unmarshal(b []byte) error {
  2583. return xxx_messageInfo_RoleMap.Unmarshal(m, b)
  2584. }
  2585. func (m *RoleMap) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2586. return xxx_messageInfo_RoleMap.Marshal(b, m, deterministic)
  2587. }
  2588. func (m *RoleMap) XXX_Merge(src proto.Message) {
  2589. xxx_messageInfo_RoleMap.Merge(m, src)
  2590. }
  2591. func (m *RoleMap) XXX_Size() int {
  2592. return xxx_messageInfo_RoleMap.Size(m)
  2593. }
  2594. func (m *RoleMap) XXX_DiscardUnknown() {
  2595. xxx_messageInfo_RoleMap.DiscardUnknown(m)
  2596. }
  2597. var xxx_messageInfo_RoleMap proto.InternalMessageInfo
  2598. func (m *RoleMap) GetMapType() int32 {
  2599. if m != nil {
  2600. return m.MapType
  2601. }
  2602. return 0
  2603. }
  2604. func (m *RoleMap) GetPos() *Position {
  2605. if m != nil {
  2606. return m.Pos
  2607. }
  2608. return nil
  2609. }
  2610. func (m *RoleMap) GetWorldBossCount() int32 {
  2611. if m != nil {
  2612. return m.WorldBossCount
  2613. }
  2614. return 0
  2615. }
  2616. func (m *RoleMap) GetWorldBossChallengeList() []int32 {
  2617. if m != nil {
  2618. return m.WorldBossChallengeList
  2619. }
  2620. return nil
  2621. }
  2622. type Position struct {
  2623. X float32 `protobuf:"fixed32,1,opt,name=x,proto3" json:"x,omitempty"`
  2624. Y float32 `protobuf:"fixed32,2,opt,name=y,proto3" json:"y,omitempty"`
  2625. Z float32 `protobuf:"fixed32,3,opt,name=z,proto3" json:"z,omitempty"`
  2626. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2627. XXX_unrecognized []byte `json:"-"`
  2628. XXX_sizecache int32 `json:"-"`
  2629. }
  2630. func (m *Position) Reset() { *m = Position{} }
  2631. func (m *Position) String() string { return proto.CompactTextString(m) }
  2632. func (*Position) ProtoMessage() {}
  2633. func (*Position) Descriptor() ([]byte, []int) {
  2634. return fileDescriptor_116e343673f7ffaf, []int{47}
  2635. }
  2636. func (m *Position) XXX_Unmarshal(b []byte) error {
  2637. return xxx_messageInfo_Position.Unmarshal(m, b)
  2638. }
  2639. func (m *Position) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2640. return xxx_messageInfo_Position.Marshal(b, m, deterministic)
  2641. }
  2642. func (m *Position) XXX_Merge(src proto.Message) {
  2643. xxx_messageInfo_Position.Merge(m, src)
  2644. }
  2645. func (m *Position) XXX_Size() int {
  2646. return xxx_messageInfo_Position.Size(m)
  2647. }
  2648. func (m *Position) XXX_DiscardUnknown() {
  2649. xxx_messageInfo_Position.DiscardUnknown(m)
  2650. }
  2651. var xxx_messageInfo_Position proto.InternalMessageInfo
  2652. func (m *Position) GetX() float32 {
  2653. if m != nil {
  2654. return m.X
  2655. }
  2656. return 0
  2657. }
  2658. func (m *Position) GetY() float32 {
  2659. if m != nil {
  2660. return m.Y
  2661. }
  2662. return 0
  2663. }
  2664. func (m *Position) GetZ() float32 {
  2665. if m != nil {
  2666. return m.Z
  2667. }
  2668. return 0
  2669. }
  2670. type Vector3 struct {
  2671. X float32 `protobuf:"fixed32,1,opt,name=x,proto3" json:"x,omitempty"`
  2672. Y float32 `protobuf:"fixed32,2,opt,name=y,proto3" json:"y,omitempty"`
  2673. Z float32 `protobuf:"fixed32,3,opt,name=z,proto3" json:"z,omitempty"`
  2674. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2675. XXX_unrecognized []byte `json:"-"`
  2676. XXX_sizecache int32 `json:"-"`
  2677. }
  2678. func (m *Vector3) Reset() { *m = Vector3{} }
  2679. func (m *Vector3) String() string { return proto.CompactTextString(m) }
  2680. func (*Vector3) ProtoMessage() {}
  2681. func (*Vector3) Descriptor() ([]byte, []int) {
  2682. return fileDescriptor_116e343673f7ffaf, []int{48}
  2683. }
  2684. func (m *Vector3) XXX_Unmarshal(b []byte) error {
  2685. return xxx_messageInfo_Vector3.Unmarshal(m, b)
  2686. }
  2687. func (m *Vector3) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2688. return xxx_messageInfo_Vector3.Marshal(b, m, deterministic)
  2689. }
  2690. func (m *Vector3) XXX_Merge(src proto.Message) {
  2691. xxx_messageInfo_Vector3.Merge(m, src)
  2692. }
  2693. func (m *Vector3) XXX_Size() int {
  2694. return xxx_messageInfo_Vector3.Size(m)
  2695. }
  2696. func (m *Vector3) XXX_DiscardUnknown() {
  2697. xxx_messageInfo_Vector3.DiscardUnknown(m)
  2698. }
  2699. var xxx_messageInfo_Vector3 proto.InternalMessageInfo
  2700. func (m *Vector3) GetX() float32 {
  2701. if m != nil {
  2702. return m.X
  2703. }
  2704. return 0
  2705. }
  2706. func (m *Vector3) GetY() float32 {
  2707. if m != nil {
  2708. return m.Y
  2709. }
  2710. return 0
  2711. }
  2712. func (m *Vector3) GetZ() float32 {
  2713. if m != nil {
  2714. return m.Z
  2715. }
  2716. return 0
  2717. }
  2718. type Player struct {
  2719. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  2720. Pos *Position `protobuf:"bytes,2,opt,name=pos,proto3" json:"pos,omitempty"`
  2721. UType int32 `protobuf:"varint,3,opt,name=u_type,json=uType,proto3" json:"u_type,omitempty"`
  2722. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2723. XXX_unrecognized []byte `json:"-"`
  2724. XXX_sizecache int32 `json:"-"`
  2725. }
  2726. func (m *Player) Reset() { *m = Player{} }
  2727. func (m *Player) String() string { return proto.CompactTextString(m) }
  2728. func (*Player) ProtoMessage() {}
  2729. func (*Player) Descriptor() ([]byte, []int) {
  2730. return fileDescriptor_116e343673f7ffaf, []int{49}
  2731. }
  2732. func (m *Player) XXX_Unmarshal(b []byte) error {
  2733. return xxx_messageInfo_Player.Unmarshal(m, b)
  2734. }
  2735. func (m *Player) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2736. return xxx_messageInfo_Player.Marshal(b, m, deterministic)
  2737. }
  2738. func (m *Player) XXX_Merge(src proto.Message) {
  2739. xxx_messageInfo_Player.Merge(m, src)
  2740. }
  2741. func (m *Player) XXX_Size() int {
  2742. return xxx_messageInfo_Player.Size(m)
  2743. }
  2744. func (m *Player) XXX_DiscardUnknown() {
  2745. xxx_messageInfo_Player.DiscardUnknown(m)
  2746. }
  2747. var xxx_messageInfo_Player proto.InternalMessageInfo
  2748. func (m *Player) GetUid() uint64 {
  2749. if m != nil {
  2750. return m.Uid
  2751. }
  2752. return 0
  2753. }
  2754. func (m *Player) GetPos() *Position {
  2755. if m != nil {
  2756. return m.Pos
  2757. }
  2758. return nil
  2759. }
  2760. func (m *Player) GetUType() int32 {
  2761. if m != nil {
  2762. return m.UType
  2763. }
  2764. return 0
  2765. }
  2766. // 地图显示玩家数据
  2767. type PlayerShowInfo struct {
  2768. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  2769. Level int32 `protobuf:"varint,2,opt,name=level,proto3" json:"level,omitempty"`
  2770. VipLevel int32 `protobuf:"varint,3,opt,name=vip_level,json=vipLevel,proto3" json:"vip_level,omitempty"`
  2771. Gender int32 `protobuf:"varint,4,opt,name=gender,proto3" json:"gender,omitempty"`
  2772. JobId int32 `protobuf:"varint,5,opt,name=job_id,json=jobId,proto3" json:"job_id,omitempty"`
  2773. NickName string `protobuf:"bytes,6,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
  2774. FashionData *FashionData `protobuf:"bytes,7,opt,name=fashion_data,json=fashionData,proto3" json:"fashion_data,omitempty"`
  2775. ActionId int32 `protobuf:"varint,8,opt,name=action_id,json=actionId,proto3" json:"action_id,omitempty"`
  2776. HeadId int32 `protobuf:"varint,9,opt,name=head_id,json=headId,proto3" json:"head_id,omitempty"`
  2777. ImgId int32 `protobuf:"varint,10,opt,name=img_id,json=imgId,proto3" json:"img_id,omitempty"`
  2778. HeadFrameId int32 `protobuf:"varint,11,opt,name=head_frame_id,json=headFrameId,proto3" json:"head_frame_id,omitempty"`
  2779. FightPower int32 `protobuf:"varint,12,opt,name=fight_power,json=fightPower,proto3" json:"fight_power,omitempty"`
  2780. FromZone int32 `protobuf:"varint,20,opt,name=from_zone,json=fromZone,proto3" json:"from_zone,omitempty"`
  2781. RealZone int32 `protobuf:"varint,21,opt,name=real_zone,json=realZone,proto3" json:"real_zone,omitempty"`
  2782. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2783. XXX_unrecognized []byte `json:"-"`
  2784. XXX_sizecache int32 `json:"-"`
  2785. }
  2786. func (m *PlayerShowInfo) Reset() { *m = PlayerShowInfo{} }
  2787. func (m *PlayerShowInfo) String() string { return proto.CompactTextString(m) }
  2788. func (*PlayerShowInfo) ProtoMessage() {}
  2789. func (*PlayerShowInfo) Descriptor() ([]byte, []int) {
  2790. return fileDescriptor_116e343673f7ffaf, []int{50}
  2791. }
  2792. func (m *PlayerShowInfo) XXX_Unmarshal(b []byte) error {
  2793. return xxx_messageInfo_PlayerShowInfo.Unmarshal(m, b)
  2794. }
  2795. func (m *PlayerShowInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2796. return xxx_messageInfo_PlayerShowInfo.Marshal(b, m, deterministic)
  2797. }
  2798. func (m *PlayerShowInfo) XXX_Merge(src proto.Message) {
  2799. xxx_messageInfo_PlayerShowInfo.Merge(m, src)
  2800. }
  2801. func (m *PlayerShowInfo) XXX_Size() int {
  2802. return xxx_messageInfo_PlayerShowInfo.Size(m)
  2803. }
  2804. func (m *PlayerShowInfo) XXX_DiscardUnknown() {
  2805. xxx_messageInfo_PlayerShowInfo.DiscardUnknown(m)
  2806. }
  2807. var xxx_messageInfo_PlayerShowInfo proto.InternalMessageInfo
  2808. func (m *PlayerShowInfo) GetUid() uint64 {
  2809. if m != nil {
  2810. return m.Uid
  2811. }
  2812. return 0
  2813. }
  2814. func (m *PlayerShowInfo) GetLevel() int32 {
  2815. if m != nil {
  2816. return m.Level
  2817. }
  2818. return 0
  2819. }
  2820. func (m *PlayerShowInfo) GetVipLevel() int32 {
  2821. if m != nil {
  2822. return m.VipLevel
  2823. }
  2824. return 0
  2825. }
  2826. func (m *PlayerShowInfo) GetGender() int32 {
  2827. if m != nil {
  2828. return m.Gender
  2829. }
  2830. return 0
  2831. }
  2832. func (m *PlayerShowInfo) GetJobId() int32 {
  2833. if m != nil {
  2834. return m.JobId
  2835. }
  2836. return 0
  2837. }
  2838. func (m *PlayerShowInfo) GetNickName() string {
  2839. if m != nil {
  2840. return m.NickName
  2841. }
  2842. return ""
  2843. }
  2844. func (m *PlayerShowInfo) GetFashionData() *FashionData {
  2845. if m != nil {
  2846. return m.FashionData
  2847. }
  2848. return nil
  2849. }
  2850. func (m *PlayerShowInfo) GetActionId() int32 {
  2851. if m != nil {
  2852. return m.ActionId
  2853. }
  2854. return 0
  2855. }
  2856. func (m *PlayerShowInfo) GetHeadId() int32 {
  2857. if m != nil {
  2858. return m.HeadId
  2859. }
  2860. return 0
  2861. }
  2862. func (m *PlayerShowInfo) GetImgId() int32 {
  2863. if m != nil {
  2864. return m.ImgId
  2865. }
  2866. return 0
  2867. }
  2868. func (m *PlayerShowInfo) GetHeadFrameId() int32 {
  2869. if m != nil {
  2870. return m.HeadFrameId
  2871. }
  2872. return 0
  2873. }
  2874. func (m *PlayerShowInfo) GetFightPower() int32 {
  2875. if m != nil {
  2876. return m.FightPower
  2877. }
  2878. return 0
  2879. }
  2880. func (m *PlayerShowInfo) GetFromZone() int32 {
  2881. if m != nil {
  2882. return m.FromZone
  2883. }
  2884. return 0
  2885. }
  2886. func (m *PlayerShowInfo) GetRealZone() int32 {
  2887. if m != nil {
  2888. return m.RealZone
  2889. }
  2890. return 0
  2891. }
  2892. // 玩家详细信息
  2893. type OtherPlayerDetailInfo struct {
  2894. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  2895. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2896. XXX_unrecognized []byte `json:"-"`
  2897. XXX_sizecache int32 `json:"-"`
  2898. }
  2899. func (m *OtherPlayerDetailInfo) Reset() { *m = OtherPlayerDetailInfo{} }
  2900. func (m *OtherPlayerDetailInfo) String() string { return proto.CompactTextString(m) }
  2901. func (*OtherPlayerDetailInfo) ProtoMessage() {}
  2902. func (*OtherPlayerDetailInfo) Descriptor() ([]byte, []int) {
  2903. return fileDescriptor_116e343673f7ffaf, []int{51}
  2904. }
  2905. func (m *OtherPlayerDetailInfo) XXX_Unmarshal(b []byte) error {
  2906. return xxx_messageInfo_OtherPlayerDetailInfo.Unmarshal(m, b)
  2907. }
  2908. func (m *OtherPlayerDetailInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2909. return xxx_messageInfo_OtherPlayerDetailInfo.Marshal(b, m, deterministic)
  2910. }
  2911. func (m *OtherPlayerDetailInfo) XXX_Merge(src proto.Message) {
  2912. xxx_messageInfo_OtherPlayerDetailInfo.Merge(m, src)
  2913. }
  2914. func (m *OtherPlayerDetailInfo) XXX_Size() int {
  2915. return xxx_messageInfo_OtherPlayerDetailInfo.Size(m)
  2916. }
  2917. func (m *OtherPlayerDetailInfo) XXX_DiscardUnknown() {
  2918. xxx_messageInfo_OtherPlayerDetailInfo.DiscardUnknown(m)
  2919. }
  2920. var xxx_messageInfo_OtherPlayerDetailInfo proto.InternalMessageInfo
  2921. func (m *OtherPlayerDetailInfo) GetUid() uint64 {
  2922. if m != nil {
  2923. return m.Uid
  2924. }
  2925. return 0
  2926. }
  2927. type UnitPosAndDir struct {
  2928. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  2929. Pos *Vector3 `protobuf:"bytes,2,opt,name=pos,proto3" json:"pos,omitempty"`
  2930. Dir *Vector3 `protobuf:"bytes,3,opt,name=dir,proto3" json:"dir,omitempty"`
  2931. IsOnGround bool `protobuf:"varint,4,opt,name=is_on_ground,json=isOnGround,proto3" json:"is_on_ground,omitempty"`
  2932. UType int32 `protobuf:"varint,5,opt,name=u_type,json=uType,proto3" json:"u_type,omitempty"`
  2933. ParamId int32 `protobuf:"varint,6,opt,name=param_id,json=paramId,proto3" json:"param_id,omitempty"`
  2934. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2935. XXX_unrecognized []byte `json:"-"`
  2936. XXX_sizecache int32 `json:"-"`
  2937. }
  2938. func (m *UnitPosAndDir) Reset() { *m = UnitPosAndDir{} }
  2939. func (m *UnitPosAndDir) String() string { return proto.CompactTextString(m) }
  2940. func (*UnitPosAndDir) ProtoMessage() {}
  2941. func (*UnitPosAndDir) Descriptor() ([]byte, []int) {
  2942. return fileDescriptor_116e343673f7ffaf, []int{52}
  2943. }
  2944. func (m *UnitPosAndDir) XXX_Unmarshal(b []byte) error {
  2945. return xxx_messageInfo_UnitPosAndDir.Unmarshal(m, b)
  2946. }
  2947. func (m *UnitPosAndDir) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2948. return xxx_messageInfo_UnitPosAndDir.Marshal(b, m, deterministic)
  2949. }
  2950. func (m *UnitPosAndDir) XXX_Merge(src proto.Message) {
  2951. xxx_messageInfo_UnitPosAndDir.Merge(m, src)
  2952. }
  2953. func (m *UnitPosAndDir) XXX_Size() int {
  2954. return xxx_messageInfo_UnitPosAndDir.Size(m)
  2955. }
  2956. func (m *UnitPosAndDir) XXX_DiscardUnknown() {
  2957. xxx_messageInfo_UnitPosAndDir.DiscardUnknown(m)
  2958. }
  2959. var xxx_messageInfo_UnitPosAndDir proto.InternalMessageInfo
  2960. func (m *UnitPosAndDir) GetUid() uint64 {
  2961. if m != nil {
  2962. return m.Uid
  2963. }
  2964. return 0
  2965. }
  2966. func (m *UnitPosAndDir) GetPos() *Vector3 {
  2967. if m != nil {
  2968. return m.Pos
  2969. }
  2970. return nil
  2971. }
  2972. func (m *UnitPosAndDir) GetDir() *Vector3 {
  2973. if m != nil {
  2974. return m.Dir
  2975. }
  2976. return nil
  2977. }
  2978. func (m *UnitPosAndDir) GetIsOnGround() bool {
  2979. if m != nil {
  2980. return m.IsOnGround
  2981. }
  2982. return false
  2983. }
  2984. func (m *UnitPosAndDir) GetUType() int32 {
  2985. if m != nil {
  2986. return m.UType
  2987. }
  2988. return 0
  2989. }
  2990. func (m *UnitPosAndDir) GetParamId() int32 {
  2991. if m != nil {
  2992. return m.ParamId
  2993. }
  2994. return 0
  2995. }
  2996. // //////////////////////Battle
  2997. // 快速战斗
  2998. type QuickBattleData struct {
  2999. MaxTimes int32 `protobuf:"varint,1,opt,name=max_times,json=maxTimes,proto3" json:"max_times,omitempty"`
  3000. DayTimes int32 `protobuf:"varint,2,opt,name=day_times,json=dayTimes,proto3" json:"day_times,omitempty"`
  3001. DrawTime uint64 `protobuf:"varint,3,opt,name=draw_time,json=drawTime,proto3" json:"draw_time,omitempty"`
  3002. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3003. XXX_unrecognized []byte `json:"-"`
  3004. XXX_sizecache int32 `json:"-"`
  3005. }
  3006. func (m *QuickBattleData) Reset() { *m = QuickBattleData{} }
  3007. func (m *QuickBattleData) String() string { return proto.CompactTextString(m) }
  3008. func (*QuickBattleData) ProtoMessage() {}
  3009. func (*QuickBattleData) Descriptor() ([]byte, []int) {
  3010. return fileDescriptor_116e343673f7ffaf, []int{53}
  3011. }
  3012. func (m *QuickBattleData) XXX_Unmarshal(b []byte) error {
  3013. return xxx_messageInfo_QuickBattleData.Unmarshal(m, b)
  3014. }
  3015. func (m *QuickBattleData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3016. return xxx_messageInfo_QuickBattleData.Marshal(b, m, deterministic)
  3017. }
  3018. func (m *QuickBattleData) XXX_Merge(src proto.Message) {
  3019. xxx_messageInfo_QuickBattleData.Merge(m, src)
  3020. }
  3021. func (m *QuickBattleData) XXX_Size() int {
  3022. return xxx_messageInfo_QuickBattleData.Size(m)
  3023. }
  3024. func (m *QuickBattleData) XXX_DiscardUnknown() {
  3025. xxx_messageInfo_QuickBattleData.DiscardUnknown(m)
  3026. }
  3027. var xxx_messageInfo_QuickBattleData proto.InternalMessageInfo
  3028. func (m *QuickBattleData) GetMaxTimes() int32 {
  3029. if m != nil {
  3030. return m.MaxTimes
  3031. }
  3032. return 0
  3033. }
  3034. func (m *QuickBattleData) GetDayTimes() int32 {
  3035. if m != nil {
  3036. return m.DayTimes
  3037. }
  3038. return 0
  3039. }
  3040. func (m *QuickBattleData) GetDrawTime() uint64 {
  3041. if m != nil {
  3042. return m.DrawTime
  3043. }
  3044. return 0
  3045. }
  3046. type BattleEvilBossData struct {
  3047. PosIdx int32 `protobuf:"varint,1,opt,name=pos_idx,json=posIdx,proto3" json:"pos_idx,omitempty"`
  3048. BossId int32 `protobuf:"varint,2,opt,name=boss_id,json=bossId,proto3" json:"boss_id,omitempty"`
  3049. ExpireTime uint64 `protobuf:"varint,3,opt,name=expire_time,json=expireTime,proto3" json:"expire_time,omitempty"`
  3050. RewardEvilExp int32 `protobuf:"varint,4,opt,name=reward_evil_exp,json=rewardEvilExp,proto3" json:"reward_evil_exp,omitempty"`
  3051. RefreshTime int32 `protobuf:"varint,5,opt,name=refresh_time,json=refreshTime,proto3" json:"refresh_time,omitempty"`
  3052. Quality int32 `protobuf:"varint,6,opt,name=quality,proto3" json:"quality,omitempty"`
  3053. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3054. XXX_unrecognized []byte `json:"-"`
  3055. XXX_sizecache int32 `json:"-"`
  3056. }
  3057. func (m *BattleEvilBossData) Reset() { *m = BattleEvilBossData{} }
  3058. func (m *BattleEvilBossData) String() string { return proto.CompactTextString(m) }
  3059. func (*BattleEvilBossData) ProtoMessage() {}
  3060. func (*BattleEvilBossData) Descriptor() ([]byte, []int) {
  3061. return fileDescriptor_116e343673f7ffaf, []int{54}
  3062. }
  3063. func (m *BattleEvilBossData) XXX_Unmarshal(b []byte) error {
  3064. return xxx_messageInfo_BattleEvilBossData.Unmarshal(m, b)
  3065. }
  3066. func (m *BattleEvilBossData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3067. return xxx_messageInfo_BattleEvilBossData.Marshal(b, m, deterministic)
  3068. }
  3069. func (m *BattleEvilBossData) XXX_Merge(src proto.Message) {
  3070. xxx_messageInfo_BattleEvilBossData.Merge(m, src)
  3071. }
  3072. func (m *BattleEvilBossData) XXX_Size() int {
  3073. return xxx_messageInfo_BattleEvilBossData.Size(m)
  3074. }
  3075. func (m *BattleEvilBossData) XXX_DiscardUnknown() {
  3076. xxx_messageInfo_BattleEvilBossData.DiscardUnknown(m)
  3077. }
  3078. var xxx_messageInfo_BattleEvilBossData proto.InternalMessageInfo
  3079. func (m *BattleEvilBossData) GetPosIdx() int32 {
  3080. if m != nil {
  3081. return m.PosIdx
  3082. }
  3083. return 0
  3084. }
  3085. func (m *BattleEvilBossData) GetBossId() int32 {
  3086. if m != nil {
  3087. return m.BossId
  3088. }
  3089. return 0
  3090. }
  3091. func (m *BattleEvilBossData) GetExpireTime() uint64 {
  3092. if m != nil {
  3093. return m.ExpireTime
  3094. }
  3095. return 0
  3096. }
  3097. func (m *BattleEvilBossData) GetRewardEvilExp() int32 {
  3098. if m != nil {
  3099. return m.RewardEvilExp
  3100. }
  3101. return 0
  3102. }
  3103. func (m *BattleEvilBossData) GetRefreshTime() int32 {
  3104. if m != nil {
  3105. return m.RefreshTime
  3106. }
  3107. return 0
  3108. }
  3109. func (m *BattleEvilBossData) GetQuality() int32 {
  3110. if m != nil {
  3111. return m.Quality
  3112. }
  3113. return 0
  3114. }
  3115. type BattleEvilData struct {
  3116. FreeCount int32 `protobuf:"varint,1,opt,name=free_count,json=freeCount,proto3" json:"free_count,omitempty"`
  3117. FreeLimit bool `protobuf:"varint,2,opt,name=free_limit,json=freeLimit,proto3" json:"free_limit,omitempty"`
  3118. ChallengeCount int32 `protobuf:"varint,3,opt,name=challenge_count,json=challengeCount,proto3" json:"challenge_count,omitempty"`
  3119. EvilLevel int32 `protobuf:"varint,4,opt,name=evil_level,json=evilLevel,proto3" json:"evil_level,omitempty"`
  3120. BossList []*BattleEvilBossData `protobuf:"bytes,5,rep,name=boss_list,json=bossList,proto3" json:"boss_list,omitempty"`
  3121. QualityChallengeCount []*KeyValueType `protobuf:"bytes,6,rep,name=quality_challenge_count,json=qualityChallengeCount,proto3" json:"quality_challenge_count,omitempty"`
  3122. TotalCount int32 `protobuf:"varint,7,opt,name=total_count,json=totalCount,proto3" json:"total_count,omitempty"`
  3123. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3124. XXX_unrecognized []byte `json:"-"`
  3125. XXX_sizecache int32 `json:"-"`
  3126. }
  3127. func (m *BattleEvilData) Reset() { *m = BattleEvilData{} }
  3128. func (m *BattleEvilData) String() string { return proto.CompactTextString(m) }
  3129. func (*BattleEvilData) ProtoMessage() {}
  3130. func (*BattleEvilData) Descriptor() ([]byte, []int) {
  3131. return fileDescriptor_116e343673f7ffaf, []int{55}
  3132. }
  3133. func (m *BattleEvilData) XXX_Unmarshal(b []byte) error {
  3134. return xxx_messageInfo_BattleEvilData.Unmarshal(m, b)
  3135. }
  3136. func (m *BattleEvilData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3137. return xxx_messageInfo_BattleEvilData.Marshal(b, m, deterministic)
  3138. }
  3139. func (m *BattleEvilData) XXX_Merge(src proto.Message) {
  3140. xxx_messageInfo_BattleEvilData.Merge(m, src)
  3141. }
  3142. func (m *BattleEvilData) XXX_Size() int {
  3143. return xxx_messageInfo_BattleEvilData.Size(m)
  3144. }
  3145. func (m *BattleEvilData) XXX_DiscardUnknown() {
  3146. xxx_messageInfo_BattleEvilData.DiscardUnknown(m)
  3147. }
  3148. var xxx_messageInfo_BattleEvilData proto.InternalMessageInfo
  3149. func (m *BattleEvilData) GetFreeCount() int32 {
  3150. if m != nil {
  3151. return m.FreeCount
  3152. }
  3153. return 0
  3154. }
  3155. func (m *BattleEvilData) GetFreeLimit() bool {
  3156. if m != nil {
  3157. return m.FreeLimit
  3158. }
  3159. return false
  3160. }
  3161. func (m *BattleEvilData) GetChallengeCount() int32 {
  3162. if m != nil {
  3163. return m.ChallengeCount
  3164. }
  3165. return 0
  3166. }
  3167. func (m *BattleEvilData) GetEvilLevel() int32 {
  3168. if m != nil {
  3169. return m.EvilLevel
  3170. }
  3171. return 0
  3172. }
  3173. func (m *BattleEvilData) GetBossList() []*BattleEvilBossData {
  3174. if m != nil {
  3175. return m.BossList
  3176. }
  3177. return nil
  3178. }
  3179. func (m *BattleEvilData) GetQualityChallengeCount() []*KeyValueType {
  3180. if m != nil {
  3181. return m.QualityChallengeCount
  3182. }
  3183. return nil
  3184. }
  3185. func (m *BattleEvilData) GetTotalCount() int32 {
  3186. if m != nil {
  3187. return m.TotalCount
  3188. }
  3189. return 0
  3190. }
  3191. // 远征之门
  3192. type BattleExpeditionActor struct {
  3193. Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  3194. Level int32 `protobuf:"varint,2,opt,name=level,proto3" json:"level,omitempty"`
  3195. Hp int32 `protobuf:"varint,3,opt,name=hp,proto3" json:"hp,omitempty"`
  3196. Sp int32 `protobuf:"varint,4,opt,name=sp,proto3" json:"sp,omitempty"`
  3197. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3198. XXX_unrecognized []byte `json:"-"`
  3199. XXX_sizecache int32 `json:"-"`
  3200. }
  3201. func (m *BattleExpeditionActor) Reset() { *m = BattleExpeditionActor{} }
  3202. func (m *BattleExpeditionActor) String() string { return proto.CompactTextString(m) }
  3203. func (*BattleExpeditionActor) ProtoMessage() {}
  3204. func (*BattleExpeditionActor) Descriptor() ([]byte, []int) {
  3205. return fileDescriptor_116e343673f7ffaf, []int{56}
  3206. }
  3207. func (m *BattleExpeditionActor) XXX_Unmarshal(b []byte) error {
  3208. return xxx_messageInfo_BattleExpeditionActor.Unmarshal(m, b)
  3209. }
  3210. func (m *BattleExpeditionActor) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3211. return xxx_messageInfo_BattleExpeditionActor.Marshal(b, m, deterministic)
  3212. }
  3213. func (m *BattleExpeditionActor) XXX_Merge(src proto.Message) {
  3214. xxx_messageInfo_BattleExpeditionActor.Merge(m, src)
  3215. }
  3216. func (m *BattleExpeditionActor) XXX_Size() int {
  3217. return xxx_messageInfo_BattleExpeditionActor.Size(m)
  3218. }
  3219. func (m *BattleExpeditionActor) XXX_DiscardUnknown() {
  3220. xxx_messageInfo_BattleExpeditionActor.DiscardUnknown(m)
  3221. }
  3222. var xxx_messageInfo_BattleExpeditionActor proto.InternalMessageInfo
  3223. func (m *BattleExpeditionActor) GetId() int32 {
  3224. if m != nil {
  3225. return m.Id
  3226. }
  3227. return 0
  3228. }
  3229. func (m *BattleExpeditionActor) GetLevel() int32 {
  3230. if m != nil {
  3231. return m.Level
  3232. }
  3233. return 0
  3234. }
  3235. func (m *BattleExpeditionActor) GetHp() int32 {
  3236. if m != nil {
  3237. return m.Hp
  3238. }
  3239. return 0
  3240. }
  3241. func (m *BattleExpeditionActor) GetSp() int32 {
  3242. if m != nil {
  3243. return m.Sp
  3244. }
  3245. return 0
  3246. }
  3247. type BattleExpeditionReward struct {
  3248. ExpeditionType int32 `protobuf:"varint,1,opt,name=expedition_type,json=expeditionType,proto3" json:"expedition_type,omitempty"`
  3249. RewardState []int32 `protobuf:"varint,2,rep,packed,name=reward_state,json=rewardState,proto3" json:"reward_state,omitempty"`
  3250. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3251. XXX_unrecognized []byte `json:"-"`
  3252. XXX_sizecache int32 `json:"-"`
  3253. }
  3254. func (m *BattleExpeditionReward) Reset() { *m = BattleExpeditionReward{} }
  3255. func (m *BattleExpeditionReward) String() string { return proto.CompactTextString(m) }
  3256. func (*BattleExpeditionReward) ProtoMessage() {}
  3257. func (*BattleExpeditionReward) Descriptor() ([]byte, []int) {
  3258. return fileDescriptor_116e343673f7ffaf, []int{57}
  3259. }
  3260. func (m *BattleExpeditionReward) XXX_Unmarshal(b []byte) error {
  3261. return xxx_messageInfo_BattleExpeditionReward.Unmarshal(m, b)
  3262. }
  3263. func (m *BattleExpeditionReward) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3264. return xxx_messageInfo_BattleExpeditionReward.Marshal(b, m, deterministic)
  3265. }
  3266. func (m *BattleExpeditionReward) XXX_Merge(src proto.Message) {
  3267. xxx_messageInfo_BattleExpeditionReward.Merge(m, src)
  3268. }
  3269. func (m *BattleExpeditionReward) XXX_Size() int {
  3270. return xxx_messageInfo_BattleExpeditionReward.Size(m)
  3271. }
  3272. func (m *BattleExpeditionReward) XXX_DiscardUnknown() {
  3273. xxx_messageInfo_BattleExpeditionReward.DiscardUnknown(m)
  3274. }
  3275. var xxx_messageInfo_BattleExpeditionReward proto.InternalMessageInfo
  3276. func (m *BattleExpeditionReward) GetExpeditionType() int32 {
  3277. if m != nil {
  3278. return m.ExpeditionType
  3279. }
  3280. return 0
  3281. }
  3282. func (m *BattleExpeditionReward) GetRewardState() []int32 {
  3283. if m != nil {
  3284. return m.RewardState
  3285. }
  3286. return nil
  3287. }
  3288. type ExpeditionRankInfo struct {
  3289. Rank int32 `protobuf:"varint,1,opt,name=rank,proto3" json:"rank,omitempty"`
  3290. BriefInfo *CommonPlayerBriefInfo `protobuf:"bytes,2,opt,name=brief_info,json=briefInfo,proto3" json:"brief_info,omitempty"`
  3291. Score uint32 `protobuf:"varint,3,opt,name=score,proto3" json:"score,omitempty"`
  3292. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3293. XXX_unrecognized []byte `json:"-"`
  3294. XXX_sizecache int32 `json:"-"`
  3295. }
  3296. func (m *ExpeditionRankInfo) Reset() { *m = ExpeditionRankInfo{} }
  3297. func (m *ExpeditionRankInfo) String() string { return proto.CompactTextString(m) }
  3298. func (*ExpeditionRankInfo) ProtoMessage() {}
  3299. func (*ExpeditionRankInfo) Descriptor() ([]byte, []int) {
  3300. return fileDescriptor_116e343673f7ffaf, []int{58}
  3301. }
  3302. func (m *ExpeditionRankInfo) XXX_Unmarshal(b []byte) error {
  3303. return xxx_messageInfo_ExpeditionRankInfo.Unmarshal(m, b)
  3304. }
  3305. func (m *ExpeditionRankInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3306. return xxx_messageInfo_ExpeditionRankInfo.Marshal(b, m, deterministic)
  3307. }
  3308. func (m *ExpeditionRankInfo) XXX_Merge(src proto.Message) {
  3309. xxx_messageInfo_ExpeditionRankInfo.Merge(m, src)
  3310. }
  3311. func (m *ExpeditionRankInfo) XXX_Size() int {
  3312. return xxx_messageInfo_ExpeditionRankInfo.Size(m)
  3313. }
  3314. func (m *ExpeditionRankInfo) XXX_DiscardUnknown() {
  3315. xxx_messageInfo_ExpeditionRankInfo.DiscardUnknown(m)
  3316. }
  3317. var xxx_messageInfo_ExpeditionRankInfo proto.InternalMessageInfo
  3318. func (m *ExpeditionRankInfo) GetRank() int32 {
  3319. if m != nil {
  3320. return m.Rank
  3321. }
  3322. return 0
  3323. }
  3324. func (m *ExpeditionRankInfo) GetBriefInfo() *CommonPlayerBriefInfo {
  3325. if m != nil {
  3326. return m.BriefInfo
  3327. }
  3328. return nil
  3329. }
  3330. func (m *ExpeditionRankInfo) GetScore() uint32 {
  3331. if m != nil {
  3332. return m.Score
  3333. }
  3334. return 0
  3335. }
  3336. type BattleExpedition struct {
  3337. ExpeditionType int32 `protobuf:"varint,1,opt,name=expedition_type,json=expeditionType,proto3" json:"expedition_type,omitempty"`
  3338. BattleHeroList []int32 `protobuf:"varint,2,rep,packed,name=battle_hero_list,json=battleHeroList,proto3" json:"battle_hero_list,omitempty"`
  3339. TotalExpeditionNum int32 `protobuf:"varint,3,opt,name=total_expedition_num,json=totalExpeditionNum,proto3" json:"total_expedition_num,omitempty"`
  3340. // 数据需要隔天清空(关卡数据在挑战关区域地图后可以进行重置)
  3341. ChallengeNum int32 `protobuf:"varint,4,opt,name=challenge_num,json=challengeNum,proto3" json:"challenge_num,omitempty"`
  3342. CurExpeditionType int32 `protobuf:"varint,5,opt,name=cur_expedition_type,json=curExpeditionType,proto3" json:"cur_expedition_type,omitempty"`
  3343. FinishExpeditionList []int32 `protobuf:"varint,6,rep,packed,name=finish_expedition_list,json=finishExpeditionList,proto3" json:"finish_expedition_list,omitempty"`
  3344. RewardStateList []*BattleExpeditionReward `protobuf:"bytes,7,rep,name=reward_state_list,json=rewardStateList,proto3" json:"reward_state_list,omitempty"`
  3345. CurBattleLevel int32 `protobuf:"varint,8,opt,name=cur_battle_level,json=curBattleLevel,proto3" json:"cur_battle_level,omitempty"`
  3346. BossList []*BattleExpeditionActor `protobuf:"bytes,9,rep,name=boss_list,json=bossList,proto3" json:"boss_list,omitempty"`
  3347. BattleBuffList []int32 `protobuf:"varint,10,rep,packed,name=battle_buff_list,json=battleBuffList,proto3" json:"battle_buff_list,omitempty"`
  3348. BattleSelectBuffList []int32 `protobuf:"varint,11,rep,packed,name=battle_select_buff_list,json=battleSelectBuffList,proto3" json:"battle_select_buff_list,omitempty"`
  3349. BattleHeroHpList []*BattleExpeditionActor `protobuf:"bytes,12,rep,name=battle_hero_hp_list,json=battleHeroHpList,proto3" json:"battle_hero_hp_list,omitempty"`
  3350. BattleIdx int32 `protobuf:"varint,13,opt,name=battle_idx,json=battleIdx,proto3" json:"battle_idx,omitempty"`
  3351. AssistNum *KeyValueType `protobuf:"bytes,14,opt,name=assist_num,json=assistNum,proto3" json:"assist_num,omitempty"`
  3352. BeAssistNum *KeyValueType `protobuf:"bytes,15,opt,name=be_assist_num,json=beAssistNum,proto3" json:"be_assist_num,omitempty"`
  3353. AssistState bool `protobuf:"varint,16,opt,name=assist_state,json=assistState,proto3" json:"assist_state,omitempty"`
  3354. AssistGuildEndTime uint64 `protobuf:"varint,17,opt,name=assist_guild_end_time,json=assistGuildEndTime,proto3" json:"assist_guild_end_time,omitempty"`
  3355. BeAssistUidList []*KeyValueType64 `protobuf:"bytes,18,rep,name=be_assist_uid_list,json=beAssistUidList,proto3" json:"be_assist_uid_list,omitempty"`
  3356. AssistTimeStamp uint64 `protobuf:"varint,19,opt,name=assist_time_stamp,json=assistTimeStamp,proto3" json:"assist_time_stamp,omitempty"`
  3357. CurExpeditionScore uint32 `protobuf:"varint,20,opt,name=cur_expedition_score,json=curExpeditionScore,proto3" json:"cur_expedition_score,omitempty"`
  3358. CurExpeditionScoreMax uint32 `protobuf:"varint,21,opt,name=cur_expedition_score_max,json=curExpeditionScoreMax,proto3" json:"cur_expedition_score_max,omitempty"`
  3359. ExpeditionScoreResetTime uint64 `protobuf:"varint,22,opt,name=expedition_score_reset_time,json=expeditionScoreResetTime,proto3" json:"expedition_score_reset_time,omitempty"`
  3360. ExpeditionTypeReward uint64 `protobuf:"varint,23,opt,name=expedition_type_reward,json=expeditionTypeReward,proto3" json:"expedition_type_reward,omitempty"`
  3361. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3362. XXX_unrecognized []byte `json:"-"`
  3363. XXX_sizecache int32 `json:"-"`
  3364. }
  3365. func (m *BattleExpedition) Reset() { *m = BattleExpedition{} }
  3366. func (m *BattleExpedition) String() string { return proto.CompactTextString(m) }
  3367. func (*BattleExpedition) ProtoMessage() {}
  3368. func (*BattleExpedition) Descriptor() ([]byte, []int) {
  3369. return fileDescriptor_116e343673f7ffaf, []int{59}
  3370. }
  3371. func (m *BattleExpedition) XXX_Unmarshal(b []byte) error {
  3372. return xxx_messageInfo_BattleExpedition.Unmarshal(m, b)
  3373. }
  3374. func (m *BattleExpedition) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3375. return xxx_messageInfo_BattleExpedition.Marshal(b, m, deterministic)
  3376. }
  3377. func (m *BattleExpedition) XXX_Merge(src proto.Message) {
  3378. xxx_messageInfo_BattleExpedition.Merge(m, src)
  3379. }
  3380. func (m *BattleExpedition) XXX_Size() int {
  3381. return xxx_messageInfo_BattleExpedition.Size(m)
  3382. }
  3383. func (m *BattleExpedition) XXX_DiscardUnknown() {
  3384. xxx_messageInfo_BattleExpedition.DiscardUnknown(m)
  3385. }
  3386. var xxx_messageInfo_BattleExpedition proto.InternalMessageInfo
  3387. func (m *BattleExpedition) GetExpeditionType() int32 {
  3388. if m != nil {
  3389. return m.ExpeditionType
  3390. }
  3391. return 0
  3392. }
  3393. func (m *BattleExpedition) GetBattleHeroList() []int32 {
  3394. if m != nil {
  3395. return m.BattleHeroList
  3396. }
  3397. return nil
  3398. }
  3399. func (m *BattleExpedition) GetTotalExpeditionNum() int32 {
  3400. if m != nil {
  3401. return m.TotalExpeditionNum
  3402. }
  3403. return 0
  3404. }
  3405. func (m *BattleExpedition) GetChallengeNum() int32 {
  3406. if m != nil {
  3407. return m.ChallengeNum
  3408. }
  3409. return 0
  3410. }
  3411. func (m *BattleExpedition) GetCurExpeditionType() int32 {
  3412. if m != nil {
  3413. return m.CurExpeditionType
  3414. }
  3415. return 0
  3416. }
  3417. func (m *BattleExpedition) GetFinishExpeditionList() []int32 {
  3418. if m != nil {
  3419. return m.FinishExpeditionList
  3420. }
  3421. return nil
  3422. }
  3423. func (m *BattleExpedition) GetRewardStateList() []*BattleExpeditionReward {
  3424. if m != nil {
  3425. return m.RewardStateList
  3426. }
  3427. return nil
  3428. }
  3429. func (m *BattleExpedition) GetCurBattleLevel() int32 {
  3430. if m != nil {
  3431. return m.CurBattleLevel
  3432. }
  3433. return 0
  3434. }
  3435. func (m *BattleExpedition) GetBossList() []*BattleExpeditionActor {
  3436. if m != nil {
  3437. return m.BossList
  3438. }
  3439. return nil
  3440. }
  3441. func (m *BattleExpedition) GetBattleBuffList() []int32 {
  3442. if m != nil {
  3443. return m.BattleBuffList
  3444. }
  3445. return nil
  3446. }
  3447. func (m *BattleExpedition) GetBattleSelectBuffList() []int32 {
  3448. if m != nil {
  3449. return m.BattleSelectBuffList
  3450. }
  3451. return nil
  3452. }
  3453. func (m *BattleExpedition) GetBattleHeroHpList() []*BattleExpeditionActor {
  3454. if m != nil {
  3455. return m.BattleHeroHpList
  3456. }
  3457. return nil
  3458. }
  3459. func (m *BattleExpedition) GetBattleIdx() int32 {
  3460. if m != nil {
  3461. return m.BattleIdx
  3462. }
  3463. return 0
  3464. }
  3465. func (m *BattleExpedition) GetAssistNum() *KeyValueType {
  3466. if m != nil {
  3467. return m.AssistNum
  3468. }
  3469. return nil
  3470. }
  3471. func (m *BattleExpedition) GetBeAssistNum() *KeyValueType {
  3472. if m != nil {
  3473. return m.BeAssistNum
  3474. }
  3475. return nil
  3476. }
  3477. func (m *BattleExpedition) GetAssistState() bool {
  3478. if m != nil {
  3479. return m.AssistState
  3480. }
  3481. return false
  3482. }
  3483. func (m *BattleExpedition) GetAssistGuildEndTime() uint64 {
  3484. if m != nil {
  3485. return m.AssistGuildEndTime
  3486. }
  3487. return 0
  3488. }
  3489. func (m *BattleExpedition) GetBeAssistUidList() []*KeyValueType64 {
  3490. if m != nil {
  3491. return m.BeAssistUidList
  3492. }
  3493. return nil
  3494. }
  3495. func (m *BattleExpedition) GetAssistTimeStamp() uint64 {
  3496. if m != nil {
  3497. return m.AssistTimeStamp
  3498. }
  3499. return 0
  3500. }
  3501. func (m *BattleExpedition) GetCurExpeditionScore() uint32 {
  3502. if m != nil {
  3503. return m.CurExpeditionScore
  3504. }
  3505. return 0
  3506. }
  3507. func (m *BattleExpedition) GetCurExpeditionScoreMax() uint32 {
  3508. if m != nil {
  3509. return m.CurExpeditionScoreMax
  3510. }
  3511. return 0
  3512. }
  3513. func (m *BattleExpedition) GetExpeditionScoreResetTime() uint64 {
  3514. if m != nil {
  3515. return m.ExpeditionScoreResetTime
  3516. }
  3517. return 0
  3518. }
  3519. func (m *BattleExpedition) GetExpeditionTypeReward() uint64 {
  3520. if m != nil {
  3521. return m.ExpeditionTypeReward
  3522. }
  3523. return 0
  3524. }
  3525. type RushMap struct {
  3526. MapScore uint32 `protobuf:"varint,1,opt,name=map_score,json=mapScore,proto3" json:"map_score,omitempty"`
  3527. BagScore uint32 `protobuf:"varint,2,opt,name=bag_score,json=bagScore,proto3" json:"bag_score,omitempty"`
  3528. RushMapId uint32 `protobuf:"varint,3,opt,name=rush_map_id,json=rushMapId,proto3" json:"rush_map_id,omitempty"`
  3529. FightRound int32 `protobuf:"varint,4,opt,name=fight_round,json=fightRound,proto3" json:"fight_round,omitempty"`
  3530. RewardRound int32 `protobuf:"varint,5,opt,name=reward_round,json=rewardRound,proto3" json:"reward_round,omitempty"`
  3531. RankReward int32 `protobuf:"varint,6,opt,name=rank_reward,json=rankReward,proto3" json:"rank_reward,omitempty"`
  3532. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3533. XXX_unrecognized []byte `json:"-"`
  3534. XXX_sizecache int32 `json:"-"`
  3535. }
  3536. func (m *RushMap) Reset() { *m = RushMap{} }
  3537. func (m *RushMap) String() string { return proto.CompactTextString(m) }
  3538. func (*RushMap) ProtoMessage() {}
  3539. func (*RushMap) Descriptor() ([]byte, []int) {
  3540. return fileDescriptor_116e343673f7ffaf, []int{60}
  3541. }
  3542. func (m *RushMap) XXX_Unmarshal(b []byte) error {
  3543. return xxx_messageInfo_RushMap.Unmarshal(m, b)
  3544. }
  3545. func (m *RushMap) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3546. return xxx_messageInfo_RushMap.Marshal(b, m, deterministic)
  3547. }
  3548. func (m *RushMap) XXX_Merge(src proto.Message) {
  3549. xxx_messageInfo_RushMap.Merge(m, src)
  3550. }
  3551. func (m *RushMap) XXX_Size() int {
  3552. return xxx_messageInfo_RushMap.Size(m)
  3553. }
  3554. func (m *RushMap) XXX_DiscardUnknown() {
  3555. xxx_messageInfo_RushMap.DiscardUnknown(m)
  3556. }
  3557. var xxx_messageInfo_RushMap proto.InternalMessageInfo
  3558. func (m *RushMap) GetMapScore() uint32 {
  3559. if m != nil {
  3560. return m.MapScore
  3561. }
  3562. return 0
  3563. }
  3564. func (m *RushMap) GetBagScore() uint32 {
  3565. if m != nil {
  3566. return m.BagScore
  3567. }
  3568. return 0
  3569. }
  3570. func (m *RushMap) GetRushMapId() uint32 {
  3571. if m != nil {
  3572. return m.RushMapId
  3573. }
  3574. return 0
  3575. }
  3576. func (m *RushMap) GetFightRound() int32 {
  3577. if m != nil {
  3578. return m.FightRound
  3579. }
  3580. return 0
  3581. }
  3582. func (m *RushMap) GetRewardRound() int32 {
  3583. if m != nil {
  3584. return m.RewardRound
  3585. }
  3586. return 0
  3587. }
  3588. func (m *RushMap) GetRankReward() int32 {
  3589. if m != nil {
  3590. return m.RankReward
  3591. }
  3592. return 0
  3593. }
  3594. type RoleBattle struct {
  3595. LastIncomeTime uint64 `protobuf:"varint,1,opt,name=last_income_time,json=lastIncomeTime,proto3" json:"last_income_time,omitempty"`
  3596. MapLevel uint32 `protobuf:"varint,2,opt,name=map_level,json=mapLevel,proto3" json:"map_level,omitempty"`
  3597. MapId uint32 `protobuf:"varint,3,opt,name=map_id,json=mapId,proto3" json:"map_id,omitempty"`
  3598. MaxIncomeTime uint32 `protobuf:"varint,4,opt,name=max_income_time,json=maxIncomeTime,proto3" json:"max_income_time,omitempty"`
  3599. QuickBattle *QuickBattleData `protobuf:"bytes,5,opt,name=quick_battle,json=quickBattle,proto3" json:"quick_battle,omitempty"`
  3600. // 当前领取到的奖励关ID
  3601. RewardMapId uint32 `protobuf:"varint,6,opt,name=reward_map_id,json=rewardMapId,proto3" json:"reward_map_id,omitempty"`
  3602. RewardMapLevel uint32 `protobuf:"varint,7,opt,name=reward_map_level,json=rewardMapLevel,proto3" json:"reward_map_level,omitempty"`
  3603. RewardMapCount uint32 `protobuf:"varint,8,opt,name=reward_map_count,json=rewardMapCount,proto3" json:"reward_map_count,omitempty"`
  3604. // 恶魔协会
  3605. EvilInfo *BattleEvilData `protobuf:"bytes,9,opt,name=evil_info,json=evilInfo,proto3" json:"evil_info,omitempty"`
  3606. // 远征之门
  3607. ExpeditionInfo *BattleExpedition `protobuf:"bytes,10,opt,name=expedition_info,json=expeditionInfo,proto3" json:"expedition_info,omitempty"`
  3608. MapLevelTime uint64 `protobuf:"varint,11,opt,name=map_level_time,json=mapLevelTime,proto3" json:"map_level_time,omitempty"`
  3609. RushMap *RushMap `protobuf:"bytes,12,opt,name=rush_map,json=rushMap,proto3" json:"rush_map,omitempty"`
  3610. MapChallengeNumList []*KeyValueType `protobuf:"bytes,13,rep,name=map_challenge_num_list,json=mapChallengeNumList,proto3" json:"map_challenge_num_list,omitempty"`
  3611. // 战斗加速时间(客户端显示根据last_record_battle_acce_time+battle_acce_duration为最大能使用的结束时间戳)
  3612. LastRecordBattleAcceTime uint64 `protobuf:"varint,14,opt,name=last_record_battle_acce_time,json=lastRecordBattleAcceTime,proto3" json:"last_record_battle_acce_time,omitempty"`
  3613. BattleAcceDuration uint64 `protobuf:"varint,15,opt,name=battle_acce_duration,json=battleAcceDuration,proto3" json:"battle_acce_duration,omitempty"`
  3614. MapLevelHard uint32 `protobuf:"varint,16,opt,name=map_level_hard,json=mapLevelHard,proto3" json:"map_level_hard,omitempty"`
  3615. MapIdHard uint32 `protobuf:"varint,17,opt,name=map_id_hard,json=mapIdHard,proto3" json:"map_id_hard,omitempty"`
  3616. RewardMapIdHard uint32 `protobuf:"varint,18,opt,name=reward_map_id_hard,json=rewardMapIdHard,proto3" json:"reward_map_id_hard,omitempty"`
  3617. RewardMapLevelHard uint32 `protobuf:"varint,19,opt,name=reward_map_level_hard,json=rewardMapLevelHard,proto3" json:"reward_map_level_hard,omitempty"`
  3618. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3619. XXX_unrecognized []byte `json:"-"`
  3620. XXX_sizecache int32 `json:"-"`
  3621. }
  3622. func (m *RoleBattle) Reset() { *m = RoleBattle{} }
  3623. func (m *RoleBattle) String() string { return proto.CompactTextString(m) }
  3624. func (*RoleBattle) ProtoMessage() {}
  3625. func (*RoleBattle) Descriptor() ([]byte, []int) {
  3626. return fileDescriptor_116e343673f7ffaf, []int{61}
  3627. }
  3628. func (m *RoleBattle) XXX_Unmarshal(b []byte) error {
  3629. return xxx_messageInfo_RoleBattle.Unmarshal(m, b)
  3630. }
  3631. func (m *RoleBattle) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3632. return xxx_messageInfo_RoleBattle.Marshal(b, m, deterministic)
  3633. }
  3634. func (m *RoleBattle) XXX_Merge(src proto.Message) {
  3635. xxx_messageInfo_RoleBattle.Merge(m, src)
  3636. }
  3637. func (m *RoleBattle) XXX_Size() int {
  3638. return xxx_messageInfo_RoleBattle.Size(m)
  3639. }
  3640. func (m *RoleBattle) XXX_DiscardUnknown() {
  3641. xxx_messageInfo_RoleBattle.DiscardUnknown(m)
  3642. }
  3643. var xxx_messageInfo_RoleBattle proto.InternalMessageInfo
  3644. func (m *RoleBattle) GetLastIncomeTime() uint64 {
  3645. if m != nil {
  3646. return m.LastIncomeTime
  3647. }
  3648. return 0
  3649. }
  3650. func (m *RoleBattle) GetMapLevel() uint32 {
  3651. if m != nil {
  3652. return m.MapLevel
  3653. }
  3654. return 0
  3655. }
  3656. func (m *RoleBattle) GetMapId() uint32 {
  3657. if m != nil {
  3658. return m.MapId
  3659. }
  3660. return 0
  3661. }
  3662. func (m *RoleBattle) GetMaxIncomeTime() uint32 {
  3663. if m != nil {
  3664. return m.MaxIncomeTime
  3665. }
  3666. return 0
  3667. }
  3668. func (m *RoleBattle) GetQuickBattle() *QuickBattleData {
  3669. if m != nil {
  3670. return m.QuickBattle
  3671. }
  3672. return nil
  3673. }
  3674. func (m *RoleBattle) GetRewardMapId() uint32 {
  3675. if m != nil {
  3676. return m.RewardMapId
  3677. }
  3678. return 0
  3679. }
  3680. func (m *RoleBattle) GetRewardMapLevel() uint32 {
  3681. if m != nil {
  3682. return m.RewardMapLevel
  3683. }
  3684. return 0
  3685. }
  3686. func (m *RoleBattle) GetRewardMapCount() uint32 {
  3687. if m != nil {
  3688. return m.RewardMapCount
  3689. }
  3690. return 0
  3691. }
  3692. func (m *RoleBattle) GetEvilInfo() *BattleEvilData {
  3693. if m != nil {
  3694. return m.EvilInfo
  3695. }
  3696. return nil
  3697. }
  3698. func (m *RoleBattle) GetExpeditionInfo() *BattleExpedition {
  3699. if m != nil {
  3700. return m.ExpeditionInfo
  3701. }
  3702. return nil
  3703. }
  3704. func (m *RoleBattle) GetMapLevelTime() uint64 {
  3705. if m != nil {
  3706. return m.MapLevelTime
  3707. }
  3708. return 0
  3709. }
  3710. func (m *RoleBattle) GetRushMap() *RushMap {
  3711. if m != nil {
  3712. return m.RushMap
  3713. }
  3714. return nil
  3715. }
  3716. func (m *RoleBattle) GetMapChallengeNumList() []*KeyValueType {
  3717. if m != nil {
  3718. return m.MapChallengeNumList
  3719. }
  3720. return nil
  3721. }
  3722. func (m *RoleBattle) GetLastRecordBattleAcceTime() uint64 {
  3723. if m != nil {
  3724. return m.LastRecordBattleAcceTime
  3725. }
  3726. return 0
  3727. }
  3728. func (m *RoleBattle) GetBattleAcceDuration() uint64 {
  3729. if m != nil {
  3730. return m.BattleAcceDuration
  3731. }
  3732. return 0
  3733. }
  3734. func (m *RoleBattle) GetMapLevelHard() uint32 {
  3735. if m != nil {
  3736. return m.MapLevelHard
  3737. }
  3738. return 0
  3739. }
  3740. func (m *RoleBattle) GetMapIdHard() uint32 {
  3741. if m != nil {
  3742. return m.MapIdHard
  3743. }
  3744. return 0
  3745. }
  3746. func (m *RoleBattle) GetRewardMapIdHard() uint32 {
  3747. if m != nil {
  3748. return m.RewardMapIdHard
  3749. }
  3750. return 0
  3751. }
  3752. func (m *RoleBattle) GetRewardMapLevelHard() uint32 {
  3753. if m != nil {
  3754. return m.RewardMapLevelHard
  3755. }
  3756. return 0
  3757. }
  3758. type ActorPosition struct {
  3759. Id uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  3760. Pos *Position `protobuf:"bytes,2,opt,name=pos,proto3" json:"pos,omitempty"`
  3761. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3762. XXX_unrecognized []byte `json:"-"`
  3763. XXX_sizecache int32 `json:"-"`
  3764. }
  3765. func (m *ActorPosition) Reset() { *m = ActorPosition{} }
  3766. func (m *ActorPosition) String() string { return proto.CompactTextString(m) }
  3767. func (*ActorPosition) ProtoMessage() {}
  3768. func (*ActorPosition) Descriptor() ([]byte, []int) {
  3769. return fileDescriptor_116e343673f7ffaf, []int{62}
  3770. }
  3771. func (m *ActorPosition) XXX_Unmarshal(b []byte) error {
  3772. return xxx_messageInfo_ActorPosition.Unmarshal(m, b)
  3773. }
  3774. func (m *ActorPosition) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3775. return xxx_messageInfo_ActorPosition.Marshal(b, m, deterministic)
  3776. }
  3777. func (m *ActorPosition) XXX_Merge(src proto.Message) {
  3778. xxx_messageInfo_ActorPosition.Merge(m, src)
  3779. }
  3780. func (m *ActorPosition) XXX_Size() int {
  3781. return xxx_messageInfo_ActorPosition.Size(m)
  3782. }
  3783. func (m *ActorPosition) XXX_DiscardUnknown() {
  3784. xxx_messageInfo_ActorPosition.DiscardUnknown(m)
  3785. }
  3786. var xxx_messageInfo_ActorPosition proto.InternalMessageInfo
  3787. func (m *ActorPosition) GetId() uint32 {
  3788. if m != nil {
  3789. return m.Id
  3790. }
  3791. return 0
  3792. }
  3793. func (m *ActorPosition) GetPos() *Position {
  3794. if m != nil {
  3795. return m.Pos
  3796. }
  3797. return nil
  3798. }
  3799. type RankPlayerInfo struct {
  3800. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  3801. MapLevel uint32 `protobuf:"varint,2,opt,name=map_level,json=mapLevel,proto3" json:"map_level,omitempty"`
  3802. MapId uint32 `protobuf:"varint,3,opt,name=map_id,json=mapId,proto3" json:"map_id,omitempty"`
  3803. Brief *CommonPlayerBriefInfo `protobuf:"bytes,4,opt,name=brief,proto3" json:"brief,omitempty"`
  3804. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3805. XXX_unrecognized []byte `json:"-"`
  3806. XXX_sizecache int32 `json:"-"`
  3807. }
  3808. func (m *RankPlayerInfo) Reset() { *m = RankPlayerInfo{} }
  3809. func (m *RankPlayerInfo) String() string { return proto.CompactTextString(m) }
  3810. func (*RankPlayerInfo) ProtoMessage() {}
  3811. func (*RankPlayerInfo) Descriptor() ([]byte, []int) {
  3812. return fileDescriptor_116e343673f7ffaf, []int{63}
  3813. }
  3814. func (m *RankPlayerInfo) XXX_Unmarshal(b []byte) error {
  3815. return xxx_messageInfo_RankPlayerInfo.Unmarshal(m, b)
  3816. }
  3817. func (m *RankPlayerInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3818. return xxx_messageInfo_RankPlayerInfo.Marshal(b, m, deterministic)
  3819. }
  3820. func (m *RankPlayerInfo) XXX_Merge(src proto.Message) {
  3821. xxx_messageInfo_RankPlayerInfo.Merge(m, src)
  3822. }
  3823. func (m *RankPlayerInfo) XXX_Size() int {
  3824. return xxx_messageInfo_RankPlayerInfo.Size(m)
  3825. }
  3826. func (m *RankPlayerInfo) XXX_DiscardUnknown() {
  3827. xxx_messageInfo_RankPlayerInfo.DiscardUnknown(m)
  3828. }
  3829. var xxx_messageInfo_RankPlayerInfo proto.InternalMessageInfo
  3830. func (m *RankPlayerInfo) GetUid() uint64 {
  3831. if m != nil {
  3832. return m.Uid
  3833. }
  3834. return 0
  3835. }
  3836. func (m *RankPlayerInfo) GetMapLevel() uint32 {
  3837. if m != nil {
  3838. return m.MapLevel
  3839. }
  3840. return 0
  3841. }
  3842. func (m *RankPlayerInfo) GetMapId() uint32 {
  3843. if m != nil {
  3844. return m.MapId
  3845. }
  3846. return 0
  3847. }
  3848. func (m *RankPlayerInfo) GetBrief() *CommonPlayerBriefInfo {
  3849. if m != nil {
  3850. return m.Brief
  3851. }
  3852. return nil
  3853. }
  3854. // 世界boss列表信息
  3855. type WorldBossContentInfo struct {
  3856. CfgId int32 `protobuf:"varint,1,opt,name=cfg_id,json=cfgId,proto3" json:"cfg_id,omitempty"`
  3857. BossId int32 `protobuf:"varint,3,opt,name=boss_id,json=bossId,proto3" json:"boss_id,omitempty"`
  3858. BossSummonIdx int32 `protobuf:"varint,4,opt,name=boss_summon_idx,json=bossSummonIdx,proto3" json:"boss_summon_idx,omitempty"`
  3859. Brief *CommonPlayerBriefInfo `protobuf:"bytes,5,opt,name=brief,proto3" json:"brief,omitempty"`
  3860. FighterNum int32 `protobuf:"varint,6,opt,name=fighter_num,json=fighterNum,proto3" json:"fighter_num,omitempty"`
  3861. ExpireTime uint64 `protobuf:"varint,7,opt,name=expire_time,json=expireTime,proto3" json:"expire_time,omitempty"`
  3862. TotalHp int32 `protobuf:"varint,8,opt,name=total_hp,json=totalHp,proto3" json:"total_hp,omitempty"`
  3863. CurHp int32 `protobuf:"varint,9,opt,name=cur_hp,json=curHp,proto3" json:"cur_hp,omitempty"`
  3864. IsFight bool `protobuf:"varint,10,opt,name=is_fight,json=isFight,proto3" json:"is_fight,omitempty"`
  3865. NextRefreshTime uint64 `protobuf:"varint,11,opt,name=next_refresh_time,json=nextRefreshTime,proto3" json:"next_refresh_time,omitempty"`
  3866. BossSummonType int32 `protobuf:"varint,15,opt,name=boss_summon_type,json=bossSummonType,proto3" json:"boss_summon_type,omitempty"`
  3867. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3868. XXX_unrecognized []byte `json:"-"`
  3869. XXX_sizecache int32 `json:"-"`
  3870. }
  3871. func (m *WorldBossContentInfo) Reset() { *m = WorldBossContentInfo{} }
  3872. func (m *WorldBossContentInfo) String() string { return proto.CompactTextString(m) }
  3873. func (*WorldBossContentInfo) ProtoMessage() {}
  3874. func (*WorldBossContentInfo) Descriptor() ([]byte, []int) {
  3875. return fileDescriptor_116e343673f7ffaf, []int{64}
  3876. }
  3877. func (m *WorldBossContentInfo) XXX_Unmarshal(b []byte) error {
  3878. return xxx_messageInfo_WorldBossContentInfo.Unmarshal(m, b)
  3879. }
  3880. func (m *WorldBossContentInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3881. return xxx_messageInfo_WorldBossContentInfo.Marshal(b, m, deterministic)
  3882. }
  3883. func (m *WorldBossContentInfo) XXX_Merge(src proto.Message) {
  3884. xxx_messageInfo_WorldBossContentInfo.Merge(m, src)
  3885. }
  3886. func (m *WorldBossContentInfo) XXX_Size() int {
  3887. return xxx_messageInfo_WorldBossContentInfo.Size(m)
  3888. }
  3889. func (m *WorldBossContentInfo) XXX_DiscardUnknown() {
  3890. xxx_messageInfo_WorldBossContentInfo.DiscardUnknown(m)
  3891. }
  3892. var xxx_messageInfo_WorldBossContentInfo proto.InternalMessageInfo
  3893. func (m *WorldBossContentInfo) GetCfgId() int32 {
  3894. if m != nil {
  3895. return m.CfgId
  3896. }
  3897. return 0
  3898. }
  3899. func (m *WorldBossContentInfo) GetBossId() int32 {
  3900. if m != nil {
  3901. return m.BossId
  3902. }
  3903. return 0
  3904. }
  3905. func (m *WorldBossContentInfo) GetBossSummonIdx() int32 {
  3906. if m != nil {
  3907. return m.BossSummonIdx
  3908. }
  3909. return 0
  3910. }
  3911. func (m *WorldBossContentInfo) GetBrief() *CommonPlayerBriefInfo {
  3912. if m != nil {
  3913. return m.Brief
  3914. }
  3915. return nil
  3916. }
  3917. func (m *WorldBossContentInfo) GetFighterNum() int32 {
  3918. if m != nil {
  3919. return m.FighterNum
  3920. }
  3921. return 0
  3922. }
  3923. func (m *WorldBossContentInfo) GetExpireTime() uint64 {
  3924. if m != nil {
  3925. return m.ExpireTime
  3926. }
  3927. return 0
  3928. }
  3929. func (m *WorldBossContentInfo) GetTotalHp() int32 {
  3930. if m != nil {
  3931. return m.TotalHp
  3932. }
  3933. return 0
  3934. }
  3935. func (m *WorldBossContentInfo) GetCurHp() int32 {
  3936. if m != nil {
  3937. return m.CurHp
  3938. }
  3939. return 0
  3940. }
  3941. func (m *WorldBossContentInfo) GetIsFight() bool {
  3942. if m != nil {
  3943. return m.IsFight
  3944. }
  3945. return false
  3946. }
  3947. func (m *WorldBossContentInfo) GetNextRefreshTime() uint64 {
  3948. if m != nil {
  3949. return m.NextRefreshTime
  3950. }
  3951. return 0
  3952. }
  3953. func (m *WorldBossContentInfo) GetBossSummonType() int32 {
  3954. if m != nil {
  3955. return m.BossSummonType
  3956. }
  3957. return 0
  3958. }
  3959. // 世界boss rand点数据
  3960. type PointNameInfo struct {
  3961. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  3962. Point int32 `protobuf:"varint,2,opt,name=point,proto3" json:"point,omitempty"`
  3963. Uid uint64 `protobuf:"varint,3,opt,name=uid,proto3" json:"uid,omitempty"`
  3964. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3965. XXX_unrecognized []byte `json:"-"`
  3966. XXX_sizecache int32 `json:"-"`
  3967. }
  3968. func (m *PointNameInfo) Reset() { *m = PointNameInfo{} }
  3969. func (m *PointNameInfo) String() string { return proto.CompactTextString(m) }
  3970. func (*PointNameInfo) ProtoMessage() {}
  3971. func (*PointNameInfo) Descriptor() ([]byte, []int) {
  3972. return fileDescriptor_116e343673f7ffaf, []int{65}
  3973. }
  3974. func (m *PointNameInfo) XXX_Unmarshal(b []byte) error {
  3975. return xxx_messageInfo_PointNameInfo.Unmarshal(m, b)
  3976. }
  3977. func (m *PointNameInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3978. return xxx_messageInfo_PointNameInfo.Marshal(b, m, deterministic)
  3979. }
  3980. func (m *PointNameInfo) XXX_Merge(src proto.Message) {
  3981. xxx_messageInfo_PointNameInfo.Merge(m, src)
  3982. }
  3983. func (m *PointNameInfo) XXX_Size() int {
  3984. return xxx_messageInfo_PointNameInfo.Size(m)
  3985. }
  3986. func (m *PointNameInfo) XXX_DiscardUnknown() {
  3987. xxx_messageInfo_PointNameInfo.DiscardUnknown(m)
  3988. }
  3989. var xxx_messageInfo_PointNameInfo proto.InternalMessageInfo
  3990. func (m *PointNameInfo) GetName() string {
  3991. if m != nil {
  3992. return m.Name
  3993. }
  3994. return ""
  3995. }
  3996. func (m *PointNameInfo) GetPoint() int32 {
  3997. if m != nil {
  3998. return m.Point
  3999. }
  4000. return 0
  4001. }
  4002. func (m *PointNameInfo) GetUid() uint64 {
  4003. if m != nil {
  4004. return m.Uid
  4005. }
  4006. return 0
  4007. }
  4008. type WorldBossRandPointInfo struct {
  4009. RewardList []int32 `protobuf:"varint,1,rep,packed,name=reward_list,json=rewardList,proto3" json:"reward_list,omitempty"`
  4010. BossId int32 `protobuf:"varint,2,opt,name=boss_id,json=bossId,proto3" json:"boss_id,omitempty"`
  4011. BossSummonIdx int32 `protobuf:"varint,3,opt,name=boss_summon_idx,json=bossSummonIdx,proto3" json:"boss_summon_idx,omitempty"`
  4012. BossSummonType int32 `protobuf:"varint,4,opt,name=boss_summon_type,json=bossSummonType,proto3" json:"boss_summon_type,omitempty"`
  4013. IsOffline bool `protobuf:"varint,5,opt,name=isOffline,proto3" json:"isOffline,omitempty"`
  4014. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4015. XXX_unrecognized []byte `json:"-"`
  4016. XXX_sizecache int32 `json:"-"`
  4017. }
  4018. func (m *WorldBossRandPointInfo) Reset() { *m = WorldBossRandPointInfo{} }
  4019. func (m *WorldBossRandPointInfo) String() string { return proto.CompactTextString(m) }
  4020. func (*WorldBossRandPointInfo) ProtoMessage() {}
  4021. func (*WorldBossRandPointInfo) Descriptor() ([]byte, []int) {
  4022. return fileDescriptor_116e343673f7ffaf, []int{66}
  4023. }
  4024. func (m *WorldBossRandPointInfo) XXX_Unmarshal(b []byte) error {
  4025. return xxx_messageInfo_WorldBossRandPointInfo.Unmarshal(m, b)
  4026. }
  4027. func (m *WorldBossRandPointInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4028. return xxx_messageInfo_WorldBossRandPointInfo.Marshal(b, m, deterministic)
  4029. }
  4030. func (m *WorldBossRandPointInfo) XXX_Merge(src proto.Message) {
  4031. xxx_messageInfo_WorldBossRandPointInfo.Merge(m, src)
  4032. }
  4033. func (m *WorldBossRandPointInfo) XXX_Size() int {
  4034. return xxx_messageInfo_WorldBossRandPointInfo.Size(m)
  4035. }
  4036. func (m *WorldBossRandPointInfo) XXX_DiscardUnknown() {
  4037. xxx_messageInfo_WorldBossRandPointInfo.DiscardUnknown(m)
  4038. }
  4039. var xxx_messageInfo_WorldBossRandPointInfo proto.InternalMessageInfo
  4040. func (m *WorldBossRandPointInfo) GetRewardList() []int32 {
  4041. if m != nil {
  4042. return m.RewardList
  4043. }
  4044. return nil
  4045. }
  4046. func (m *WorldBossRandPointInfo) GetBossId() int32 {
  4047. if m != nil {
  4048. return m.BossId
  4049. }
  4050. return 0
  4051. }
  4052. func (m *WorldBossRandPointInfo) GetBossSummonIdx() int32 {
  4053. if m != nil {
  4054. return m.BossSummonIdx
  4055. }
  4056. return 0
  4057. }
  4058. func (m *WorldBossRandPointInfo) GetBossSummonType() int32 {
  4059. if m != nil {
  4060. return m.BossSummonType
  4061. }
  4062. return 0
  4063. }
  4064. func (m *WorldBossRandPointInfo) GetIsOffline() bool {
  4065. if m != nil {
  4066. return m.IsOffline
  4067. }
  4068. return false
  4069. }
  4070. // //////////////////////Task
  4071. // key value 类型
  4072. type TaskProgressType struct {
  4073. Key int32 `protobuf:"varint,1,opt,name=key,proto3" json:"key,omitempty"`
  4074. Value int32 `protobuf:"varint,2,opt,name=value,proto3" json:"value,omitempty"`
  4075. State int32 `protobuf:"varint,3,opt,name=state,proto3" json:"state,omitempty"`
  4076. Total uint32 `protobuf:"varint,4,opt,name=total,proto3" json:"total,omitempty"`
  4077. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4078. XXX_unrecognized []byte `json:"-"`
  4079. XXX_sizecache int32 `json:"-"`
  4080. }
  4081. func (m *TaskProgressType) Reset() { *m = TaskProgressType{} }
  4082. func (m *TaskProgressType) String() string { return proto.CompactTextString(m) }
  4083. func (*TaskProgressType) ProtoMessage() {}
  4084. func (*TaskProgressType) Descriptor() ([]byte, []int) {
  4085. return fileDescriptor_116e343673f7ffaf, []int{67}
  4086. }
  4087. func (m *TaskProgressType) XXX_Unmarshal(b []byte) error {
  4088. return xxx_messageInfo_TaskProgressType.Unmarshal(m, b)
  4089. }
  4090. func (m *TaskProgressType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4091. return xxx_messageInfo_TaskProgressType.Marshal(b, m, deterministic)
  4092. }
  4093. func (m *TaskProgressType) XXX_Merge(src proto.Message) {
  4094. xxx_messageInfo_TaskProgressType.Merge(m, src)
  4095. }
  4096. func (m *TaskProgressType) XXX_Size() int {
  4097. return xxx_messageInfo_TaskProgressType.Size(m)
  4098. }
  4099. func (m *TaskProgressType) XXX_DiscardUnknown() {
  4100. xxx_messageInfo_TaskProgressType.DiscardUnknown(m)
  4101. }
  4102. var xxx_messageInfo_TaskProgressType proto.InternalMessageInfo
  4103. func (m *TaskProgressType) GetKey() int32 {
  4104. if m != nil {
  4105. return m.Key
  4106. }
  4107. return 0
  4108. }
  4109. func (m *TaskProgressType) GetValue() int32 {
  4110. if m != nil {
  4111. return m.Value
  4112. }
  4113. return 0
  4114. }
  4115. func (m *TaskProgressType) GetState() int32 {
  4116. if m != nil {
  4117. return m.State
  4118. }
  4119. return 0
  4120. }
  4121. func (m *TaskProgressType) GetTotal() uint32 {
  4122. if m != nil {
  4123. return m.Total
  4124. }
  4125. return 0
  4126. }
  4127. type TaskData struct {
  4128. TaskId uint32 `protobuf:"varint,1,opt,name=task_id,json=taskId,proto3" json:"task_id,omitempty"`
  4129. Progress []*TaskProgressType `protobuf:"bytes,2,rep,name=progress,proto3" json:"progress,omitempty"`
  4130. State uint32 `protobuf:"varint,3,opt,name=state,proto3" json:"state,omitempty"`
  4131. BeginTime uint64 `protobuf:"varint,4,opt,name=begin_time,json=beginTime,proto3" json:"begin_time,omitempty"`
  4132. TaskType int32 `protobuf:"varint,5,opt,name=task_type,json=taskType,proto3" json:"task_type,omitempty"`
  4133. HardState int32 `protobuf:"varint,6,opt,name=hard_state,json=hardState,proto3" json:"hard_state,omitempty"`
  4134. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4135. XXX_unrecognized []byte `json:"-"`
  4136. XXX_sizecache int32 `json:"-"`
  4137. }
  4138. func (m *TaskData) Reset() { *m = TaskData{} }
  4139. func (m *TaskData) String() string { return proto.CompactTextString(m) }
  4140. func (*TaskData) ProtoMessage() {}
  4141. func (*TaskData) Descriptor() ([]byte, []int) {
  4142. return fileDescriptor_116e343673f7ffaf, []int{68}
  4143. }
  4144. func (m *TaskData) XXX_Unmarshal(b []byte) error {
  4145. return xxx_messageInfo_TaskData.Unmarshal(m, b)
  4146. }
  4147. func (m *TaskData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4148. return xxx_messageInfo_TaskData.Marshal(b, m, deterministic)
  4149. }
  4150. func (m *TaskData) XXX_Merge(src proto.Message) {
  4151. xxx_messageInfo_TaskData.Merge(m, src)
  4152. }
  4153. func (m *TaskData) XXX_Size() int {
  4154. return xxx_messageInfo_TaskData.Size(m)
  4155. }
  4156. func (m *TaskData) XXX_DiscardUnknown() {
  4157. xxx_messageInfo_TaskData.DiscardUnknown(m)
  4158. }
  4159. var xxx_messageInfo_TaskData proto.InternalMessageInfo
  4160. func (m *TaskData) GetTaskId() uint32 {
  4161. if m != nil {
  4162. return m.TaskId
  4163. }
  4164. return 0
  4165. }
  4166. func (m *TaskData) GetProgress() []*TaskProgressType {
  4167. if m != nil {
  4168. return m.Progress
  4169. }
  4170. return nil
  4171. }
  4172. func (m *TaskData) GetState() uint32 {
  4173. if m != nil {
  4174. return m.State
  4175. }
  4176. return 0
  4177. }
  4178. func (m *TaskData) GetBeginTime() uint64 {
  4179. if m != nil {
  4180. return m.BeginTime
  4181. }
  4182. return 0
  4183. }
  4184. func (m *TaskData) GetTaskType() int32 {
  4185. if m != nil {
  4186. return m.TaskType
  4187. }
  4188. return 0
  4189. }
  4190. func (m *TaskData) GetHardState() int32 {
  4191. if m != nil {
  4192. return m.HardState
  4193. }
  4194. return 0
  4195. }
  4196. type HeadCond struct {
  4197. HeadId int32 `protobuf:"varint,1,opt,name=head_id,json=headId,proto3" json:"head_id,omitempty"`
  4198. TaskList []*TaskData `protobuf:"bytes,2,rep,name=task_list,json=taskList,proto3" json:"task_list,omitempty"`
  4199. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4200. XXX_unrecognized []byte `json:"-"`
  4201. XXX_sizecache int32 `json:"-"`
  4202. }
  4203. func (m *HeadCond) Reset() { *m = HeadCond{} }
  4204. func (m *HeadCond) String() string { return proto.CompactTextString(m) }
  4205. func (*HeadCond) ProtoMessage() {}
  4206. func (*HeadCond) Descriptor() ([]byte, []int) {
  4207. return fileDescriptor_116e343673f7ffaf, []int{69}
  4208. }
  4209. func (m *HeadCond) XXX_Unmarshal(b []byte) error {
  4210. return xxx_messageInfo_HeadCond.Unmarshal(m, b)
  4211. }
  4212. func (m *HeadCond) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4213. return xxx_messageInfo_HeadCond.Marshal(b, m, deterministic)
  4214. }
  4215. func (m *HeadCond) XXX_Merge(src proto.Message) {
  4216. xxx_messageInfo_HeadCond.Merge(m, src)
  4217. }
  4218. func (m *HeadCond) XXX_Size() int {
  4219. return xxx_messageInfo_HeadCond.Size(m)
  4220. }
  4221. func (m *HeadCond) XXX_DiscardUnknown() {
  4222. xxx_messageInfo_HeadCond.DiscardUnknown(m)
  4223. }
  4224. var xxx_messageInfo_HeadCond proto.InternalMessageInfo
  4225. func (m *HeadCond) GetHeadId() int32 {
  4226. if m != nil {
  4227. return m.HeadId
  4228. }
  4229. return 0
  4230. }
  4231. func (m *HeadCond) GetTaskList() []*TaskData {
  4232. if m != nil {
  4233. return m.TaskList
  4234. }
  4235. return nil
  4236. }
  4237. type RoleHeadCond struct {
  4238. Conditions []*HeadCond `protobuf:"bytes,1,rep,name=conditions,proto3" json:"conditions,omitempty"`
  4239. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4240. XXX_unrecognized []byte `json:"-"`
  4241. XXX_sizecache int32 `json:"-"`
  4242. }
  4243. func (m *RoleHeadCond) Reset() { *m = RoleHeadCond{} }
  4244. func (m *RoleHeadCond) String() string { return proto.CompactTextString(m) }
  4245. func (*RoleHeadCond) ProtoMessage() {}
  4246. func (*RoleHeadCond) Descriptor() ([]byte, []int) {
  4247. return fileDescriptor_116e343673f7ffaf, []int{70}
  4248. }
  4249. func (m *RoleHeadCond) XXX_Unmarshal(b []byte) error {
  4250. return xxx_messageInfo_RoleHeadCond.Unmarshal(m, b)
  4251. }
  4252. func (m *RoleHeadCond) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4253. return xxx_messageInfo_RoleHeadCond.Marshal(b, m, deterministic)
  4254. }
  4255. func (m *RoleHeadCond) XXX_Merge(src proto.Message) {
  4256. xxx_messageInfo_RoleHeadCond.Merge(m, src)
  4257. }
  4258. func (m *RoleHeadCond) XXX_Size() int {
  4259. return xxx_messageInfo_RoleHeadCond.Size(m)
  4260. }
  4261. func (m *RoleHeadCond) XXX_DiscardUnknown() {
  4262. xxx_messageInfo_RoleHeadCond.DiscardUnknown(m)
  4263. }
  4264. var xxx_messageInfo_RoleHeadCond proto.InternalMessageInfo
  4265. func (m *RoleHeadCond) GetConditions() []*HeadCond {
  4266. if m != nil {
  4267. return m.Conditions
  4268. }
  4269. return nil
  4270. }
  4271. type HeroCond struct {
  4272. HeroId int32 `protobuf:"varint,1,opt,name=hero_id,json=heroId,proto3" json:"hero_id,omitempty"`
  4273. TaskList []*TaskData `protobuf:"bytes,2,rep,name=task_list,json=taskList,proto3" json:"task_list,omitempty"`
  4274. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4275. XXX_unrecognized []byte `json:"-"`
  4276. XXX_sizecache int32 `json:"-"`
  4277. }
  4278. func (m *HeroCond) Reset() { *m = HeroCond{} }
  4279. func (m *HeroCond) String() string { return proto.CompactTextString(m) }
  4280. func (*HeroCond) ProtoMessage() {}
  4281. func (*HeroCond) Descriptor() ([]byte, []int) {
  4282. return fileDescriptor_116e343673f7ffaf, []int{71}
  4283. }
  4284. func (m *HeroCond) XXX_Unmarshal(b []byte) error {
  4285. return xxx_messageInfo_HeroCond.Unmarshal(m, b)
  4286. }
  4287. func (m *HeroCond) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4288. return xxx_messageInfo_HeroCond.Marshal(b, m, deterministic)
  4289. }
  4290. func (m *HeroCond) XXX_Merge(src proto.Message) {
  4291. xxx_messageInfo_HeroCond.Merge(m, src)
  4292. }
  4293. func (m *HeroCond) XXX_Size() int {
  4294. return xxx_messageInfo_HeroCond.Size(m)
  4295. }
  4296. func (m *HeroCond) XXX_DiscardUnknown() {
  4297. xxx_messageInfo_HeroCond.DiscardUnknown(m)
  4298. }
  4299. var xxx_messageInfo_HeroCond proto.InternalMessageInfo
  4300. func (m *HeroCond) GetHeroId() int32 {
  4301. if m != nil {
  4302. return m.HeroId
  4303. }
  4304. return 0
  4305. }
  4306. func (m *HeroCond) GetTaskList() []*TaskData {
  4307. if m != nil {
  4308. return m.TaskList
  4309. }
  4310. return nil
  4311. }
  4312. type RoleHeroCond struct {
  4313. Conditions []*HeroCond `protobuf:"bytes,1,rep,name=conditions,proto3" json:"conditions,omitempty"`
  4314. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4315. XXX_unrecognized []byte `json:"-"`
  4316. XXX_sizecache int32 `json:"-"`
  4317. }
  4318. func (m *RoleHeroCond) Reset() { *m = RoleHeroCond{} }
  4319. func (m *RoleHeroCond) String() string { return proto.CompactTextString(m) }
  4320. func (*RoleHeroCond) ProtoMessage() {}
  4321. func (*RoleHeroCond) Descriptor() ([]byte, []int) {
  4322. return fileDescriptor_116e343673f7ffaf, []int{72}
  4323. }
  4324. func (m *RoleHeroCond) XXX_Unmarshal(b []byte) error {
  4325. return xxx_messageInfo_RoleHeroCond.Unmarshal(m, b)
  4326. }
  4327. func (m *RoleHeroCond) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4328. return xxx_messageInfo_RoleHeroCond.Marshal(b, m, deterministic)
  4329. }
  4330. func (m *RoleHeroCond) XXX_Merge(src proto.Message) {
  4331. xxx_messageInfo_RoleHeroCond.Merge(m, src)
  4332. }
  4333. func (m *RoleHeroCond) XXX_Size() int {
  4334. return xxx_messageInfo_RoleHeroCond.Size(m)
  4335. }
  4336. func (m *RoleHeroCond) XXX_DiscardUnknown() {
  4337. xxx_messageInfo_RoleHeroCond.DiscardUnknown(m)
  4338. }
  4339. var xxx_messageInfo_RoleHeroCond proto.InternalMessageInfo
  4340. func (m *RoleHeroCond) GetConditions() []*HeroCond {
  4341. if m != nil {
  4342. return m.Conditions
  4343. }
  4344. return nil
  4345. }
  4346. type RoleTask struct {
  4347. TaskList []*TaskData `protobuf:"bytes,1,rep,name=task_list,json=taskList,proto3" json:"task_list,omitempty"`
  4348. Condition []*ChangeJob `protobuf:"bytes,2,rep,name=condition,proto3" json:"condition,omitempty"`
  4349. HeadCond *RoleHeadCond `protobuf:"bytes,3,opt,name=head_cond,json=headCond,proto3" json:"head_cond,omitempty"`
  4350. HeroCond *RoleHeroCond `protobuf:"bytes,4,opt,name=hero_cond,json=heroCond,proto3" json:"hero_cond,omitempty"`
  4351. DailyTaskScore *KeyValueType `protobuf:"bytes,5,opt,name=daily_task_score,json=dailyTaskScore,proto3" json:"daily_task_score,omitempty"`
  4352. WeekTaskScore *KeyValueType `protobuf:"bytes,6,opt,name=week_task_score,json=weekTaskScore,proto3" json:"week_task_score,omitempty"`
  4353. // 任务通用累计计数
  4354. TotalAddZeny uint64 `protobuf:"varint,7,opt,name=total_add_zeny,json=totalAddZeny,proto3" json:"total_add_zeny,omitempty"`
  4355. AccumulativeCardMvp int32 `protobuf:"varint,8,opt,name=accumulative_card_mvp,json=accumulativeCardMvp,proto3" json:"accumulative_card_mvp,omitempty"`
  4356. Latest5HourTime uint64 `protobuf:"varint,9,opt,name=latest5_hour_time,json=latest5HourTime,proto3" json:"latest5_hour_time,omitempty"`
  4357. LatestWeek5HourTime uint64 `protobuf:"varint,10,opt,name=latest_week5_hour_time,json=latestWeek5HourTime,proto3" json:"latest_week5_hour_time,omitempty"`
  4358. TypeRecCount []*KeyValueType `protobuf:"bytes,11,rep,name=type_rec_count,json=typeRecCount,proto3" json:"type_rec_count,omitempty"`
  4359. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4360. XXX_unrecognized []byte `json:"-"`
  4361. XXX_sizecache int32 `json:"-"`
  4362. }
  4363. func (m *RoleTask) Reset() { *m = RoleTask{} }
  4364. func (m *RoleTask) String() string { return proto.CompactTextString(m) }
  4365. func (*RoleTask) ProtoMessage() {}
  4366. func (*RoleTask) Descriptor() ([]byte, []int) {
  4367. return fileDescriptor_116e343673f7ffaf, []int{73}
  4368. }
  4369. func (m *RoleTask) XXX_Unmarshal(b []byte) error {
  4370. return xxx_messageInfo_RoleTask.Unmarshal(m, b)
  4371. }
  4372. func (m *RoleTask) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4373. return xxx_messageInfo_RoleTask.Marshal(b, m, deterministic)
  4374. }
  4375. func (m *RoleTask) XXX_Merge(src proto.Message) {
  4376. xxx_messageInfo_RoleTask.Merge(m, src)
  4377. }
  4378. func (m *RoleTask) XXX_Size() int {
  4379. return xxx_messageInfo_RoleTask.Size(m)
  4380. }
  4381. func (m *RoleTask) XXX_DiscardUnknown() {
  4382. xxx_messageInfo_RoleTask.DiscardUnknown(m)
  4383. }
  4384. var xxx_messageInfo_RoleTask proto.InternalMessageInfo
  4385. func (m *RoleTask) GetTaskList() []*TaskData {
  4386. if m != nil {
  4387. return m.TaskList
  4388. }
  4389. return nil
  4390. }
  4391. func (m *RoleTask) GetCondition() []*ChangeJob {
  4392. if m != nil {
  4393. return m.Condition
  4394. }
  4395. return nil
  4396. }
  4397. func (m *RoleTask) GetHeadCond() *RoleHeadCond {
  4398. if m != nil {
  4399. return m.HeadCond
  4400. }
  4401. return nil
  4402. }
  4403. func (m *RoleTask) GetHeroCond() *RoleHeroCond {
  4404. if m != nil {
  4405. return m.HeroCond
  4406. }
  4407. return nil
  4408. }
  4409. func (m *RoleTask) GetDailyTaskScore() *KeyValueType {
  4410. if m != nil {
  4411. return m.DailyTaskScore
  4412. }
  4413. return nil
  4414. }
  4415. func (m *RoleTask) GetWeekTaskScore() *KeyValueType {
  4416. if m != nil {
  4417. return m.WeekTaskScore
  4418. }
  4419. return nil
  4420. }
  4421. func (m *RoleTask) GetTotalAddZeny() uint64 {
  4422. if m != nil {
  4423. return m.TotalAddZeny
  4424. }
  4425. return 0
  4426. }
  4427. func (m *RoleTask) GetAccumulativeCardMvp() int32 {
  4428. if m != nil {
  4429. return m.AccumulativeCardMvp
  4430. }
  4431. return 0
  4432. }
  4433. func (m *RoleTask) GetLatest5HourTime() uint64 {
  4434. if m != nil {
  4435. return m.Latest5HourTime
  4436. }
  4437. return 0
  4438. }
  4439. func (m *RoleTask) GetLatestWeek5HourTime() uint64 {
  4440. if m != nil {
  4441. return m.LatestWeek5HourTime
  4442. }
  4443. return 0
  4444. }
  4445. func (m *RoleTask) GetTypeRecCount() []*KeyValueType {
  4446. if m != nil {
  4447. return m.TypeRecCount
  4448. }
  4449. return nil
  4450. }
  4451. type SlotFightPower struct {
  4452. HeroId int32 `protobuf:"varint,1,opt,name=hero_id,json=heroId,proto3" json:"hero_id,omitempty"`
  4453. HeroFightPower uint64 `protobuf:"varint,2,opt,name=hero_fight_power,json=heroFightPower,proto3" json:"hero_fight_power,omitempty"`
  4454. PetFightPower uint64 `protobuf:"varint,3,opt,name=pet_fight_power,json=petFightPower,proto3" json:"pet_fight_power,omitempty"`
  4455. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4456. XXX_unrecognized []byte `json:"-"`
  4457. XXX_sizecache int32 `json:"-"`
  4458. }
  4459. func (m *SlotFightPower) Reset() { *m = SlotFightPower{} }
  4460. func (m *SlotFightPower) String() string { return proto.CompactTextString(m) }
  4461. func (*SlotFightPower) ProtoMessage() {}
  4462. func (*SlotFightPower) Descriptor() ([]byte, []int) {
  4463. return fileDescriptor_116e343673f7ffaf, []int{74}
  4464. }
  4465. func (m *SlotFightPower) XXX_Unmarshal(b []byte) error {
  4466. return xxx_messageInfo_SlotFightPower.Unmarshal(m, b)
  4467. }
  4468. func (m *SlotFightPower) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4469. return xxx_messageInfo_SlotFightPower.Marshal(b, m, deterministic)
  4470. }
  4471. func (m *SlotFightPower) XXX_Merge(src proto.Message) {
  4472. xxx_messageInfo_SlotFightPower.Merge(m, src)
  4473. }
  4474. func (m *SlotFightPower) XXX_Size() int {
  4475. return xxx_messageInfo_SlotFightPower.Size(m)
  4476. }
  4477. func (m *SlotFightPower) XXX_DiscardUnknown() {
  4478. xxx_messageInfo_SlotFightPower.DiscardUnknown(m)
  4479. }
  4480. var xxx_messageInfo_SlotFightPower proto.InternalMessageInfo
  4481. func (m *SlotFightPower) GetHeroId() int32 {
  4482. if m != nil {
  4483. return m.HeroId
  4484. }
  4485. return 0
  4486. }
  4487. func (m *SlotFightPower) GetHeroFightPower() uint64 {
  4488. if m != nil {
  4489. return m.HeroFightPower
  4490. }
  4491. return 0
  4492. }
  4493. func (m *SlotFightPower) GetPetFightPower() uint64 {
  4494. if m != nil {
  4495. return m.PetFightPower
  4496. }
  4497. return 0
  4498. }
  4499. type FightPowerData struct {
  4500. TotalFightpower uint32 `protobuf:"varint,1,opt,name=total_fightpower,json=totalFightpower,proto3" json:"total_fightpower,omitempty"`
  4501. SlotFightpower []*SlotFightPower `protobuf:"bytes,2,rep,name=slot_fightpower,json=slotFightpower,proto3" json:"slot_fightpower,omitempty"`
  4502. PetBondFightpower uint32 `protobuf:"varint,3,opt,name=pet_bond_fightpower,json=petBondFightpower,proto3" json:"pet_bond_fightpower,omitempty"`
  4503. ActorFightpower []*SlotFightPower `protobuf:"bytes,4,rep,name=actor_fightpower,json=actorFightpower,proto3" json:"actor_fightpower,omitempty"`
  4504. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4505. XXX_unrecognized []byte `json:"-"`
  4506. XXX_sizecache int32 `json:"-"`
  4507. }
  4508. func (m *FightPowerData) Reset() { *m = FightPowerData{} }
  4509. func (m *FightPowerData) String() string { return proto.CompactTextString(m) }
  4510. func (*FightPowerData) ProtoMessage() {}
  4511. func (*FightPowerData) Descriptor() ([]byte, []int) {
  4512. return fileDescriptor_116e343673f7ffaf, []int{75}
  4513. }
  4514. func (m *FightPowerData) XXX_Unmarshal(b []byte) error {
  4515. return xxx_messageInfo_FightPowerData.Unmarshal(m, b)
  4516. }
  4517. func (m *FightPowerData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4518. return xxx_messageInfo_FightPowerData.Marshal(b, m, deterministic)
  4519. }
  4520. func (m *FightPowerData) XXX_Merge(src proto.Message) {
  4521. xxx_messageInfo_FightPowerData.Merge(m, src)
  4522. }
  4523. func (m *FightPowerData) XXX_Size() int {
  4524. return xxx_messageInfo_FightPowerData.Size(m)
  4525. }
  4526. func (m *FightPowerData) XXX_DiscardUnknown() {
  4527. xxx_messageInfo_FightPowerData.DiscardUnknown(m)
  4528. }
  4529. var xxx_messageInfo_FightPowerData proto.InternalMessageInfo
  4530. func (m *FightPowerData) GetTotalFightpower() uint32 {
  4531. if m != nil {
  4532. return m.TotalFightpower
  4533. }
  4534. return 0
  4535. }
  4536. func (m *FightPowerData) GetSlotFightpower() []*SlotFightPower {
  4537. if m != nil {
  4538. return m.SlotFightpower
  4539. }
  4540. return nil
  4541. }
  4542. func (m *FightPowerData) GetPetBondFightpower() uint32 {
  4543. if m != nil {
  4544. return m.PetBondFightpower
  4545. }
  4546. return 0
  4547. }
  4548. func (m *FightPowerData) GetActorFightpower() []*SlotFightPower {
  4549. if m != nil {
  4550. return m.ActorFightpower
  4551. }
  4552. return nil
  4553. }
  4554. // //////////////////////Arena
  4555. type RushArena struct {
  4556. RushRound int32 `protobuf:"varint,1,opt,name=rush_round,json=rushRound,proto3" json:"rush_round,omitempty"`
  4557. Count int32 `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"`
  4558. Reward int32 `protobuf:"varint,3,opt,name=reward,proto3" json:"reward,omitempty"`
  4559. RankReward int32 `protobuf:"varint,4,opt,name=rank_reward,json=rankReward,proto3" json:"rank_reward,omitempty"`
  4560. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4561. XXX_unrecognized []byte `json:"-"`
  4562. XXX_sizecache int32 `json:"-"`
  4563. }
  4564. func (m *RushArena) Reset() { *m = RushArena{} }
  4565. func (m *RushArena) String() string { return proto.CompactTextString(m) }
  4566. func (*RushArena) ProtoMessage() {}
  4567. func (*RushArena) Descriptor() ([]byte, []int) {
  4568. return fileDescriptor_116e343673f7ffaf, []int{76}
  4569. }
  4570. func (m *RushArena) XXX_Unmarshal(b []byte) error {
  4571. return xxx_messageInfo_RushArena.Unmarshal(m, b)
  4572. }
  4573. func (m *RushArena) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4574. return xxx_messageInfo_RushArena.Marshal(b, m, deterministic)
  4575. }
  4576. func (m *RushArena) XXX_Merge(src proto.Message) {
  4577. xxx_messageInfo_RushArena.Merge(m, src)
  4578. }
  4579. func (m *RushArena) XXX_Size() int {
  4580. return xxx_messageInfo_RushArena.Size(m)
  4581. }
  4582. func (m *RushArena) XXX_DiscardUnknown() {
  4583. xxx_messageInfo_RushArena.DiscardUnknown(m)
  4584. }
  4585. var xxx_messageInfo_RushArena proto.InternalMessageInfo
  4586. func (m *RushArena) GetRushRound() int32 {
  4587. if m != nil {
  4588. return m.RushRound
  4589. }
  4590. return 0
  4591. }
  4592. func (m *RushArena) GetCount() int32 {
  4593. if m != nil {
  4594. return m.Count
  4595. }
  4596. return 0
  4597. }
  4598. func (m *RushArena) GetReward() int32 {
  4599. if m != nil {
  4600. return m.Reward
  4601. }
  4602. return 0
  4603. }
  4604. func (m *RushArena) GetRankReward() int32 {
  4605. if m != nil {
  4606. return m.RankReward
  4607. }
  4608. return 0
  4609. }
  4610. type ArenaInfo struct {
  4611. ChallengeCount int32 `protobuf:"varint,1,opt,name=challenge_count,json=challengeCount,proto3" json:"challenge_count,omitempty"`
  4612. RewardCount int32 `protobuf:"varint,2,opt,name=reward_count,json=rewardCount,proto3" json:"reward_count,omitempty"`
  4613. BuyCount int32 `protobuf:"varint,3,opt,name=buy_count,json=buyCount,proto3" json:"buy_count,omitempty"`
  4614. Score int32 `protobuf:"varint,4,opt,name=score,proto3" json:"score,omitempty"`
  4615. WinCount int32 `protobuf:"varint,5,opt,name=win_count,json=winCount,proto3" json:"win_count,omitempty"`
  4616. TotalCount int32 `protobuf:"varint,6,opt,name=total_count,json=totalCount,proto3" json:"total_count,omitempty"`
  4617. OldScore int32 `protobuf:"varint,7,opt,name=old_score,json=oldScore,proto3" json:"old_score,omitempty"`
  4618. WinStreak int32 `protobuf:"varint,8,opt,name=win_streak,json=winStreak,proto3" json:"win_streak,omitempty"`
  4619. FailedStreak int32 `protobuf:"varint,9,opt,name=failed_streak,json=failedStreak,proto3" json:"failed_streak,omitempty"`
  4620. LastChallengePlayer uint64 `protobuf:"varint,10,opt,name=last_challenge_player,json=lastChallengePlayer,proto3" json:"last_challenge_player,omitempty"`
  4621. SelfHeroList []int32 `protobuf:"varint,11,rep,packed,name=self_hero_list,json=selfHeroList,proto3" json:"self_hero_list,omitempty"`
  4622. ArenaSeasonId int32 `protobuf:"varint,12,opt,name=arena_season_id,json=arenaSeasonId,proto3" json:"arena_season_id,omitempty"`
  4623. LastArenaSeasonTime uint64 `protobuf:"varint,13,opt,name=last_arena_season_time,json=lastArenaSeasonTime,proto3" json:"last_arena_season_time,omitempty"`
  4624. // 历史记录换赛季不清空
  4625. RecordWinCount int32 `protobuf:"varint,14,opt,name=record_win_count,json=recordWinCount,proto3" json:"record_win_count,omitempty"`
  4626. RecordTotalCount int32 `protobuf:"varint,15,opt,name=record_total_count,json=recordTotalCount,proto3" json:"record_total_count,omitempty"`
  4627. RushArena *RushArena `protobuf:"bytes,16,opt,name=rush_arena,json=rushArena,proto3" json:"rush_arena,omitempty"`
  4628. ArenaSeasonIdReduce int32 `protobuf:"varint,17,opt,name=arena_season_id_reduce,json=arenaSeasonIdReduce,proto3" json:"arena_season_id_reduce,omitempty"`
  4629. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4630. XXX_unrecognized []byte `json:"-"`
  4631. XXX_sizecache int32 `json:"-"`
  4632. }
  4633. func (m *ArenaInfo) Reset() { *m = ArenaInfo{} }
  4634. func (m *ArenaInfo) String() string { return proto.CompactTextString(m) }
  4635. func (*ArenaInfo) ProtoMessage() {}
  4636. func (*ArenaInfo) Descriptor() ([]byte, []int) {
  4637. return fileDescriptor_116e343673f7ffaf, []int{77}
  4638. }
  4639. func (m *ArenaInfo) XXX_Unmarshal(b []byte) error {
  4640. return xxx_messageInfo_ArenaInfo.Unmarshal(m, b)
  4641. }
  4642. func (m *ArenaInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4643. return xxx_messageInfo_ArenaInfo.Marshal(b, m, deterministic)
  4644. }
  4645. func (m *ArenaInfo) XXX_Merge(src proto.Message) {
  4646. xxx_messageInfo_ArenaInfo.Merge(m, src)
  4647. }
  4648. func (m *ArenaInfo) XXX_Size() int {
  4649. return xxx_messageInfo_ArenaInfo.Size(m)
  4650. }
  4651. func (m *ArenaInfo) XXX_DiscardUnknown() {
  4652. xxx_messageInfo_ArenaInfo.DiscardUnknown(m)
  4653. }
  4654. var xxx_messageInfo_ArenaInfo proto.InternalMessageInfo
  4655. func (m *ArenaInfo) GetChallengeCount() int32 {
  4656. if m != nil {
  4657. return m.ChallengeCount
  4658. }
  4659. return 0
  4660. }
  4661. func (m *ArenaInfo) GetRewardCount() int32 {
  4662. if m != nil {
  4663. return m.RewardCount
  4664. }
  4665. return 0
  4666. }
  4667. func (m *ArenaInfo) GetBuyCount() int32 {
  4668. if m != nil {
  4669. return m.BuyCount
  4670. }
  4671. return 0
  4672. }
  4673. func (m *ArenaInfo) GetScore() int32 {
  4674. if m != nil {
  4675. return m.Score
  4676. }
  4677. return 0
  4678. }
  4679. func (m *ArenaInfo) GetWinCount() int32 {
  4680. if m != nil {
  4681. return m.WinCount
  4682. }
  4683. return 0
  4684. }
  4685. func (m *ArenaInfo) GetTotalCount() int32 {
  4686. if m != nil {
  4687. return m.TotalCount
  4688. }
  4689. return 0
  4690. }
  4691. func (m *ArenaInfo) GetOldScore() int32 {
  4692. if m != nil {
  4693. return m.OldScore
  4694. }
  4695. return 0
  4696. }
  4697. func (m *ArenaInfo) GetWinStreak() int32 {
  4698. if m != nil {
  4699. return m.WinStreak
  4700. }
  4701. return 0
  4702. }
  4703. func (m *ArenaInfo) GetFailedStreak() int32 {
  4704. if m != nil {
  4705. return m.FailedStreak
  4706. }
  4707. return 0
  4708. }
  4709. func (m *ArenaInfo) GetLastChallengePlayer() uint64 {
  4710. if m != nil {
  4711. return m.LastChallengePlayer
  4712. }
  4713. return 0
  4714. }
  4715. func (m *ArenaInfo) GetSelfHeroList() []int32 {
  4716. if m != nil {
  4717. return m.SelfHeroList
  4718. }
  4719. return nil
  4720. }
  4721. func (m *ArenaInfo) GetArenaSeasonId() int32 {
  4722. if m != nil {
  4723. return m.ArenaSeasonId
  4724. }
  4725. return 0
  4726. }
  4727. func (m *ArenaInfo) GetLastArenaSeasonTime() uint64 {
  4728. if m != nil {
  4729. return m.LastArenaSeasonTime
  4730. }
  4731. return 0
  4732. }
  4733. func (m *ArenaInfo) GetRecordWinCount() int32 {
  4734. if m != nil {
  4735. return m.RecordWinCount
  4736. }
  4737. return 0
  4738. }
  4739. func (m *ArenaInfo) GetRecordTotalCount() int32 {
  4740. if m != nil {
  4741. return m.RecordTotalCount
  4742. }
  4743. return 0
  4744. }
  4745. func (m *ArenaInfo) GetRushArena() *RushArena {
  4746. if m != nil {
  4747. return m.RushArena
  4748. }
  4749. return nil
  4750. }
  4751. func (m *ArenaInfo) GetArenaSeasonIdReduce() int32 {
  4752. if m != nil {
  4753. return m.ArenaSeasonIdReduce
  4754. }
  4755. return 0
  4756. }
  4757. // 道场排行信息
  4758. type ArenaRankInfo struct {
  4759. Rank int32 `protobuf:"varint,1,opt,name=rank,proto3" json:"rank,omitempty"`
  4760. BriefInfo *CommonPlayerBriefInfo `protobuf:"bytes,2,opt,name=brief_info,json=briefInfo,proto3" json:"brief_info,omitempty"`
  4761. Score int32 `protobuf:"varint,3,opt,name=score,proto3" json:"score,omitempty"`
  4762. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4763. XXX_unrecognized []byte `json:"-"`
  4764. XXX_sizecache int32 `json:"-"`
  4765. }
  4766. func (m *ArenaRankInfo) Reset() { *m = ArenaRankInfo{} }
  4767. func (m *ArenaRankInfo) String() string { return proto.CompactTextString(m) }
  4768. func (*ArenaRankInfo) ProtoMessage() {}
  4769. func (*ArenaRankInfo) Descriptor() ([]byte, []int) {
  4770. return fileDescriptor_116e343673f7ffaf, []int{78}
  4771. }
  4772. func (m *ArenaRankInfo) XXX_Unmarshal(b []byte) error {
  4773. return xxx_messageInfo_ArenaRankInfo.Unmarshal(m, b)
  4774. }
  4775. func (m *ArenaRankInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4776. return xxx_messageInfo_ArenaRankInfo.Marshal(b, m, deterministic)
  4777. }
  4778. func (m *ArenaRankInfo) XXX_Merge(src proto.Message) {
  4779. xxx_messageInfo_ArenaRankInfo.Merge(m, src)
  4780. }
  4781. func (m *ArenaRankInfo) XXX_Size() int {
  4782. return xxx_messageInfo_ArenaRankInfo.Size(m)
  4783. }
  4784. func (m *ArenaRankInfo) XXX_DiscardUnknown() {
  4785. xxx_messageInfo_ArenaRankInfo.DiscardUnknown(m)
  4786. }
  4787. var xxx_messageInfo_ArenaRankInfo proto.InternalMessageInfo
  4788. func (m *ArenaRankInfo) GetRank() int32 {
  4789. if m != nil {
  4790. return m.Rank
  4791. }
  4792. return 0
  4793. }
  4794. func (m *ArenaRankInfo) GetBriefInfo() *CommonPlayerBriefInfo {
  4795. if m != nil {
  4796. return m.BriefInfo
  4797. }
  4798. return nil
  4799. }
  4800. func (m *ArenaRankInfo) GetScore() int32 {
  4801. if m != nil {
  4802. return m.Score
  4803. }
  4804. return 0
  4805. }
  4806. type RoleArena struct {
  4807. Arena *ArenaInfo `protobuf:"bytes,1,opt,name=arena,proto3" json:"arena,omitempty"`
  4808. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4809. XXX_unrecognized []byte `json:"-"`
  4810. XXX_sizecache int32 `json:"-"`
  4811. }
  4812. func (m *RoleArena) Reset() { *m = RoleArena{} }
  4813. func (m *RoleArena) String() string { return proto.CompactTextString(m) }
  4814. func (*RoleArena) ProtoMessage() {}
  4815. func (*RoleArena) Descriptor() ([]byte, []int) {
  4816. return fileDescriptor_116e343673f7ffaf, []int{79}
  4817. }
  4818. func (m *RoleArena) XXX_Unmarshal(b []byte) error {
  4819. return xxx_messageInfo_RoleArena.Unmarshal(m, b)
  4820. }
  4821. func (m *RoleArena) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4822. return xxx_messageInfo_RoleArena.Marshal(b, m, deterministic)
  4823. }
  4824. func (m *RoleArena) XXX_Merge(src proto.Message) {
  4825. xxx_messageInfo_RoleArena.Merge(m, src)
  4826. }
  4827. func (m *RoleArena) XXX_Size() int {
  4828. return xxx_messageInfo_RoleArena.Size(m)
  4829. }
  4830. func (m *RoleArena) XXX_DiscardUnknown() {
  4831. xxx_messageInfo_RoleArena.DiscardUnknown(m)
  4832. }
  4833. var xxx_messageInfo_RoleArena proto.InternalMessageInfo
  4834. func (m *RoleArena) GetArena() *ArenaInfo {
  4835. if m != nil {
  4836. return m.Arena
  4837. }
  4838. return nil
  4839. }
  4840. // //////////////////////mail
  4841. type MailContent struct {
  4842. Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  4843. ConfigId int32 `protobuf:"varint,2,opt,name=config_id,json=configId,proto3" json:"config_id,omitempty"`
  4844. Type int32 `protobuf:"varint,3,opt,name=type,proto3" json:"type,omitempty"`
  4845. RewardList []*KeyValueType `protobuf:"bytes,4,rep,name=reward_list,json=rewardList,proto3" json:"reward_list,omitempty"`
  4846. BeginTime uint64 `protobuf:"varint,5,opt,name=begin_time,json=beginTime,proto3" json:"begin_time,omitempty"`
  4847. ExpireTime uint64 `protobuf:"varint,6,opt,name=expire_time,json=expireTime,proto3" json:"expire_time,omitempty"`
  4848. // 0未读取 1已读取 | 00未获取 10已获取 | 000 未删除 100 已删除
  4849. State int32 `protobuf:"varint,7,opt,name=state,proto3" json:"state,omitempty"`
  4850. ParamList []int32 `protobuf:"varint,8,rep,packed,name=param_list,json=paramList,proto3" json:"param_list,omitempty"`
  4851. Title string `protobuf:"bytes,9,opt,name=title,proto3" json:"title,omitempty"`
  4852. Content string `protobuf:"bytes,10,opt,name=content,proto3" json:"content,omitempty"`
  4853. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4854. XXX_unrecognized []byte `json:"-"`
  4855. XXX_sizecache int32 `json:"-"`
  4856. }
  4857. func (m *MailContent) Reset() { *m = MailContent{} }
  4858. func (m *MailContent) String() string { return proto.CompactTextString(m) }
  4859. func (*MailContent) ProtoMessage() {}
  4860. func (*MailContent) Descriptor() ([]byte, []int) {
  4861. return fileDescriptor_116e343673f7ffaf, []int{80}
  4862. }
  4863. func (m *MailContent) XXX_Unmarshal(b []byte) error {
  4864. return xxx_messageInfo_MailContent.Unmarshal(m, b)
  4865. }
  4866. func (m *MailContent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4867. return xxx_messageInfo_MailContent.Marshal(b, m, deterministic)
  4868. }
  4869. func (m *MailContent) XXX_Merge(src proto.Message) {
  4870. xxx_messageInfo_MailContent.Merge(m, src)
  4871. }
  4872. func (m *MailContent) XXX_Size() int {
  4873. return xxx_messageInfo_MailContent.Size(m)
  4874. }
  4875. func (m *MailContent) XXX_DiscardUnknown() {
  4876. xxx_messageInfo_MailContent.DiscardUnknown(m)
  4877. }
  4878. var xxx_messageInfo_MailContent proto.InternalMessageInfo
  4879. func (m *MailContent) GetId() int32 {
  4880. if m != nil {
  4881. return m.Id
  4882. }
  4883. return 0
  4884. }
  4885. func (m *MailContent) GetConfigId() int32 {
  4886. if m != nil {
  4887. return m.ConfigId
  4888. }
  4889. return 0
  4890. }
  4891. func (m *MailContent) GetType() int32 {
  4892. if m != nil {
  4893. return m.Type
  4894. }
  4895. return 0
  4896. }
  4897. func (m *MailContent) GetRewardList() []*KeyValueType {
  4898. if m != nil {
  4899. return m.RewardList
  4900. }
  4901. return nil
  4902. }
  4903. func (m *MailContent) GetBeginTime() uint64 {
  4904. if m != nil {
  4905. return m.BeginTime
  4906. }
  4907. return 0
  4908. }
  4909. func (m *MailContent) GetExpireTime() uint64 {
  4910. if m != nil {
  4911. return m.ExpireTime
  4912. }
  4913. return 0
  4914. }
  4915. func (m *MailContent) GetState() int32 {
  4916. if m != nil {
  4917. return m.State
  4918. }
  4919. return 0
  4920. }
  4921. func (m *MailContent) GetParamList() []int32 {
  4922. if m != nil {
  4923. return m.ParamList
  4924. }
  4925. return nil
  4926. }
  4927. func (m *MailContent) GetTitle() string {
  4928. if m != nil {
  4929. return m.Title
  4930. }
  4931. return ""
  4932. }
  4933. func (m *MailContent) GetContent() string {
  4934. if m != nil {
  4935. return m.Content
  4936. }
  4937. return ""
  4938. }
  4939. type RoleMail struct {
  4940. MailList []*MailContent `protobuf:"bytes,1,rep,name=mail_list,json=mailList,proto3" json:"mail_list,omitempty"`
  4941. MaxMailId int32 `protobuf:"varint,2,opt,name=max_mail_id,json=maxMailId,proto3" json:"max_mail_id,omitempty"`
  4942. CurrGlobalMailId int32 `protobuf:"varint,3,opt,name=curr_global_mail_id,json=currGlobalMailId,proto3" json:"curr_global_mail_id,omitempty"`
  4943. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4944. XXX_unrecognized []byte `json:"-"`
  4945. XXX_sizecache int32 `json:"-"`
  4946. }
  4947. func (m *RoleMail) Reset() { *m = RoleMail{} }
  4948. func (m *RoleMail) String() string { return proto.CompactTextString(m) }
  4949. func (*RoleMail) ProtoMessage() {}
  4950. func (*RoleMail) Descriptor() ([]byte, []int) {
  4951. return fileDescriptor_116e343673f7ffaf, []int{81}
  4952. }
  4953. func (m *RoleMail) XXX_Unmarshal(b []byte) error {
  4954. return xxx_messageInfo_RoleMail.Unmarshal(m, b)
  4955. }
  4956. func (m *RoleMail) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4957. return xxx_messageInfo_RoleMail.Marshal(b, m, deterministic)
  4958. }
  4959. func (m *RoleMail) XXX_Merge(src proto.Message) {
  4960. xxx_messageInfo_RoleMail.Merge(m, src)
  4961. }
  4962. func (m *RoleMail) XXX_Size() int {
  4963. return xxx_messageInfo_RoleMail.Size(m)
  4964. }
  4965. func (m *RoleMail) XXX_DiscardUnknown() {
  4966. xxx_messageInfo_RoleMail.DiscardUnknown(m)
  4967. }
  4968. var xxx_messageInfo_RoleMail proto.InternalMessageInfo
  4969. func (m *RoleMail) GetMailList() []*MailContent {
  4970. if m != nil {
  4971. return m.MailList
  4972. }
  4973. return nil
  4974. }
  4975. func (m *RoleMail) GetMaxMailId() int32 {
  4976. if m != nil {
  4977. return m.MaxMailId
  4978. }
  4979. return 0
  4980. }
  4981. func (m *RoleMail) GetCurrGlobalMailId() int32 {
  4982. if m != nil {
  4983. return m.CurrGlobalMailId
  4984. }
  4985. return 0
  4986. }
  4987. // //////////////////////ReadInfo 小红点数据
  4988. type RoleRed struct {
  4989. IsUnreadMail bool `protobuf:"varint,1,opt,name=is_unread_mail,json=isUnreadMail,proto3" json:"is_unread_mail,omitempty"`
  4990. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4991. XXX_unrecognized []byte `json:"-"`
  4992. XXX_sizecache int32 `json:"-"`
  4993. }
  4994. func (m *RoleRed) Reset() { *m = RoleRed{} }
  4995. func (m *RoleRed) String() string { return proto.CompactTextString(m) }
  4996. func (*RoleRed) ProtoMessage() {}
  4997. func (*RoleRed) Descriptor() ([]byte, []int) {
  4998. return fileDescriptor_116e343673f7ffaf, []int{82}
  4999. }
  5000. func (m *RoleRed) XXX_Unmarshal(b []byte) error {
  5001. return xxx_messageInfo_RoleRed.Unmarshal(m, b)
  5002. }
  5003. func (m *RoleRed) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5004. return xxx_messageInfo_RoleRed.Marshal(b, m, deterministic)
  5005. }
  5006. func (m *RoleRed) XXX_Merge(src proto.Message) {
  5007. xxx_messageInfo_RoleRed.Merge(m, src)
  5008. }
  5009. func (m *RoleRed) XXX_Size() int {
  5010. return xxx_messageInfo_RoleRed.Size(m)
  5011. }
  5012. func (m *RoleRed) XXX_DiscardUnknown() {
  5013. xxx_messageInfo_RoleRed.DiscardUnknown(m)
  5014. }
  5015. var xxx_messageInfo_RoleRed proto.InternalMessageInfo
  5016. func (m *RoleRed) GetIsUnreadMail() bool {
  5017. if m != nil {
  5018. return m.IsUnreadMail
  5019. }
  5020. return false
  5021. }
  5022. // //////////////////////Competition 赛季玩法
  5023. // 赛季结算信息
  5024. type CompetitionRewardInfo struct {
  5025. RewardIdx int32 `protobuf:"varint,1,opt,name=reward_idx,json=rewardIdx,proto3" json:"reward_idx,omitempty"`
  5026. RewardEndTme uint64 `protobuf:"varint,2,opt,name=reward_end_tme,json=rewardEndTme,proto3" json:"reward_end_tme,omitempty"`
  5027. // 参数说明
  5028. // 1,2赛季类型,对应档位礼包id
  5029. ParamList []int32 `protobuf:"varint,3,rep,packed,name=param_list,json=paramList,proto3" json:"param_list,omitempty"`
  5030. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5031. XXX_unrecognized []byte `json:"-"`
  5032. XXX_sizecache int32 `json:"-"`
  5033. }
  5034. func (m *CompetitionRewardInfo) Reset() { *m = CompetitionRewardInfo{} }
  5035. func (m *CompetitionRewardInfo) String() string { return proto.CompactTextString(m) }
  5036. func (*CompetitionRewardInfo) ProtoMessage() {}
  5037. func (*CompetitionRewardInfo) Descriptor() ([]byte, []int) {
  5038. return fileDescriptor_116e343673f7ffaf, []int{83}
  5039. }
  5040. func (m *CompetitionRewardInfo) XXX_Unmarshal(b []byte) error {
  5041. return xxx_messageInfo_CompetitionRewardInfo.Unmarshal(m, b)
  5042. }
  5043. func (m *CompetitionRewardInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5044. return xxx_messageInfo_CompetitionRewardInfo.Marshal(b, m, deterministic)
  5045. }
  5046. func (m *CompetitionRewardInfo) XXX_Merge(src proto.Message) {
  5047. xxx_messageInfo_CompetitionRewardInfo.Merge(m, src)
  5048. }
  5049. func (m *CompetitionRewardInfo) XXX_Size() int {
  5050. return xxx_messageInfo_CompetitionRewardInfo.Size(m)
  5051. }
  5052. func (m *CompetitionRewardInfo) XXX_DiscardUnknown() {
  5053. xxx_messageInfo_CompetitionRewardInfo.DiscardUnknown(m)
  5054. }
  5055. var xxx_messageInfo_CompetitionRewardInfo proto.InternalMessageInfo
  5056. func (m *CompetitionRewardInfo) GetRewardIdx() int32 {
  5057. if m != nil {
  5058. return m.RewardIdx
  5059. }
  5060. return 0
  5061. }
  5062. func (m *CompetitionRewardInfo) GetRewardEndTme() uint64 {
  5063. if m != nil {
  5064. return m.RewardEndTme
  5065. }
  5066. return 0
  5067. }
  5068. func (m *CompetitionRewardInfo) GetParamList() []int32 {
  5069. if m != nil {
  5070. return m.ParamList
  5071. }
  5072. return nil
  5073. }
  5074. // 历史赛季信息
  5075. type CompetitionInfo struct {
  5076. CompetitionId int32 `protobuf:"varint,1,opt,name=competition_id,json=competitionId,proto3" json:"competition_id,omitempty"`
  5077. CurEndTime uint64 `protobuf:"varint,2,opt,name=cur_end_time,json=curEndTime,proto3" json:"cur_end_time,omitempty"`
  5078. RewardInfoList []*CompetitionRewardInfo `protobuf:"bytes,3,rep,name=reward_info_list,json=rewardInfoList,proto3" json:"reward_info_list,omitempty"`
  5079. ComParam int32 `protobuf:"varint,4,opt,name=com_param,json=comParam,proto3" json:"com_param,omitempty"`
  5080. ComParamAddTime uint64 `protobuf:"varint,5,opt,name=com_param_add_time,json=comParamAddTime,proto3" json:"com_param_add_time,omitempty"`
  5081. // 显示超过进度使用
  5082. SelfRank int32 `protobuf:"varint,6,opt,name=self_rank,json=selfRank,proto3" json:"self_rank,omitempty"`
  5083. TotalRank int32 `protobuf:"varint,7,opt,name=total_rank,json=totalRank,proto3" json:"total_rank,omitempty"`
  5084. // 下一档积分差距
  5085. NextComScore int32 `protobuf:"varint,8,opt,name=next_com_score,json=nextComScore,proto3" json:"next_com_score,omitempty"`
  5086. LastComScore int32 `protobuf:"varint,9,opt,name=last_com_score,json=lastComScore,proto3" json:"last_com_score,omitempty"`
  5087. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5088. XXX_unrecognized []byte `json:"-"`
  5089. XXX_sizecache int32 `json:"-"`
  5090. }
  5091. func (m *CompetitionInfo) Reset() { *m = CompetitionInfo{} }
  5092. func (m *CompetitionInfo) String() string { return proto.CompactTextString(m) }
  5093. func (*CompetitionInfo) ProtoMessage() {}
  5094. func (*CompetitionInfo) Descriptor() ([]byte, []int) {
  5095. return fileDescriptor_116e343673f7ffaf, []int{84}
  5096. }
  5097. func (m *CompetitionInfo) XXX_Unmarshal(b []byte) error {
  5098. return xxx_messageInfo_CompetitionInfo.Unmarshal(m, b)
  5099. }
  5100. func (m *CompetitionInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5101. return xxx_messageInfo_CompetitionInfo.Marshal(b, m, deterministic)
  5102. }
  5103. func (m *CompetitionInfo) XXX_Merge(src proto.Message) {
  5104. xxx_messageInfo_CompetitionInfo.Merge(m, src)
  5105. }
  5106. func (m *CompetitionInfo) XXX_Size() int {
  5107. return xxx_messageInfo_CompetitionInfo.Size(m)
  5108. }
  5109. func (m *CompetitionInfo) XXX_DiscardUnknown() {
  5110. xxx_messageInfo_CompetitionInfo.DiscardUnknown(m)
  5111. }
  5112. var xxx_messageInfo_CompetitionInfo proto.InternalMessageInfo
  5113. func (m *CompetitionInfo) GetCompetitionId() int32 {
  5114. if m != nil {
  5115. return m.CompetitionId
  5116. }
  5117. return 0
  5118. }
  5119. func (m *CompetitionInfo) GetCurEndTime() uint64 {
  5120. if m != nil {
  5121. return m.CurEndTime
  5122. }
  5123. return 0
  5124. }
  5125. func (m *CompetitionInfo) GetRewardInfoList() []*CompetitionRewardInfo {
  5126. if m != nil {
  5127. return m.RewardInfoList
  5128. }
  5129. return nil
  5130. }
  5131. func (m *CompetitionInfo) GetComParam() int32 {
  5132. if m != nil {
  5133. return m.ComParam
  5134. }
  5135. return 0
  5136. }
  5137. func (m *CompetitionInfo) GetComParamAddTime() uint64 {
  5138. if m != nil {
  5139. return m.ComParamAddTime
  5140. }
  5141. return 0
  5142. }
  5143. func (m *CompetitionInfo) GetSelfRank() int32 {
  5144. if m != nil {
  5145. return m.SelfRank
  5146. }
  5147. return 0
  5148. }
  5149. func (m *CompetitionInfo) GetTotalRank() int32 {
  5150. if m != nil {
  5151. return m.TotalRank
  5152. }
  5153. return 0
  5154. }
  5155. func (m *CompetitionInfo) GetNextComScore() int32 {
  5156. if m != nil {
  5157. return m.NextComScore
  5158. }
  5159. return 0
  5160. }
  5161. func (m *CompetitionInfo) GetLastComScore() int32 {
  5162. if m != nil {
  5163. return m.LastComScore
  5164. }
  5165. return 0
  5166. }
  5167. type DivineInfo struct {
  5168. // 占星
  5169. CurStars []int32 `protobuf:"varint,1,rep,packed,name=cur_stars,json=curStars,proto3" json:"cur_stars,omitempty"`
  5170. FailedCount int32 `protobuf:"varint,2,opt,name=failed_count,json=failedCount,proto3" json:"failed_count,omitempty"`
  5171. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5172. XXX_unrecognized []byte `json:"-"`
  5173. XXX_sizecache int32 `json:"-"`
  5174. }
  5175. func (m *DivineInfo) Reset() { *m = DivineInfo{} }
  5176. func (m *DivineInfo) String() string { return proto.CompactTextString(m) }
  5177. func (*DivineInfo) ProtoMessage() {}
  5178. func (*DivineInfo) Descriptor() ([]byte, []int) {
  5179. return fileDescriptor_116e343673f7ffaf, []int{85}
  5180. }
  5181. func (m *DivineInfo) XXX_Unmarshal(b []byte) error {
  5182. return xxx_messageInfo_DivineInfo.Unmarshal(m, b)
  5183. }
  5184. func (m *DivineInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5185. return xxx_messageInfo_DivineInfo.Marshal(b, m, deterministic)
  5186. }
  5187. func (m *DivineInfo) XXX_Merge(src proto.Message) {
  5188. xxx_messageInfo_DivineInfo.Merge(m, src)
  5189. }
  5190. func (m *DivineInfo) XXX_Size() int {
  5191. return xxx_messageInfo_DivineInfo.Size(m)
  5192. }
  5193. func (m *DivineInfo) XXX_DiscardUnknown() {
  5194. xxx_messageInfo_DivineInfo.DiscardUnknown(m)
  5195. }
  5196. var xxx_messageInfo_DivineInfo proto.InternalMessageInfo
  5197. func (m *DivineInfo) GetCurStars() []int32 {
  5198. if m != nil {
  5199. return m.CurStars
  5200. }
  5201. return nil
  5202. }
  5203. func (m *DivineInfo) GetFailedCount() int32 {
  5204. if m != nil {
  5205. return m.FailedCount
  5206. }
  5207. return 0
  5208. }
  5209. // 每日领奖数据
  5210. type DaySupplyData struct {
  5211. Begin uint64 `protobuf:"varint,1,opt,name=begin,proto3" json:"begin,omitempty"`
  5212. EndIndex uint64 `protobuf:"varint,2,opt,name=end_index,json=endIndex,proto3" json:"end_index,omitempty"`
  5213. Draw bool `protobuf:"varint,3,opt,name=draw,proto3" json:"draw,omitempty"`
  5214. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5215. XXX_unrecognized []byte `json:"-"`
  5216. XXX_sizecache int32 `json:"-"`
  5217. }
  5218. func (m *DaySupplyData) Reset() { *m = DaySupplyData{} }
  5219. func (m *DaySupplyData) String() string { return proto.CompactTextString(m) }
  5220. func (*DaySupplyData) ProtoMessage() {}
  5221. func (*DaySupplyData) Descriptor() ([]byte, []int) {
  5222. return fileDescriptor_116e343673f7ffaf, []int{86}
  5223. }
  5224. func (m *DaySupplyData) XXX_Unmarshal(b []byte) error {
  5225. return xxx_messageInfo_DaySupplyData.Unmarshal(m, b)
  5226. }
  5227. func (m *DaySupplyData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5228. return xxx_messageInfo_DaySupplyData.Marshal(b, m, deterministic)
  5229. }
  5230. func (m *DaySupplyData) XXX_Merge(src proto.Message) {
  5231. xxx_messageInfo_DaySupplyData.Merge(m, src)
  5232. }
  5233. func (m *DaySupplyData) XXX_Size() int {
  5234. return xxx_messageInfo_DaySupplyData.Size(m)
  5235. }
  5236. func (m *DaySupplyData) XXX_DiscardUnknown() {
  5237. xxx_messageInfo_DaySupplyData.DiscardUnknown(m)
  5238. }
  5239. var xxx_messageInfo_DaySupplyData proto.InternalMessageInfo
  5240. func (m *DaySupplyData) GetBegin() uint64 {
  5241. if m != nil {
  5242. return m.Begin
  5243. }
  5244. return 0
  5245. }
  5246. func (m *DaySupplyData) GetEndIndex() uint64 {
  5247. if m != nil {
  5248. return m.EndIndex
  5249. }
  5250. return 0
  5251. }
  5252. func (m *DaySupplyData) GetDraw() bool {
  5253. if m != nil {
  5254. return m.Draw
  5255. }
  5256. return false
  5257. }
  5258. // 粉丝投票数据
  5259. type FansVoteData struct {
  5260. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  5261. Rank int32 `protobuf:"varint,2,opt,name=rank,proto3" json:"rank,omitempty"`
  5262. Score int32 `protobuf:"varint,3,opt,name=score,proto3" json:"score,omitempty"`
  5263. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5264. XXX_unrecognized []byte `json:"-"`
  5265. XXX_sizecache int32 `json:"-"`
  5266. }
  5267. func (m *FansVoteData) Reset() { *m = FansVoteData{} }
  5268. func (m *FansVoteData) String() string { return proto.CompactTextString(m) }
  5269. func (*FansVoteData) ProtoMessage() {}
  5270. func (*FansVoteData) Descriptor() ([]byte, []int) {
  5271. return fileDescriptor_116e343673f7ffaf, []int{87}
  5272. }
  5273. func (m *FansVoteData) XXX_Unmarshal(b []byte) error {
  5274. return xxx_messageInfo_FansVoteData.Unmarshal(m, b)
  5275. }
  5276. func (m *FansVoteData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5277. return xxx_messageInfo_FansVoteData.Marshal(b, m, deterministic)
  5278. }
  5279. func (m *FansVoteData) XXX_Merge(src proto.Message) {
  5280. xxx_messageInfo_FansVoteData.Merge(m, src)
  5281. }
  5282. func (m *FansVoteData) XXX_Size() int {
  5283. return xxx_messageInfo_FansVoteData.Size(m)
  5284. }
  5285. func (m *FansVoteData) XXX_DiscardUnknown() {
  5286. xxx_messageInfo_FansVoteData.DiscardUnknown(m)
  5287. }
  5288. var xxx_messageInfo_FansVoteData proto.InternalMessageInfo
  5289. func (m *FansVoteData) GetName() string {
  5290. if m != nil {
  5291. return m.Name
  5292. }
  5293. return ""
  5294. }
  5295. func (m *FansVoteData) GetRank() int32 {
  5296. if m != nil {
  5297. return m.Rank
  5298. }
  5299. return 0
  5300. }
  5301. func (m *FansVoteData) GetScore() int32 {
  5302. if m != nil {
  5303. return m.Score
  5304. }
  5305. return 0
  5306. }
  5307. // 箱子排名数据
  5308. type FansBoxData struct {
  5309. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  5310. Box int32 `protobuf:"varint,2,opt,name=box,proto3" json:"box,omitempty"`
  5311. Rank int32 `protobuf:"varint,3,opt,name=rank,proto3" json:"rank,omitempty"`
  5312. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5313. XXX_unrecognized []byte `json:"-"`
  5314. XXX_sizecache int32 `json:"-"`
  5315. }
  5316. func (m *FansBoxData) Reset() { *m = FansBoxData{} }
  5317. func (m *FansBoxData) String() string { return proto.CompactTextString(m) }
  5318. func (*FansBoxData) ProtoMessage() {}
  5319. func (*FansBoxData) Descriptor() ([]byte, []int) {
  5320. return fileDescriptor_116e343673f7ffaf, []int{88}
  5321. }
  5322. func (m *FansBoxData) XXX_Unmarshal(b []byte) error {
  5323. return xxx_messageInfo_FansBoxData.Unmarshal(m, b)
  5324. }
  5325. func (m *FansBoxData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5326. return xxx_messageInfo_FansBoxData.Marshal(b, m, deterministic)
  5327. }
  5328. func (m *FansBoxData) XXX_Merge(src proto.Message) {
  5329. xxx_messageInfo_FansBoxData.Merge(m, src)
  5330. }
  5331. func (m *FansBoxData) XXX_Size() int {
  5332. return xxx_messageInfo_FansBoxData.Size(m)
  5333. }
  5334. func (m *FansBoxData) XXX_DiscardUnknown() {
  5335. xxx_messageInfo_FansBoxData.DiscardUnknown(m)
  5336. }
  5337. var xxx_messageInfo_FansBoxData proto.InternalMessageInfo
  5338. func (m *FansBoxData) GetUid() uint64 {
  5339. if m != nil {
  5340. return m.Uid
  5341. }
  5342. return 0
  5343. }
  5344. func (m *FansBoxData) GetBox() int32 {
  5345. if m != nil {
  5346. return m.Box
  5347. }
  5348. return 0
  5349. }
  5350. func (m *FansBoxData) GetRank() int32 {
  5351. if m != nil {
  5352. return m.Rank
  5353. }
  5354. return 0
  5355. }
  5356. // 排名数据
  5357. type FansRankData struct {
  5358. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  5359. Score int32 `protobuf:"varint,2,opt,name=score,proto3" json:"score,omitempty"`
  5360. Rank int32 `protobuf:"varint,3,opt,name=rank,proto3" json:"rank,omitempty"`
  5361. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5362. XXX_unrecognized []byte `json:"-"`
  5363. XXX_sizecache int32 `json:"-"`
  5364. }
  5365. func (m *FansRankData) Reset() { *m = FansRankData{} }
  5366. func (m *FansRankData) String() string { return proto.CompactTextString(m) }
  5367. func (*FansRankData) ProtoMessage() {}
  5368. func (*FansRankData) Descriptor() ([]byte, []int) {
  5369. return fileDescriptor_116e343673f7ffaf, []int{89}
  5370. }
  5371. func (m *FansRankData) XXX_Unmarshal(b []byte) error {
  5372. return xxx_messageInfo_FansRankData.Unmarshal(m, b)
  5373. }
  5374. func (m *FansRankData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5375. return xxx_messageInfo_FansRankData.Marshal(b, m, deterministic)
  5376. }
  5377. func (m *FansRankData) XXX_Merge(src proto.Message) {
  5378. xxx_messageInfo_FansRankData.Merge(m, src)
  5379. }
  5380. func (m *FansRankData) XXX_Size() int {
  5381. return xxx_messageInfo_FansRankData.Size(m)
  5382. }
  5383. func (m *FansRankData) XXX_DiscardUnknown() {
  5384. xxx_messageInfo_FansRankData.DiscardUnknown(m)
  5385. }
  5386. var xxx_messageInfo_FansRankData proto.InternalMessageInfo
  5387. func (m *FansRankData) GetUid() uint64 {
  5388. if m != nil {
  5389. return m.Uid
  5390. }
  5391. return 0
  5392. }
  5393. func (m *FansRankData) GetScore() int32 {
  5394. if m != nil {
  5395. return m.Score
  5396. }
  5397. return 0
  5398. }
  5399. func (m *FansRankData) GetRank() int32 {
  5400. if m != nil {
  5401. return m.Rank
  5402. }
  5403. return 0
  5404. }
  5405. type FansVoteDetail struct {
  5406. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  5407. VoteTime uint64 `protobuf:"varint,2,opt,name=vote_time,json=voteTime,proto3" json:"vote_time,omitempty"`
  5408. TicketCount int32 `protobuf:"varint,3,opt,name=ticket_count,json=ticketCount,proto3" json:"ticket_count,omitempty"`
  5409. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5410. XXX_unrecognized []byte `json:"-"`
  5411. XXX_sizecache int32 `json:"-"`
  5412. }
  5413. func (m *FansVoteDetail) Reset() { *m = FansVoteDetail{} }
  5414. func (m *FansVoteDetail) String() string { return proto.CompactTextString(m) }
  5415. func (*FansVoteDetail) ProtoMessage() {}
  5416. func (*FansVoteDetail) Descriptor() ([]byte, []int) {
  5417. return fileDescriptor_116e343673f7ffaf, []int{90}
  5418. }
  5419. func (m *FansVoteDetail) XXX_Unmarshal(b []byte) error {
  5420. return xxx_messageInfo_FansVoteDetail.Unmarshal(m, b)
  5421. }
  5422. func (m *FansVoteDetail) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5423. return xxx_messageInfo_FansVoteDetail.Marshal(b, m, deterministic)
  5424. }
  5425. func (m *FansVoteDetail) XXX_Merge(src proto.Message) {
  5426. xxx_messageInfo_FansVoteDetail.Merge(m, src)
  5427. }
  5428. func (m *FansVoteDetail) XXX_Size() int {
  5429. return xxx_messageInfo_FansVoteDetail.Size(m)
  5430. }
  5431. func (m *FansVoteDetail) XXX_DiscardUnknown() {
  5432. xxx_messageInfo_FansVoteDetail.DiscardUnknown(m)
  5433. }
  5434. var xxx_messageInfo_FansVoteDetail proto.InternalMessageInfo
  5435. func (m *FansVoteDetail) GetUid() uint64 {
  5436. if m != nil {
  5437. return m.Uid
  5438. }
  5439. return 0
  5440. }
  5441. func (m *FansVoteDetail) GetVoteTime() uint64 {
  5442. if m != nil {
  5443. return m.VoteTime
  5444. }
  5445. return 0
  5446. }
  5447. func (m *FansVoteDetail) GetTicketCount() int32 {
  5448. if m != nil {
  5449. return m.TicketCount
  5450. }
  5451. return 0
  5452. }
  5453. // 请求自己的粉丝榜单
  5454. type IdolFansInfo struct {
  5455. FansList []*FansVoteDetail `protobuf:"bytes,1,rep,name=fans_list,json=fansList,proto3" json:"fans_list,omitempty"`
  5456. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5457. XXX_unrecognized []byte `json:"-"`
  5458. XXX_sizecache int32 `json:"-"`
  5459. }
  5460. func (m *IdolFansInfo) Reset() { *m = IdolFansInfo{} }
  5461. func (m *IdolFansInfo) String() string { return proto.CompactTextString(m) }
  5462. func (*IdolFansInfo) ProtoMessage() {}
  5463. func (*IdolFansInfo) Descriptor() ([]byte, []int) {
  5464. return fileDescriptor_116e343673f7ffaf, []int{91}
  5465. }
  5466. func (m *IdolFansInfo) XXX_Unmarshal(b []byte) error {
  5467. return xxx_messageInfo_IdolFansInfo.Unmarshal(m, b)
  5468. }
  5469. func (m *IdolFansInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5470. return xxx_messageInfo_IdolFansInfo.Marshal(b, m, deterministic)
  5471. }
  5472. func (m *IdolFansInfo) XXX_Merge(src proto.Message) {
  5473. xxx_messageInfo_IdolFansInfo.Merge(m, src)
  5474. }
  5475. func (m *IdolFansInfo) XXX_Size() int {
  5476. return xxx_messageInfo_IdolFansInfo.Size(m)
  5477. }
  5478. func (m *IdolFansInfo) XXX_DiscardUnknown() {
  5479. xxx_messageInfo_IdolFansInfo.DiscardUnknown(m)
  5480. }
  5481. var xxx_messageInfo_IdolFansInfo proto.InternalMessageInfo
  5482. func (m *IdolFansInfo) GetFansList() []*FansVoteDetail {
  5483. if m != nil {
  5484. return m.FansList
  5485. }
  5486. return nil
  5487. }
  5488. type IdolInfo struct {
  5489. VoteData []*KeyValueType64 `protobuf:"bytes,1,rep,name=vote_data,json=voteData,proto3" json:"vote_data,omitempty"`
  5490. DayReward []int32 `protobuf:"varint,2,rep,packed,name=day_reward,json=dayReward,proto3" json:"day_reward,omitempty"`
  5491. JoinCompetition bool `protobuf:"varint,3,opt,name=join_competition,json=joinCompetition,proto3" json:"join_competition,omitempty"`
  5492. BoxScore int32 `protobuf:"varint,4,opt,name=box_score,json=boxScore,proto3" json:"box_score,omitempty"`
  5493. FirstBegin uint64 `protobuf:"varint,5,opt,name=first_begin,json=firstBegin,proto3" json:"first_begin,omitempty"`
  5494. FirstEnd uint64 `protobuf:"varint,6,opt,name=first_end,json=firstEnd,proto3" json:"first_end,omitempty"`
  5495. SecondBegin uint64 `protobuf:"varint,7,opt,name=second_begin,json=secondBegin,proto3" json:"second_begin,omitempty"`
  5496. SecondEnd uint64 `protobuf:"varint,8,opt,name=second_end,json=secondEnd,proto3" json:"second_end,omitempty"`
  5497. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5498. XXX_unrecognized []byte `json:"-"`
  5499. XXX_sizecache int32 `json:"-"`
  5500. }
  5501. func (m *IdolInfo) Reset() { *m = IdolInfo{} }
  5502. func (m *IdolInfo) String() string { return proto.CompactTextString(m) }
  5503. func (*IdolInfo) ProtoMessage() {}
  5504. func (*IdolInfo) Descriptor() ([]byte, []int) {
  5505. return fileDescriptor_116e343673f7ffaf, []int{92}
  5506. }
  5507. func (m *IdolInfo) XXX_Unmarshal(b []byte) error {
  5508. return xxx_messageInfo_IdolInfo.Unmarshal(m, b)
  5509. }
  5510. func (m *IdolInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5511. return xxx_messageInfo_IdolInfo.Marshal(b, m, deterministic)
  5512. }
  5513. func (m *IdolInfo) XXX_Merge(src proto.Message) {
  5514. xxx_messageInfo_IdolInfo.Merge(m, src)
  5515. }
  5516. func (m *IdolInfo) XXX_Size() int {
  5517. return xxx_messageInfo_IdolInfo.Size(m)
  5518. }
  5519. func (m *IdolInfo) XXX_DiscardUnknown() {
  5520. xxx_messageInfo_IdolInfo.DiscardUnknown(m)
  5521. }
  5522. var xxx_messageInfo_IdolInfo proto.InternalMessageInfo
  5523. func (m *IdolInfo) GetVoteData() []*KeyValueType64 {
  5524. if m != nil {
  5525. return m.VoteData
  5526. }
  5527. return nil
  5528. }
  5529. func (m *IdolInfo) GetDayReward() []int32 {
  5530. if m != nil {
  5531. return m.DayReward
  5532. }
  5533. return nil
  5534. }
  5535. func (m *IdolInfo) GetJoinCompetition() bool {
  5536. if m != nil {
  5537. return m.JoinCompetition
  5538. }
  5539. return false
  5540. }
  5541. func (m *IdolInfo) GetBoxScore() int32 {
  5542. if m != nil {
  5543. return m.BoxScore
  5544. }
  5545. return 0
  5546. }
  5547. func (m *IdolInfo) GetFirstBegin() uint64 {
  5548. if m != nil {
  5549. return m.FirstBegin
  5550. }
  5551. return 0
  5552. }
  5553. func (m *IdolInfo) GetFirstEnd() uint64 {
  5554. if m != nil {
  5555. return m.FirstEnd
  5556. }
  5557. return 0
  5558. }
  5559. func (m *IdolInfo) GetSecondBegin() uint64 {
  5560. if m != nil {
  5561. return m.SecondBegin
  5562. }
  5563. return 0
  5564. }
  5565. func (m *IdolInfo) GetSecondEnd() uint64 {
  5566. if m != nil {
  5567. return m.SecondEnd
  5568. }
  5569. return 0
  5570. }
  5571. type PlayerShowData struct {
  5572. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  5573. RoleBase *RoleBase `protobuf:"bytes,2,opt,name=role_base,json=roleBase,proto3" json:"role_base,omitempty"`
  5574. HeroData *HeroData `protobuf:"bytes,3,opt,name=hero_data,json=heroData,proto3" json:"hero_data,omitempty"`
  5575. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5576. XXX_unrecognized []byte `json:"-"`
  5577. XXX_sizecache int32 `json:"-"`
  5578. }
  5579. func (m *PlayerShowData) Reset() { *m = PlayerShowData{} }
  5580. func (m *PlayerShowData) String() string { return proto.CompactTextString(m) }
  5581. func (*PlayerShowData) ProtoMessage() {}
  5582. func (*PlayerShowData) Descriptor() ([]byte, []int) {
  5583. return fileDescriptor_116e343673f7ffaf, []int{93}
  5584. }
  5585. func (m *PlayerShowData) XXX_Unmarshal(b []byte) error {
  5586. return xxx_messageInfo_PlayerShowData.Unmarshal(m, b)
  5587. }
  5588. func (m *PlayerShowData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5589. return xxx_messageInfo_PlayerShowData.Marshal(b, m, deterministic)
  5590. }
  5591. func (m *PlayerShowData) XXX_Merge(src proto.Message) {
  5592. xxx_messageInfo_PlayerShowData.Merge(m, src)
  5593. }
  5594. func (m *PlayerShowData) XXX_Size() int {
  5595. return xxx_messageInfo_PlayerShowData.Size(m)
  5596. }
  5597. func (m *PlayerShowData) XXX_DiscardUnknown() {
  5598. xxx_messageInfo_PlayerShowData.DiscardUnknown(m)
  5599. }
  5600. var xxx_messageInfo_PlayerShowData proto.InternalMessageInfo
  5601. func (m *PlayerShowData) GetUid() uint64 {
  5602. if m != nil {
  5603. return m.Uid
  5604. }
  5605. return 0
  5606. }
  5607. func (m *PlayerShowData) GetRoleBase() *RoleBase {
  5608. if m != nil {
  5609. return m.RoleBase
  5610. }
  5611. return nil
  5612. }
  5613. func (m *PlayerShowData) GetHeroData() *HeroData {
  5614. if m != nil {
  5615. return m.HeroData
  5616. }
  5617. return nil
  5618. }
  5619. type IdolSeasonData struct {
  5620. // 前三名数据
  5621. DetailList []*PlayerShowData `protobuf:"bytes,1,rep,name=detail_list,json=detailList,proto3" json:"detail_list,omitempty"`
  5622. // 前三名的票数
  5623. VoteList []*FansRankData `protobuf:"bytes,2,rep,name=vote_list,json=voteList,proto3" json:"vote_list,omitempty"`
  5624. DayReward []int32 `protobuf:"varint,3,rep,packed,name=day_reward,json=dayReward,proto3" json:"day_reward,omitempty"`
  5625. FirstBegin uint64 `protobuf:"varint,4,opt,name=first_begin,json=firstBegin,proto3" json:"first_begin,omitempty"`
  5626. FirstEnd uint64 `protobuf:"varint,5,opt,name=first_end,json=firstEnd,proto3" json:"first_end,omitempty"`
  5627. SecondBegin uint64 `protobuf:"varint,6,opt,name=second_begin,json=secondBegin,proto3" json:"second_begin,omitempty"`
  5628. SecondEnd uint64 `protobuf:"varint,7,opt,name=second_end,json=secondEnd,proto3" json:"second_end,omitempty"`
  5629. HasBoxReward bool `protobuf:"varint,8,opt,name=has_box_reward,json=hasBoxReward,proto3" json:"has_box_reward,omitempty"`
  5630. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5631. XXX_unrecognized []byte `json:"-"`
  5632. XXX_sizecache int32 `json:"-"`
  5633. }
  5634. func (m *IdolSeasonData) Reset() { *m = IdolSeasonData{} }
  5635. func (m *IdolSeasonData) String() string { return proto.CompactTextString(m) }
  5636. func (*IdolSeasonData) ProtoMessage() {}
  5637. func (*IdolSeasonData) Descriptor() ([]byte, []int) {
  5638. return fileDescriptor_116e343673f7ffaf, []int{94}
  5639. }
  5640. func (m *IdolSeasonData) XXX_Unmarshal(b []byte) error {
  5641. return xxx_messageInfo_IdolSeasonData.Unmarshal(m, b)
  5642. }
  5643. func (m *IdolSeasonData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5644. return xxx_messageInfo_IdolSeasonData.Marshal(b, m, deterministic)
  5645. }
  5646. func (m *IdolSeasonData) XXX_Merge(src proto.Message) {
  5647. xxx_messageInfo_IdolSeasonData.Merge(m, src)
  5648. }
  5649. func (m *IdolSeasonData) XXX_Size() int {
  5650. return xxx_messageInfo_IdolSeasonData.Size(m)
  5651. }
  5652. func (m *IdolSeasonData) XXX_DiscardUnknown() {
  5653. xxx_messageInfo_IdolSeasonData.DiscardUnknown(m)
  5654. }
  5655. var xxx_messageInfo_IdolSeasonData proto.InternalMessageInfo
  5656. func (m *IdolSeasonData) GetDetailList() []*PlayerShowData {
  5657. if m != nil {
  5658. return m.DetailList
  5659. }
  5660. return nil
  5661. }
  5662. func (m *IdolSeasonData) GetVoteList() []*FansRankData {
  5663. if m != nil {
  5664. return m.VoteList
  5665. }
  5666. return nil
  5667. }
  5668. func (m *IdolSeasonData) GetDayReward() []int32 {
  5669. if m != nil {
  5670. return m.DayReward
  5671. }
  5672. return nil
  5673. }
  5674. func (m *IdolSeasonData) GetFirstBegin() uint64 {
  5675. if m != nil {
  5676. return m.FirstBegin
  5677. }
  5678. return 0
  5679. }
  5680. func (m *IdolSeasonData) GetFirstEnd() uint64 {
  5681. if m != nil {
  5682. return m.FirstEnd
  5683. }
  5684. return 0
  5685. }
  5686. func (m *IdolSeasonData) GetSecondBegin() uint64 {
  5687. if m != nil {
  5688. return m.SecondBegin
  5689. }
  5690. return 0
  5691. }
  5692. func (m *IdolSeasonData) GetSecondEnd() uint64 {
  5693. if m != nil {
  5694. return m.SecondEnd
  5695. }
  5696. return 0
  5697. }
  5698. func (m *IdolSeasonData) GetHasBoxReward() bool {
  5699. if m != nil {
  5700. return m.HasBoxReward
  5701. }
  5702. return false
  5703. }
  5704. type FansVoteRewardData struct {
  5705. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  5706. IdolList []*KeyValueType64 `protobuf:"bytes,2,rep,name=idol_list,json=idolList,proto3" json:"idol_list,omitempty"`
  5707. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5708. XXX_unrecognized []byte `json:"-"`
  5709. XXX_sizecache int32 `json:"-"`
  5710. }
  5711. func (m *FansVoteRewardData) Reset() { *m = FansVoteRewardData{} }
  5712. func (m *FansVoteRewardData) String() string { return proto.CompactTextString(m) }
  5713. func (*FansVoteRewardData) ProtoMessage() {}
  5714. func (*FansVoteRewardData) Descriptor() ([]byte, []int) {
  5715. return fileDescriptor_116e343673f7ffaf, []int{95}
  5716. }
  5717. func (m *FansVoteRewardData) XXX_Unmarshal(b []byte) error {
  5718. return xxx_messageInfo_FansVoteRewardData.Unmarshal(m, b)
  5719. }
  5720. func (m *FansVoteRewardData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5721. return xxx_messageInfo_FansVoteRewardData.Marshal(b, m, deterministic)
  5722. }
  5723. func (m *FansVoteRewardData) XXX_Merge(src proto.Message) {
  5724. xxx_messageInfo_FansVoteRewardData.Merge(m, src)
  5725. }
  5726. func (m *FansVoteRewardData) XXX_Size() int {
  5727. return xxx_messageInfo_FansVoteRewardData.Size(m)
  5728. }
  5729. func (m *FansVoteRewardData) XXX_DiscardUnknown() {
  5730. xxx_messageInfo_FansVoteRewardData.DiscardUnknown(m)
  5731. }
  5732. var xxx_messageInfo_FansVoteRewardData proto.InternalMessageInfo
  5733. func (m *FansVoteRewardData) GetUid() uint64 {
  5734. if m != nil {
  5735. return m.Uid
  5736. }
  5737. return 0
  5738. }
  5739. func (m *FansVoteRewardData) GetIdolList() []*KeyValueType64 {
  5740. if m != nil {
  5741. return m.IdolList
  5742. }
  5743. return nil
  5744. }
  5745. type RoleCompetition struct {
  5746. CurCompetition *CompetitionInfo `protobuf:"bytes,1,opt,name=cur_competition,json=curCompetition,proto3" json:"cur_competition,omitempty"`
  5747. RewardCompetitionId int32 `protobuf:"varint,2,opt,name=reward_competition_id,json=rewardCompetitionId,proto3" json:"reward_competition_id,omitempty"`
  5748. RewardCompetitionSubId int32 `protobuf:"varint,3,opt,name=reward_competition_sub_id,json=rewardCompetitionSubId,proto3" json:"reward_competition_sub_id,omitempty"`
  5749. Divine *DivineInfo `protobuf:"bytes,4,opt,name=divine,proto3" json:"divine,omitempty"`
  5750. Idol *IdolInfo `protobuf:"bytes,5,opt,name=idol,proto3" json:"idol,omitempty"`
  5751. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5752. XXX_unrecognized []byte `json:"-"`
  5753. XXX_sizecache int32 `json:"-"`
  5754. }
  5755. func (m *RoleCompetition) Reset() { *m = RoleCompetition{} }
  5756. func (m *RoleCompetition) String() string { return proto.CompactTextString(m) }
  5757. func (*RoleCompetition) ProtoMessage() {}
  5758. func (*RoleCompetition) Descriptor() ([]byte, []int) {
  5759. return fileDescriptor_116e343673f7ffaf, []int{96}
  5760. }
  5761. func (m *RoleCompetition) XXX_Unmarshal(b []byte) error {
  5762. return xxx_messageInfo_RoleCompetition.Unmarshal(m, b)
  5763. }
  5764. func (m *RoleCompetition) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5765. return xxx_messageInfo_RoleCompetition.Marshal(b, m, deterministic)
  5766. }
  5767. func (m *RoleCompetition) XXX_Merge(src proto.Message) {
  5768. xxx_messageInfo_RoleCompetition.Merge(m, src)
  5769. }
  5770. func (m *RoleCompetition) XXX_Size() int {
  5771. return xxx_messageInfo_RoleCompetition.Size(m)
  5772. }
  5773. func (m *RoleCompetition) XXX_DiscardUnknown() {
  5774. xxx_messageInfo_RoleCompetition.DiscardUnknown(m)
  5775. }
  5776. var xxx_messageInfo_RoleCompetition proto.InternalMessageInfo
  5777. func (m *RoleCompetition) GetCurCompetition() *CompetitionInfo {
  5778. if m != nil {
  5779. return m.CurCompetition
  5780. }
  5781. return nil
  5782. }
  5783. func (m *RoleCompetition) GetRewardCompetitionId() int32 {
  5784. if m != nil {
  5785. return m.RewardCompetitionId
  5786. }
  5787. return 0
  5788. }
  5789. func (m *RoleCompetition) GetRewardCompetitionSubId() int32 {
  5790. if m != nil {
  5791. return m.RewardCompetitionSubId
  5792. }
  5793. return 0
  5794. }
  5795. func (m *RoleCompetition) GetDivine() *DivineInfo {
  5796. if m != nil {
  5797. return m.Divine
  5798. }
  5799. return nil
  5800. }
  5801. func (m *RoleCompetition) GetIdol() *IdolInfo {
  5802. if m != nil {
  5803. return m.Idol
  5804. }
  5805. return nil
  5806. }
  5807. // //////////////////////social好友
  5808. // 每次上线时需要重新加载
  5809. type RoleFriend struct {
  5810. SubList []uint64 `protobuf:"varint,1,rep,packed,name=sub_list,json=subList,proto3" json:"sub_list,omitempty"`
  5811. FansList []uint64 `protobuf:"varint,2,rep,packed,name=fans_list,json=fansList,proto3" json:"fans_list,omitempty"`
  5812. BlackList []uint64 `protobuf:"varint,3,rep,packed,name=black_list,json=blackList,proto3" json:"black_list,omitempty"`
  5813. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5814. XXX_unrecognized []byte `json:"-"`
  5815. XXX_sizecache int32 `json:"-"`
  5816. }
  5817. func (m *RoleFriend) Reset() { *m = RoleFriend{} }
  5818. func (m *RoleFriend) String() string { return proto.CompactTextString(m) }
  5819. func (*RoleFriend) ProtoMessage() {}
  5820. func (*RoleFriend) Descriptor() ([]byte, []int) {
  5821. return fileDescriptor_116e343673f7ffaf, []int{97}
  5822. }
  5823. func (m *RoleFriend) XXX_Unmarshal(b []byte) error {
  5824. return xxx_messageInfo_RoleFriend.Unmarshal(m, b)
  5825. }
  5826. func (m *RoleFriend) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5827. return xxx_messageInfo_RoleFriend.Marshal(b, m, deterministic)
  5828. }
  5829. func (m *RoleFriend) XXX_Merge(src proto.Message) {
  5830. xxx_messageInfo_RoleFriend.Merge(m, src)
  5831. }
  5832. func (m *RoleFriend) XXX_Size() int {
  5833. return xxx_messageInfo_RoleFriend.Size(m)
  5834. }
  5835. func (m *RoleFriend) XXX_DiscardUnknown() {
  5836. xxx_messageInfo_RoleFriend.DiscardUnknown(m)
  5837. }
  5838. var xxx_messageInfo_RoleFriend proto.InternalMessageInfo
  5839. func (m *RoleFriend) GetSubList() []uint64 {
  5840. if m != nil {
  5841. return m.SubList
  5842. }
  5843. return nil
  5844. }
  5845. func (m *RoleFriend) GetFansList() []uint64 {
  5846. if m != nil {
  5847. return m.FansList
  5848. }
  5849. return nil
  5850. }
  5851. func (m *RoleFriend) GetBlackList() []uint64 {
  5852. if m != nil {
  5853. return m.BlackList
  5854. }
  5855. return nil
  5856. }
  5857. type RoleSocial struct {
  5858. FriendInfo *RoleFriend `protobuf:"bytes,1,opt,name=friendInfo,proto3" json:"friendInfo,omitempty"`
  5859. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5860. XXX_unrecognized []byte `json:"-"`
  5861. XXX_sizecache int32 `json:"-"`
  5862. }
  5863. func (m *RoleSocial) Reset() { *m = RoleSocial{} }
  5864. func (m *RoleSocial) String() string { return proto.CompactTextString(m) }
  5865. func (*RoleSocial) ProtoMessage() {}
  5866. func (*RoleSocial) Descriptor() ([]byte, []int) {
  5867. return fileDescriptor_116e343673f7ffaf, []int{98}
  5868. }
  5869. func (m *RoleSocial) XXX_Unmarshal(b []byte) error {
  5870. return xxx_messageInfo_RoleSocial.Unmarshal(m, b)
  5871. }
  5872. func (m *RoleSocial) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5873. return xxx_messageInfo_RoleSocial.Marshal(b, m, deterministic)
  5874. }
  5875. func (m *RoleSocial) XXX_Merge(src proto.Message) {
  5876. xxx_messageInfo_RoleSocial.Merge(m, src)
  5877. }
  5878. func (m *RoleSocial) XXX_Size() int {
  5879. return xxx_messageInfo_RoleSocial.Size(m)
  5880. }
  5881. func (m *RoleSocial) XXX_DiscardUnknown() {
  5882. xxx_messageInfo_RoleSocial.DiscardUnknown(m)
  5883. }
  5884. var xxx_messageInfo_RoleSocial proto.InternalMessageInfo
  5885. func (m *RoleSocial) GetFriendInfo() *RoleFriend {
  5886. if m != nil {
  5887. return m.FriendInfo
  5888. }
  5889. return nil
  5890. }
  5891. // //////////////////////common
  5892. // 战斗玩家数据
  5893. type FightRoleInfo struct {
  5894. IsRobot bool `protobuf:"varint,1,opt,name=is_robot,json=isRobot,proto3" json:"is_robot,omitempty"`
  5895. BriefInfo *CommonPlayerBriefInfo `protobuf:"bytes,2,opt,name=brief_info,json=briefInfo,proto3" json:"brief_info,omitempty"`
  5896. // 系统数据
  5897. JobLevel int32 `protobuf:"varint,3,opt,name=job_level,json=jobLevel,proto3" json:"job_level,omitempty"`
  5898. AttrList []*KeyValueType `protobuf:"bytes,4,rep,name=attr_list,json=attrList,proto3" json:"attr_list,omitempty"`
  5899. FashionData *FashionData `protobuf:"bytes,5,opt,name=fashion_data,json=fashionData,proto3" json:"fashion_data,omitempty"`
  5900. HeroDataList []*HeroData `protobuf:"bytes,6,rep,name=hero_data_list,json=heroDataList,proto3" json:"hero_data_list,omitempty"`
  5901. MaxFightPower int32 `protobuf:"varint,7,opt,name=max_fight_power,json=maxFightPower,proto3" json:"max_fight_power,omitempty"`
  5902. BattlePetList []*PetData `protobuf:"bytes,8,rep,name=battle_pet_list,json=battlePetList,proto3" json:"battle_pet_list,omitempty"`
  5903. ChangePlayId int32 `protobuf:"varint,9,opt,name=change_play_id,json=changePlayId,proto3" json:"change_play_id,omitempty"`
  5904. RepressSkillPvpVal int32 `protobuf:"varint,10,opt,name=repress_skill_pvp_val,json=repressSkillPvpVal,proto3" json:"repress_skill_pvp_val,omitempty"`
  5905. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5906. XXX_unrecognized []byte `json:"-"`
  5907. XXX_sizecache int32 `json:"-"`
  5908. }
  5909. func (m *FightRoleInfo) Reset() { *m = FightRoleInfo{} }
  5910. func (m *FightRoleInfo) String() string { return proto.CompactTextString(m) }
  5911. func (*FightRoleInfo) ProtoMessage() {}
  5912. func (*FightRoleInfo) Descriptor() ([]byte, []int) {
  5913. return fileDescriptor_116e343673f7ffaf, []int{99}
  5914. }
  5915. func (m *FightRoleInfo) XXX_Unmarshal(b []byte) error {
  5916. return xxx_messageInfo_FightRoleInfo.Unmarshal(m, b)
  5917. }
  5918. func (m *FightRoleInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5919. return xxx_messageInfo_FightRoleInfo.Marshal(b, m, deterministic)
  5920. }
  5921. func (m *FightRoleInfo) XXX_Merge(src proto.Message) {
  5922. xxx_messageInfo_FightRoleInfo.Merge(m, src)
  5923. }
  5924. func (m *FightRoleInfo) XXX_Size() int {
  5925. return xxx_messageInfo_FightRoleInfo.Size(m)
  5926. }
  5927. func (m *FightRoleInfo) XXX_DiscardUnknown() {
  5928. xxx_messageInfo_FightRoleInfo.DiscardUnknown(m)
  5929. }
  5930. var xxx_messageInfo_FightRoleInfo proto.InternalMessageInfo
  5931. func (m *FightRoleInfo) GetIsRobot() bool {
  5932. if m != nil {
  5933. return m.IsRobot
  5934. }
  5935. return false
  5936. }
  5937. func (m *FightRoleInfo) GetBriefInfo() *CommonPlayerBriefInfo {
  5938. if m != nil {
  5939. return m.BriefInfo
  5940. }
  5941. return nil
  5942. }
  5943. func (m *FightRoleInfo) GetJobLevel() int32 {
  5944. if m != nil {
  5945. return m.JobLevel
  5946. }
  5947. return 0
  5948. }
  5949. func (m *FightRoleInfo) GetAttrList() []*KeyValueType {
  5950. if m != nil {
  5951. return m.AttrList
  5952. }
  5953. return nil
  5954. }
  5955. func (m *FightRoleInfo) GetFashionData() *FashionData {
  5956. if m != nil {
  5957. return m.FashionData
  5958. }
  5959. return nil
  5960. }
  5961. func (m *FightRoleInfo) GetHeroDataList() []*HeroData {
  5962. if m != nil {
  5963. return m.HeroDataList
  5964. }
  5965. return nil
  5966. }
  5967. func (m *FightRoleInfo) GetMaxFightPower() int32 {
  5968. if m != nil {
  5969. return m.MaxFightPower
  5970. }
  5971. return 0
  5972. }
  5973. func (m *FightRoleInfo) GetBattlePetList() []*PetData {
  5974. if m != nil {
  5975. return m.BattlePetList
  5976. }
  5977. return nil
  5978. }
  5979. func (m *FightRoleInfo) GetChangePlayId() int32 {
  5980. if m != nil {
  5981. return m.ChangePlayId
  5982. }
  5983. return 0
  5984. }
  5985. func (m *FightRoleInfo) GetRepressSkillPvpVal() int32 {
  5986. if m != nil {
  5987. return m.RepressSkillPvpVal
  5988. }
  5989. return 0
  5990. }
  5991. type ChatMessageInfo struct {
  5992. Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
  5993. SendTime uint64 `protobuf:"varint,2,opt,name=send_time,json=sendTime,proto3" json:"send_time,omitempty"`
  5994. SubType int32 `protobuf:"varint,3,opt,name=sub_type,json=subType,proto3" json:"sub_type,omitempty"`
  5995. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5996. XXX_unrecognized []byte `json:"-"`
  5997. XXX_sizecache int32 `json:"-"`
  5998. }
  5999. func (m *ChatMessageInfo) Reset() { *m = ChatMessageInfo{} }
  6000. func (m *ChatMessageInfo) String() string { return proto.CompactTextString(m) }
  6001. func (*ChatMessageInfo) ProtoMessage() {}
  6002. func (*ChatMessageInfo) Descriptor() ([]byte, []int) {
  6003. return fileDescriptor_116e343673f7ffaf, []int{100}
  6004. }
  6005. func (m *ChatMessageInfo) XXX_Unmarshal(b []byte) error {
  6006. return xxx_messageInfo_ChatMessageInfo.Unmarshal(m, b)
  6007. }
  6008. func (m *ChatMessageInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6009. return xxx_messageInfo_ChatMessageInfo.Marshal(b, m, deterministic)
  6010. }
  6011. func (m *ChatMessageInfo) XXX_Merge(src proto.Message) {
  6012. xxx_messageInfo_ChatMessageInfo.Merge(m, src)
  6013. }
  6014. func (m *ChatMessageInfo) XXX_Size() int {
  6015. return xxx_messageInfo_ChatMessageInfo.Size(m)
  6016. }
  6017. func (m *ChatMessageInfo) XXX_DiscardUnknown() {
  6018. xxx_messageInfo_ChatMessageInfo.DiscardUnknown(m)
  6019. }
  6020. var xxx_messageInfo_ChatMessageInfo proto.InternalMessageInfo
  6021. func (m *ChatMessageInfo) GetMessage() string {
  6022. if m != nil {
  6023. return m.Message
  6024. }
  6025. return ""
  6026. }
  6027. func (m *ChatMessageInfo) GetSendTime() uint64 {
  6028. if m != nil {
  6029. return m.SendTime
  6030. }
  6031. return 0
  6032. }
  6033. func (m *ChatMessageInfo) GetSubType() int32 {
  6034. if m != nil {
  6035. return m.SubType
  6036. }
  6037. return 0
  6038. }
  6039. type ChatPlayerBriefInfo struct {
  6040. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  6041. NickName string `protobuf:"bytes,2,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
  6042. ImgId int32 `protobuf:"varint,3,opt,name=img_id,json=imgId,proto3" json:"img_id,omitempty"`
  6043. ConfigId int32 `protobuf:"varint,4,opt,name=config_id,json=configId,proto3" json:"config_id,omitempty"`
  6044. Level int32 `protobuf:"varint,5,opt,name=level,proto3" json:"level,omitempty"`
  6045. HeadFrameId int32 `protobuf:"varint,6,opt,name=head_frame_id,json=headFrameId,proto3" json:"head_frame_id,omitempty"`
  6046. Gender int32 `protobuf:"varint,7,opt,name=gender,proto3" json:"gender,omitempty"`
  6047. VipLevel int32 `protobuf:"varint,8,opt,name=vip_level,json=vipLevel,proto3" json:"vip_level,omitempty"`
  6048. HeadId int32 `protobuf:"varint,9,opt,name=head_id,json=headId,proto3" json:"head_id,omitempty"`
  6049. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6050. XXX_unrecognized []byte `json:"-"`
  6051. XXX_sizecache int32 `json:"-"`
  6052. }
  6053. func (m *ChatPlayerBriefInfo) Reset() { *m = ChatPlayerBriefInfo{} }
  6054. func (m *ChatPlayerBriefInfo) String() string { return proto.CompactTextString(m) }
  6055. func (*ChatPlayerBriefInfo) ProtoMessage() {}
  6056. func (*ChatPlayerBriefInfo) Descriptor() ([]byte, []int) {
  6057. return fileDescriptor_116e343673f7ffaf, []int{101}
  6058. }
  6059. func (m *ChatPlayerBriefInfo) XXX_Unmarshal(b []byte) error {
  6060. return xxx_messageInfo_ChatPlayerBriefInfo.Unmarshal(m, b)
  6061. }
  6062. func (m *ChatPlayerBriefInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6063. return xxx_messageInfo_ChatPlayerBriefInfo.Marshal(b, m, deterministic)
  6064. }
  6065. func (m *ChatPlayerBriefInfo) XXX_Merge(src proto.Message) {
  6066. xxx_messageInfo_ChatPlayerBriefInfo.Merge(m, src)
  6067. }
  6068. func (m *ChatPlayerBriefInfo) XXX_Size() int {
  6069. return xxx_messageInfo_ChatPlayerBriefInfo.Size(m)
  6070. }
  6071. func (m *ChatPlayerBriefInfo) XXX_DiscardUnknown() {
  6072. xxx_messageInfo_ChatPlayerBriefInfo.DiscardUnknown(m)
  6073. }
  6074. var xxx_messageInfo_ChatPlayerBriefInfo proto.InternalMessageInfo
  6075. func (m *ChatPlayerBriefInfo) GetUid() uint64 {
  6076. if m != nil {
  6077. return m.Uid
  6078. }
  6079. return 0
  6080. }
  6081. func (m *ChatPlayerBriefInfo) GetNickName() string {
  6082. if m != nil {
  6083. return m.NickName
  6084. }
  6085. return ""
  6086. }
  6087. func (m *ChatPlayerBriefInfo) GetImgId() int32 {
  6088. if m != nil {
  6089. return m.ImgId
  6090. }
  6091. return 0
  6092. }
  6093. func (m *ChatPlayerBriefInfo) GetConfigId() int32 {
  6094. if m != nil {
  6095. return m.ConfigId
  6096. }
  6097. return 0
  6098. }
  6099. func (m *ChatPlayerBriefInfo) GetLevel() int32 {
  6100. if m != nil {
  6101. return m.Level
  6102. }
  6103. return 0
  6104. }
  6105. func (m *ChatPlayerBriefInfo) GetHeadFrameId() int32 {
  6106. if m != nil {
  6107. return m.HeadFrameId
  6108. }
  6109. return 0
  6110. }
  6111. func (m *ChatPlayerBriefInfo) GetGender() int32 {
  6112. if m != nil {
  6113. return m.Gender
  6114. }
  6115. return 0
  6116. }
  6117. func (m *ChatPlayerBriefInfo) GetVipLevel() int32 {
  6118. if m != nil {
  6119. return m.VipLevel
  6120. }
  6121. return 0
  6122. }
  6123. func (m *ChatPlayerBriefInfo) GetHeadId() int32 {
  6124. if m != nil {
  6125. return m.HeadId
  6126. }
  6127. return 0
  6128. }
  6129. type CommonPlayerBriefInfo struct {
  6130. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  6131. NickName string `protobuf:"bytes,2,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
  6132. ImgId int32 `protobuf:"varint,3,opt,name=img_id,json=imgId,proto3" json:"img_id,omitempty"`
  6133. Gender int32 `protobuf:"varint,4,opt,name=gender,proto3" json:"gender,omitempty"`
  6134. Level int32 `protobuf:"varint,5,opt,name=level,proto3" json:"level,omitempty"`
  6135. ConfigId int32 `protobuf:"varint,6,opt,name=config_id,json=configId,proto3" json:"config_id,omitempty"`
  6136. FightPower int32 `protobuf:"varint,7,opt,name=fight_power,json=fightPower,proto3" json:"fight_power,omitempty"`
  6137. OnlineState bool `protobuf:"varint,8,opt,name=online_state,json=onlineState,proto3" json:"online_state,omitempty"`
  6138. OnlineTime uint64 `protobuf:"varint,9,opt,name=online_time,json=onlineTime,proto3" json:"online_time,omitempty"`
  6139. TowerLevel int32 `protobuf:"varint,10,opt,name=tower_level,json=towerLevel,proto3" json:"tower_level,omitempty"`
  6140. TowerTime uint64 `protobuf:"varint,11,opt,name=tower_time,json=towerTime,proto3" json:"tower_time,omitempty"`
  6141. MapLevelId int32 `protobuf:"varint,12,opt,name=map_level_id,json=mapLevelId,proto3" json:"map_level_id,omitempty"`
  6142. BattleRecordId uint64 `protobuf:"varint,13,opt,name=battle_record_id,json=battleRecordId,proto3" json:"battle_record_id,omitempty"`
  6143. HeadFrameId int32 `protobuf:"varint,14,opt,name=head_frame_id,json=headFrameId,proto3" json:"head_frame_id,omitempty"`
  6144. VipLevel int32 `protobuf:"varint,15,opt,name=vip_level,json=vipLevel,proto3" json:"vip_level,omitempty"`
  6145. SelectZone int32 `protobuf:"varint,16,opt,name=select_zone,json=selectZone,proto3" json:"select_zone,omitempty"`
  6146. HeadId int32 `protobuf:"varint,17,opt,name=head_id,json=headId,proto3" json:"head_id,omitempty"`
  6147. // 后续字段不做保存操作
  6148. TotalRecharge float32 `protobuf:"fixed32,30,opt,name=total_recharge,json=totalRecharge,proto3" json:"total_recharge,omitempty"`
  6149. LastRechargeTime uint64 `protobuf:"varint,31,opt,name=last_recharge_time,json=lastRechargeTime,proto3" json:"last_recharge_time,omitempty"`
  6150. Rmb uint64 `protobuf:"varint,32,opt,name=rmb,proto3" json:"rmb,omitempty"`
  6151. Zeny uint64 `protobuf:"varint,33,opt,name=zeny,proto3" json:"zeny,omitempty"`
  6152. MaxFightPower uint32 `protobuf:"varint,34,opt,name=max_fight_power,json=maxFightPower,proto3" json:"max_fight_power,omitempty"`
  6153. Daochang100Tips string `protobuf:"bytes,35,opt,name=daochang100_tips,json=daochang100Tips,proto3" json:"daochang100_tips,omitempty"`
  6154. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6155. XXX_unrecognized []byte `json:"-"`
  6156. XXX_sizecache int32 `json:"-"`
  6157. }
  6158. func (m *CommonPlayerBriefInfo) Reset() { *m = CommonPlayerBriefInfo{} }
  6159. func (m *CommonPlayerBriefInfo) String() string { return proto.CompactTextString(m) }
  6160. func (*CommonPlayerBriefInfo) ProtoMessage() {}
  6161. func (*CommonPlayerBriefInfo) Descriptor() ([]byte, []int) {
  6162. return fileDescriptor_116e343673f7ffaf, []int{102}
  6163. }
  6164. func (m *CommonPlayerBriefInfo) XXX_Unmarshal(b []byte) error {
  6165. return xxx_messageInfo_CommonPlayerBriefInfo.Unmarshal(m, b)
  6166. }
  6167. func (m *CommonPlayerBriefInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6168. return xxx_messageInfo_CommonPlayerBriefInfo.Marshal(b, m, deterministic)
  6169. }
  6170. func (m *CommonPlayerBriefInfo) XXX_Merge(src proto.Message) {
  6171. xxx_messageInfo_CommonPlayerBriefInfo.Merge(m, src)
  6172. }
  6173. func (m *CommonPlayerBriefInfo) XXX_Size() int {
  6174. return xxx_messageInfo_CommonPlayerBriefInfo.Size(m)
  6175. }
  6176. func (m *CommonPlayerBriefInfo) XXX_DiscardUnknown() {
  6177. xxx_messageInfo_CommonPlayerBriefInfo.DiscardUnknown(m)
  6178. }
  6179. var xxx_messageInfo_CommonPlayerBriefInfo proto.InternalMessageInfo
  6180. func (m *CommonPlayerBriefInfo) GetUid() uint64 {
  6181. if m != nil {
  6182. return m.Uid
  6183. }
  6184. return 0
  6185. }
  6186. func (m *CommonPlayerBriefInfo) GetNickName() string {
  6187. if m != nil {
  6188. return m.NickName
  6189. }
  6190. return ""
  6191. }
  6192. func (m *CommonPlayerBriefInfo) GetImgId() int32 {
  6193. if m != nil {
  6194. return m.ImgId
  6195. }
  6196. return 0
  6197. }
  6198. func (m *CommonPlayerBriefInfo) GetGender() int32 {
  6199. if m != nil {
  6200. return m.Gender
  6201. }
  6202. return 0
  6203. }
  6204. func (m *CommonPlayerBriefInfo) GetLevel() int32 {
  6205. if m != nil {
  6206. return m.Level
  6207. }
  6208. return 0
  6209. }
  6210. func (m *CommonPlayerBriefInfo) GetConfigId() int32 {
  6211. if m != nil {
  6212. return m.ConfigId
  6213. }
  6214. return 0
  6215. }
  6216. func (m *CommonPlayerBriefInfo) GetFightPower() int32 {
  6217. if m != nil {
  6218. return m.FightPower
  6219. }
  6220. return 0
  6221. }
  6222. func (m *CommonPlayerBriefInfo) GetOnlineState() bool {
  6223. if m != nil {
  6224. return m.OnlineState
  6225. }
  6226. return false
  6227. }
  6228. func (m *CommonPlayerBriefInfo) GetOnlineTime() uint64 {
  6229. if m != nil {
  6230. return m.OnlineTime
  6231. }
  6232. return 0
  6233. }
  6234. func (m *CommonPlayerBriefInfo) GetTowerLevel() int32 {
  6235. if m != nil {
  6236. return m.TowerLevel
  6237. }
  6238. return 0
  6239. }
  6240. func (m *CommonPlayerBriefInfo) GetTowerTime() uint64 {
  6241. if m != nil {
  6242. return m.TowerTime
  6243. }
  6244. return 0
  6245. }
  6246. func (m *CommonPlayerBriefInfo) GetMapLevelId() int32 {
  6247. if m != nil {
  6248. return m.MapLevelId
  6249. }
  6250. return 0
  6251. }
  6252. func (m *CommonPlayerBriefInfo) GetBattleRecordId() uint64 {
  6253. if m != nil {
  6254. return m.BattleRecordId
  6255. }
  6256. return 0
  6257. }
  6258. func (m *CommonPlayerBriefInfo) GetHeadFrameId() int32 {
  6259. if m != nil {
  6260. return m.HeadFrameId
  6261. }
  6262. return 0
  6263. }
  6264. func (m *CommonPlayerBriefInfo) GetVipLevel() int32 {
  6265. if m != nil {
  6266. return m.VipLevel
  6267. }
  6268. return 0
  6269. }
  6270. func (m *CommonPlayerBriefInfo) GetSelectZone() int32 {
  6271. if m != nil {
  6272. return m.SelectZone
  6273. }
  6274. return 0
  6275. }
  6276. func (m *CommonPlayerBriefInfo) GetHeadId() int32 {
  6277. if m != nil {
  6278. return m.HeadId
  6279. }
  6280. return 0
  6281. }
  6282. func (m *CommonPlayerBriefInfo) GetTotalRecharge() float32 {
  6283. if m != nil {
  6284. return m.TotalRecharge
  6285. }
  6286. return 0
  6287. }
  6288. func (m *CommonPlayerBriefInfo) GetLastRechargeTime() uint64 {
  6289. if m != nil {
  6290. return m.LastRechargeTime
  6291. }
  6292. return 0
  6293. }
  6294. func (m *CommonPlayerBriefInfo) GetRmb() uint64 {
  6295. if m != nil {
  6296. return m.Rmb
  6297. }
  6298. return 0
  6299. }
  6300. func (m *CommonPlayerBriefInfo) GetZeny() uint64 {
  6301. if m != nil {
  6302. return m.Zeny
  6303. }
  6304. return 0
  6305. }
  6306. func (m *CommonPlayerBriefInfo) GetMaxFightPower() uint32 {
  6307. if m != nil {
  6308. return m.MaxFightPower
  6309. }
  6310. return 0
  6311. }
  6312. func (m *CommonPlayerBriefInfo) GetDaochang100Tips() string {
  6313. if m != nil {
  6314. return m.Daochang100Tips
  6315. }
  6316. return ""
  6317. }
  6318. type PlayerStateInfo struct {
  6319. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  6320. Online bool `protobuf:"varint,2,opt,name=online,proto3" json:"online,omitempty"`
  6321. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6322. XXX_unrecognized []byte `json:"-"`
  6323. XXX_sizecache int32 `json:"-"`
  6324. }
  6325. func (m *PlayerStateInfo) Reset() { *m = PlayerStateInfo{} }
  6326. func (m *PlayerStateInfo) String() string { return proto.CompactTextString(m) }
  6327. func (*PlayerStateInfo) ProtoMessage() {}
  6328. func (*PlayerStateInfo) Descriptor() ([]byte, []int) {
  6329. return fileDescriptor_116e343673f7ffaf, []int{103}
  6330. }
  6331. func (m *PlayerStateInfo) XXX_Unmarshal(b []byte) error {
  6332. return xxx_messageInfo_PlayerStateInfo.Unmarshal(m, b)
  6333. }
  6334. func (m *PlayerStateInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6335. return xxx_messageInfo_PlayerStateInfo.Marshal(b, m, deterministic)
  6336. }
  6337. func (m *PlayerStateInfo) XXX_Merge(src proto.Message) {
  6338. xxx_messageInfo_PlayerStateInfo.Merge(m, src)
  6339. }
  6340. func (m *PlayerStateInfo) XXX_Size() int {
  6341. return xxx_messageInfo_PlayerStateInfo.Size(m)
  6342. }
  6343. func (m *PlayerStateInfo) XXX_DiscardUnknown() {
  6344. xxx_messageInfo_PlayerStateInfo.DiscardUnknown(m)
  6345. }
  6346. var xxx_messageInfo_PlayerStateInfo proto.InternalMessageInfo
  6347. func (m *PlayerStateInfo) GetUid() uint64 {
  6348. if m != nil {
  6349. return m.Uid
  6350. }
  6351. return 0
  6352. }
  6353. func (m *PlayerStateInfo) GetOnline() bool {
  6354. if m != nil {
  6355. return m.Online
  6356. }
  6357. return false
  6358. }
  6359. type SystemMessage struct {
  6360. Type int32 `protobuf:"varint,1,opt,name=type,proto3" json:"type,omitempty"`
  6361. NickName string `protobuf:"bytes,2,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
  6362. ParamId []int32 `protobuf:"varint,3,rep,packed,name=param_id,json=paramId,proto3" json:"param_id,omitempty"`
  6363. SendTime uint64 `protobuf:"varint,4,opt,name=send_time,json=sendTime,proto3" json:"send_time,omitempty"`
  6364. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6365. XXX_unrecognized []byte `json:"-"`
  6366. XXX_sizecache int32 `json:"-"`
  6367. }
  6368. func (m *SystemMessage) Reset() { *m = SystemMessage{} }
  6369. func (m *SystemMessage) String() string { return proto.CompactTextString(m) }
  6370. func (*SystemMessage) ProtoMessage() {}
  6371. func (*SystemMessage) Descriptor() ([]byte, []int) {
  6372. return fileDescriptor_116e343673f7ffaf, []int{104}
  6373. }
  6374. func (m *SystemMessage) XXX_Unmarshal(b []byte) error {
  6375. return xxx_messageInfo_SystemMessage.Unmarshal(m, b)
  6376. }
  6377. func (m *SystemMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6378. return xxx_messageInfo_SystemMessage.Marshal(b, m, deterministic)
  6379. }
  6380. func (m *SystemMessage) XXX_Merge(src proto.Message) {
  6381. xxx_messageInfo_SystemMessage.Merge(m, src)
  6382. }
  6383. func (m *SystemMessage) XXX_Size() int {
  6384. return xxx_messageInfo_SystemMessage.Size(m)
  6385. }
  6386. func (m *SystemMessage) XXX_DiscardUnknown() {
  6387. xxx_messageInfo_SystemMessage.DiscardUnknown(m)
  6388. }
  6389. var xxx_messageInfo_SystemMessage proto.InternalMessageInfo
  6390. func (m *SystemMessage) GetType() int32 {
  6391. if m != nil {
  6392. return m.Type
  6393. }
  6394. return 0
  6395. }
  6396. func (m *SystemMessage) GetNickName() string {
  6397. if m != nil {
  6398. return m.NickName
  6399. }
  6400. return ""
  6401. }
  6402. func (m *SystemMessage) GetParamId() []int32 {
  6403. if m != nil {
  6404. return m.ParamId
  6405. }
  6406. return nil
  6407. }
  6408. func (m *SystemMessage) GetSendTime() uint64 {
  6409. if m != nil {
  6410. return m.SendTime
  6411. }
  6412. return 0
  6413. }
  6414. type MessageContentInfo struct {
  6415. Type int32 `protobuf:"varint,1,opt,name=type,proto3" json:"type,omitempty"`
  6416. FromId *ChatPlayerBriefInfo `protobuf:"bytes,2,opt,name=from_id,json=fromId,proto3" json:"from_id,omitempty"`
  6417. Message *ChatMessageInfo `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
  6418. TargetId uint64 `protobuf:"varint,4,opt,name=target_id,json=targetId,proto3" json:"target_id,omitempty"`
  6419. ParamList []int32 `protobuf:"varint,5,rep,packed,name=param_list,json=paramList,proto3" json:"param_list,omitempty"`
  6420. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6421. XXX_unrecognized []byte `json:"-"`
  6422. XXX_sizecache int32 `json:"-"`
  6423. }
  6424. func (m *MessageContentInfo) Reset() { *m = MessageContentInfo{} }
  6425. func (m *MessageContentInfo) String() string { return proto.CompactTextString(m) }
  6426. func (*MessageContentInfo) ProtoMessage() {}
  6427. func (*MessageContentInfo) Descriptor() ([]byte, []int) {
  6428. return fileDescriptor_116e343673f7ffaf, []int{105}
  6429. }
  6430. func (m *MessageContentInfo) XXX_Unmarshal(b []byte) error {
  6431. return xxx_messageInfo_MessageContentInfo.Unmarshal(m, b)
  6432. }
  6433. func (m *MessageContentInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6434. return xxx_messageInfo_MessageContentInfo.Marshal(b, m, deterministic)
  6435. }
  6436. func (m *MessageContentInfo) XXX_Merge(src proto.Message) {
  6437. xxx_messageInfo_MessageContentInfo.Merge(m, src)
  6438. }
  6439. func (m *MessageContentInfo) XXX_Size() int {
  6440. return xxx_messageInfo_MessageContentInfo.Size(m)
  6441. }
  6442. func (m *MessageContentInfo) XXX_DiscardUnknown() {
  6443. xxx_messageInfo_MessageContentInfo.DiscardUnknown(m)
  6444. }
  6445. var xxx_messageInfo_MessageContentInfo proto.InternalMessageInfo
  6446. func (m *MessageContentInfo) GetType() int32 {
  6447. if m != nil {
  6448. return m.Type
  6449. }
  6450. return 0
  6451. }
  6452. func (m *MessageContentInfo) GetFromId() *ChatPlayerBriefInfo {
  6453. if m != nil {
  6454. return m.FromId
  6455. }
  6456. return nil
  6457. }
  6458. func (m *MessageContentInfo) GetMessage() *ChatMessageInfo {
  6459. if m != nil {
  6460. return m.Message
  6461. }
  6462. return nil
  6463. }
  6464. func (m *MessageContentInfo) GetTargetId() uint64 {
  6465. if m != nil {
  6466. return m.TargetId
  6467. }
  6468. return 0
  6469. }
  6470. func (m *MessageContentInfo) GetParamList() []int32 {
  6471. if m != nil {
  6472. return m.ParamList
  6473. }
  6474. return nil
  6475. }
  6476. type RoleChat struct {
  6477. OfflineMsgPlayerList []*ChatPlayerBriefInfo `protobuf:"bytes,1,rep,name=offline_msg_player_list,json=offlineMsgPlayerList,proto3" json:"offline_msg_player_list,omitempty"`
  6478. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6479. XXX_unrecognized []byte `json:"-"`
  6480. XXX_sizecache int32 `json:"-"`
  6481. }
  6482. func (m *RoleChat) Reset() { *m = RoleChat{} }
  6483. func (m *RoleChat) String() string { return proto.CompactTextString(m) }
  6484. func (*RoleChat) ProtoMessage() {}
  6485. func (*RoleChat) Descriptor() ([]byte, []int) {
  6486. return fileDescriptor_116e343673f7ffaf, []int{106}
  6487. }
  6488. func (m *RoleChat) XXX_Unmarshal(b []byte) error {
  6489. return xxx_messageInfo_RoleChat.Unmarshal(m, b)
  6490. }
  6491. func (m *RoleChat) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6492. return xxx_messageInfo_RoleChat.Marshal(b, m, deterministic)
  6493. }
  6494. func (m *RoleChat) XXX_Merge(src proto.Message) {
  6495. xxx_messageInfo_RoleChat.Merge(m, src)
  6496. }
  6497. func (m *RoleChat) XXX_Size() int {
  6498. return xxx_messageInfo_RoleChat.Size(m)
  6499. }
  6500. func (m *RoleChat) XXX_DiscardUnknown() {
  6501. xxx_messageInfo_RoleChat.DiscardUnknown(m)
  6502. }
  6503. var xxx_messageInfo_RoleChat proto.InternalMessageInfo
  6504. func (m *RoleChat) GetOfflineMsgPlayerList() []*ChatPlayerBriefInfo {
  6505. if m != nil {
  6506. return m.OfflineMsgPlayerList
  6507. }
  6508. return nil
  6509. }
  6510. type BuyInfo struct {
  6511. GoodsId int32 `protobuf:"varint,1,opt,name=goods_id,json=goodsId,proto3" json:"goods_id,omitempty"`
  6512. BuyNum int32 `protobuf:"varint,2,opt,name=buy_num,json=buyNum,proto3" json:"buy_num,omitempty"`
  6513. BuyTime uint64 `protobuf:"varint,3,opt,name=buy_time,json=buyTime,proto3" json:"buy_time,omitempty"`
  6514. RefTime int64 `protobuf:"varint,5,opt,name=ref_time,json=refTime,proto3" json:"ref_time,omitempty"`
  6515. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6516. XXX_unrecognized []byte `json:"-"`
  6517. XXX_sizecache int32 `json:"-"`
  6518. }
  6519. func (m *BuyInfo) Reset() { *m = BuyInfo{} }
  6520. func (m *BuyInfo) String() string { return proto.CompactTextString(m) }
  6521. func (*BuyInfo) ProtoMessage() {}
  6522. func (*BuyInfo) Descriptor() ([]byte, []int) {
  6523. return fileDescriptor_116e343673f7ffaf, []int{107}
  6524. }
  6525. func (m *BuyInfo) XXX_Unmarshal(b []byte) error {
  6526. return xxx_messageInfo_BuyInfo.Unmarshal(m, b)
  6527. }
  6528. func (m *BuyInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6529. return xxx_messageInfo_BuyInfo.Marshal(b, m, deterministic)
  6530. }
  6531. func (m *BuyInfo) XXX_Merge(src proto.Message) {
  6532. xxx_messageInfo_BuyInfo.Merge(m, src)
  6533. }
  6534. func (m *BuyInfo) XXX_Size() int {
  6535. return xxx_messageInfo_BuyInfo.Size(m)
  6536. }
  6537. func (m *BuyInfo) XXX_DiscardUnknown() {
  6538. xxx_messageInfo_BuyInfo.DiscardUnknown(m)
  6539. }
  6540. var xxx_messageInfo_BuyInfo proto.InternalMessageInfo
  6541. func (m *BuyInfo) GetGoodsId() int32 {
  6542. if m != nil {
  6543. return m.GoodsId
  6544. }
  6545. return 0
  6546. }
  6547. func (m *BuyInfo) GetBuyNum() int32 {
  6548. if m != nil {
  6549. return m.BuyNum
  6550. }
  6551. return 0
  6552. }
  6553. func (m *BuyInfo) GetBuyTime() uint64 {
  6554. if m != nil {
  6555. return m.BuyTime
  6556. }
  6557. return 0
  6558. }
  6559. func (m *BuyInfo) GetRefTime() int64 {
  6560. if m != nil {
  6561. return m.RefTime
  6562. }
  6563. return 0
  6564. }
  6565. // 黑市类型商店数据
  6566. type SpecialShop struct {
  6567. RefreshTime int64 `protobuf:"varint,1,opt,name=refresh_time,json=refreshTime,proto3" json:"refresh_time,omitempty"`
  6568. GoodsList []int32 `protobuf:"varint,2,rep,packed,name=goods_list,json=goodsList,proto3" json:"goods_list,omitempty"`
  6569. RefreshCount int32 `protobuf:"varint,3,opt,name=refresh_count,json=refreshCount,proto3" json:"refresh_count,omitempty"`
  6570. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6571. XXX_unrecognized []byte `json:"-"`
  6572. XXX_sizecache int32 `json:"-"`
  6573. }
  6574. func (m *SpecialShop) Reset() { *m = SpecialShop{} }
  6575. func (m *SpecialShop) String() string { return proto.CompactTextString(m) }
  6576. func (*SpecialShop) ProtoMessage() {}
  6577. func (*SpecialShop) Descriptor() ([]byte, []int) {
  6578. return fileDescriptor_116e343673f7ffaf, []int{108}
  6579. }
  6580. func (m *SpecialShop) XXX_Unmarshal(b []byte) error {
  6581. return xxx_messageInfo_SpecialShop.Unmarshal(m, b)
  6582. }
  6583. func (m *SpecialShop) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6584. return xxx_messageInfo_SpecialShop.Marshal(b, m, deterministic)
  6585. }
  6586. func (m *SpecialShop) XXX_Merge(src proto.Message) {
  6587. xxx_messageInfo_SpecialShop.Merge(m, src)
  6588. }
  6589. func (m *SpecialShop) XXX_Size() int {
  6590. return xxx_messageInfo_SpecialShop.Size(m)
  6591. }
  6592. func (m *SpecialShop) XXX_DiscardUnknown() {
  6593. xxx_messageInfo_SpecialShop.DiscardUnknown(m)
  6594. }
  6595. var xxx_messageInfo_SpecialShop proto.InternalMessageInfo
  6596. func (m *SpecialShop) GetRefreshTime() int64 {
  6597. if m != nil {
  6598. return m.RefreshTime
  6599. }
  6600. return 0
  6601. }
  6602. func (m *SpecialShop) GetGoodsList() []int32 {
  6603. if m != nil {
  6604. return m.GoodsList
  6605. }
  6606. return nil
  6607. }
  6608. func (m *SpecialShop) GetRefreshCount() int32 {
  6609. if m != nil {
  6610. return m.RefreshCount
  6611. }
  6612. return 0
  6613. }
  6614. type ShopBuyInfo struct {
  6615. GoodsType int32 `protobuf:"varint,1,opt,name=goods_type,json=goodsType,proto3" json:"goods_type,omitempty"`
  6616. ItemInfo []*BuyInfo `protobuf:"bytes,2,rep,name=item_info,json=itemInfo,proto3" json:"item_info,omitempty"`
  6617. RefData *SpecialShop `protobuf:"bytes,3,opt,name=ref_data,json=refData,proto3" json:"ref_data,omitempty"`
  6618. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6619. XXX_unrecognized []byte `json:"-"`
  6620. XXX_sizecache int32 `json:"-"`
  6621. }
  6622. func (m *ShopBuyInfo) Reset() { *m = ShopBuyInfo{} }
  6623. func (m *ShopBuyInfo) String() string { return proto.CompactTextString(m) }
  6624. func (*ShopBuyInfo) ProtoMessage() {}
  6625. func (*ShopBuyInfo) Descriptor() ([]byte, []int) {
  6626. return fileDescriptor_116e343673f7ffaf, []int{109}
  6627. }
  6628. func (m *ShopBuyInfo) XXX_Unmarshal(b []byte) error {
  6629. return xxx_messageInfo_ShopBuyInfo.Unmarshal(m, b)
  6630. }
  6631. func (m *ShopBuyInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6632. return xxx_messageInfo_ShopBuyInfo.Marshal(b, m, deterministic)
  6633. }
  6634. func (m *ShopBuyInfo) XXX_Merge(src proto.Message) {
  6635. xxx_messageInfo_ShopBuyInfo.Merge(m, src)
  6636. }
  6637. func (m *ShopBuyInfo) XXX_Size() int {
  6638. return xxx_messageInfo_ShopBuyInfo.Size(m)
  6639. }
  6640. func (m *ShopBuyInfo) XXX_DiscardUnknown() {
  6641. xxx_messageInfo_ShopBuyInfo.DiscardUnknown(m)
  6642. }
  6643. var xxx_messageInfo_ShopBuyInfo proto.InternalMessageInfo
  6644. func (m *ShopBuyInfo) GetGoodsType() int32 {
  6645. if m != nil {
  6646. return m.GoodsType
  6647. }
  6648. return 0
  6649. }
  6650. func (m *ShopBuyInfo) GetItemInfo() []*BuyInfo {
  6651. if m != nil {
  6652. return m.ItemInfo
  6653. }
  6654. return nil
  6655. }
  6656. func (m *ShopBuyInfo) GetRefData() *SpecialShop {
  6657. if m != nil {
  6658. return m.RefData
  6659. }
  6660. return nil
  6661. }
  6662. type ShopItem struct {
  6663. GoodsId int32 `protobuf:"varint,1,opt,name=goods_id,json=goodsId,proto3" json:"goods_id,omitempty"`
  6664. Price int32 `protobuf:"varint,3,opt,name=price,proto3" json:"price,omitempty"`
  6665. CurPrice int32 `protobuf:"varint,4,opt,name=cur_price,json=curPrice,proto3" json:"cur_price,omitempty"`
  6666. Dispercent int32 `protobuf:"varint,6,opt,name=dispercent,proto3" json:"dispercent,omitempty"`
  6667. Hot bool `protobuf:"varint,7,opt,name=hot,proto3" json:"hot,omitempty"`
  6668. LimitType int32 `protobuf:"varint,9,opt,name=limit_type,json=limitType,proto3" json:"limit_type,omitempty"`
  6669. Count int32 `protobuf:"varint,10,opt,name=count,proto3" json:"count,omitempty"`
  6670. Circle int32 `protobuf:"varint,11,opt,name=circle,proto3" json:"circle,omitempty"`
  6671. StartTime int64 `protobuf:"varint,13,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
  6672. EndTime int64 `protobuf:"varint,14,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
  6673. HdItemId int32 `protobuf:"varint,15,opt,name=hd_item_id,json=hdItemId,proto3" json:"hd_item_id,omitempty"`
  6674. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6675. XXX_unrecognized []byte `json:"-"`
  6676. XXX_sizecache int32 `json:"-"`
  6677. }
  6678. func (m *ShopItem) Reset() { *m = ShopItem{} }
  6679. func (m *ShopItem) String() string { return proto.CompactTextString(m) }
  6680. func (*ShopItem) ProtoMessage() {}
  6681. func (*ShopItem) Descriptor() ([]byte, []int) {
  6682. return fileDescriptor_116e343673f7ffaf, []int{110}
  6683. }
  6684. func (m *ShopItem) XXX_Unmarshal(b []byte) error {
  6685. return xxx_messageInfo_ShopItem.Unmarshal(m, b)
  6686. }
  6687. func (m *ShopItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6688. return xxx_messageInfo_ShopItem.Marshal(b, m, deterministic)
  6689. }
  6690. func (m *ShopItem) XXX_Merge(src proto.Message) {
  6691. xxx_messageInfo_ShopItem.Merge(m, src)
  6692. }
  6693. func (m *ShopItem) XXX_Size() int {
  6694. return xxx_messageInfo_ShopItem.Size(m)
  6695. }
  6696. func (m *ShopItem) XXX_DiscardUnknown() {
  6697. xxx_messageInfo_ShopItem.DiscardUnknown(m)
  6698. }
  6699. var xxx_messageInfo_ShopItem proto.InternalMessageInfo
  6700. func (m *ShopItem) GetGoodsId() int32 {
  6701. if m != nil {
  6702. return m.GoodsId
  6703. }
  6704. return 0
  6705. }
  6706. func (m *ShopItem) GetPrice() int32 {
  6707. if m != nil {
  6708. return m.Price
  6709. }
  6710. return 0
  6711. }
  6712. func (m *ShopItem) GetCurPrice() int32 {
  6713. if m != nil {
  6714. return m.CurPrice
  6715. }
  6716. return 0
  6717. }
  6718. func (m *ShopItem) GetDispercent() int32 {
  6719. if m != nil {
  6720. return m.Dispercent
  6721. }
  6722. return 0
  6723. }
  6724. func (m *ShopItem) GetHot() bool {
  6725. if m != nil {
  6726. return m.Hot
  6727. }
  6728. return false
  6729. }
  6730. func (m *ShopItem) GetLimitType() int32 {
  6731. if m != nil {
  6732. return m.LimitType
  6733. }
  6734. return 0
  6735. }
  6736. func (m *ShopItem) GetCount() int32 {
  6737. if m != nil {
  6738. return m.Count
  6739. }
  6740. return 0
  6741. }
  6742. func (m *ShopItem) GetCircle() int32 {
  6743. if m != nil {
  6744. return m.Circle
  6745. }
  6746. return 0
  6747. }
  6748. func (m *ShopItem) GetStartTime() int64 {
  6749. if m != nil {
  6750. return m.StartTime
  6751. }
  6752. return 0
  6753. }
  6754. func (m *ShopItem) GetEndTime() int64 {
  6755. if m != nil {
  6756. return m.EndTime
  6757. }
  6758. return 0
  6759. }
  6760. func (m *ShopItem) GetHdItemId() int32 {
  6761. if m != nil {
  6762. return m.HdItemId
  6763. }
  6764. return 0
  6765. }
  6766. type ShopData struct {
  6767. GoodsType int32 `protobuf:"varint,1,opt,name=goods_type,json=goodsType,proto3" json:"goods_type,omitempty"`
  6768. ItemInfo []*ShopItem `protobuf:"bytes,2,rep,name=item_info,json=itemInfo,proto3" json:"item_info,omitempty"`
  6769. BuyInfo []*BuyInfo `protobuf:"bytes,3,rep,name=buy_info,json=buyInfo,proto3" json:"buy_info,omitempty"`
  6770. RefreshTime int64 `protobuf:"varint,4,opt,name=refresh_time,json=refreshTime,proto3" json:"refresh_time,omitempty"`
  6771. RefreshCount int32 `protobuf:"varint,5,opt,name=refresh_count,json=refreshCount,proto3" json:"refresh_count,omitempty"`
  6772. DayEnd int64 `protobuf:"varint,6,opt,name=day_end,json=dayEnd,proto3" json:"day_end,omitempty"`
  6773. WeekEnd int64 `protobuf:"varint,7,opt,name=week_end,json=weekEnd,proto3" json:"week_end,omitempty"`
  6774. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6775. XXX_unrecognized []byte `json:"-"`
  6776. XXX_sizecache int32 `json:"-"`
  6777. }
  6778. func (m *ShopData) Reset() { *m = ShopData{} }
  6779. func (m *ShopData) String() string { return proto.CompactTextString(m) }
  6780. func (*ShopData) ProtoMessage() {}
  6781. func (*ShopData) Descriptor() ([]byte, []int) {
  6782. return fileDescriptor_116e343673f7ffaf, []int{111}
  6783. }
  6784. func (m *ShopData) XXX_Unmarshal(b []byte) error {
  6785. return xxx_messageInfo_ShopData.Unmarshal(m, b)
  6786. }
  6787. func (m *ShopData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6788. return xxx_messageInfo_ShopData.Marshal(b, m, deterministic)
  6789. }
  6790. func (m *ShopData) XXX_Merge(src proto.Message) {
  6791. xxx_messageInfo_ShopData.Merge(m, src)
  6792. }
  6793. func (m *ShopData) XXX_Size() int {
  6794. return xxx_messageInfo_ShopData.Size(m)
  6795. }
  6796. func (m *ShopData) XXX_DiscardUnknown() {
  6797. xxx_messageInfo_ShopData.DiscardUnknown(m)
  6798. }
  6799. var xxx_messageInfo_ShopData proto.InternalMessageInfo
  6800. func (m *ShopData) GetGoodsType() int32 {
  6801. if m != nil {
  6802. return m.GoodsType
  6803. }
  6804. return 0
  6805. }
  6806. func (m *ShopData) GetItemInfo() []*ShopItem {
  6807. if m != nil {
  6808. return m.ItemInfo
  6809. }
  6810. return nil
  6811. }
  6812. func (m *ShopData) GetBuyInfo() []*BuyInfo {
  6813. if m != nil {
  6814. return m.BuyInfo
  6815. }
  6816. return nil
  6817. }
  6818. func (m *ShopData) GetRefreshTime() int64 {
  6819. if m != nil {
  6820. return m.RefreshTime
  6821. }
  6822. return 0
  6823. }
  6824. func (m *ShopData) GetRefreshCount() int32 {
  6825. if m != nil {
  6826. return m.RefreshCount
  6827. }
  6828. return 0
  6829. }
  6830. func (m *ShopData) GetDayEnd() int64 {
  6831. if m != nil {
  6832. return m.DayEnd
  6833. }
  6834. return 0
  6835. }
  6836. func (m *ShopData) GetWeekEnd() int64 {
  6837. if m != nil {
  6838. return m.WeekEnd
  6839. }
  6840. return 0
  6841. }
  6842. type ShopList struct {
  6843. Data []*ShopData `protobuf:"bytes,1,rep,name=data,proto3" json:"data,omitempty"`
  6844. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6845. XXX_unrecognized []byte `json:"-"`
  6846. XXX_sizecache int32 `json:"-"`
  6847. }
  6848. func (m *ShopList) Reset() { *m = ShopList{} }
  6849. func (m *ShopList) String() string { return proto.CompactTextString(m) }
  6850. func (*ShopList) ProtoMessage() {}
  6851. func (*ShopList) Descriptor() ([]byte, []int) {
  6852. return fileDescriptor_116e343673f7ffaf, []int{112}
  6853. }
  6854. func (m *ShopList) XXX_Unmarshal(b []byte) error {
  6855. return xxx_messageInfo_ShopList.Unmarshal(m, b)
  6856. }
  6857. func (m *ShopList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6858. return xxx_messageInfo_ShopList.Marshal(b, m, deterministic)
  6859. }
  6860. func (m *ShopList) XXX_Merge(src proto.Message) {
  6861. xxx_messageInfo_ShopList.Merge(m, src)
  6862. }
  6863. func (m *ShopList) XXX_Size() int {
  6864. return xxx_messageInfo_ShopList.Size(m)
  6865. }
  6866. func (m *ShopList) XXX_DiscardUnknown() {
  6867. xxx_messageInfo_ShopList.DiscardUnknown(m)
  6868. }
  6869. var xxx_messageInfo_ShopList proto.InternalMessageInfo
  6870. func (m *ShopList) GetData() []*ShopData {
  6871. if m != nil {
  6872. return m.Data
  6873. }
  6874. return nil
  6875. }
  6876. // 战斗玩家数据
  6877. type ViewRoleInfo struct {
  6878. Id uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  6879. Brief *CommonPlayerBriefInfo `protobuf:"bytes,2,opt,name=brief,proto3" json:"brief,omitempty"`
  6880. RoleHero *HeroData `protobuf:"bytes,3,opt,name=role_hero,json=roleHero,proto3" json:"role_hero,omitempty"`
  6881. Hero *RoleHero `protobuf:"bytes,4,opt,name=hero,proto3" json:"hero,omitempty"`
  6882. Fashion *RoleFashion `protobuf:"bytes,5,opt,name=fashion,proto3" json:"fashion,omitempty"`
  6883. AttrList []*KeyValueType `protobuf:"bytes,6,rep,name=attr_list,json=attrList,proto3" json:"attr_list,omitempty"`
  6884. FashionData *FashionData `protobuf:"bytes,7,opt,name=fashion_data,json=fashionData,proto3" json:"fashion_data,omitempty"`
  6885. DanScore int32 `protobuf:"varint,8,opt,name=danScore,proto3" json:"danScore,omitempty"`
  6886. ParamList []int32 `protobuf:"varint,9,rep,packed,name=param_list,json=paramList,proto3" json:"param_list,omitempty"`
  6887. GuildName string `protobuf:"bytes,10,opt,name=guild_name,json=guildName,proto3" json:"guild_name,omitempty"`
  6888. PetList []*PetData `protobuf:"bytes,11,rep,name=pet_list,json=petList,proto3" json:"pet_list,omitempty"`
  6889. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6890. XXX_unrecognized []byte `json:"-"`
  6891. XXX_sizecache int32 `json:"-"`
  6892. }
  6893. func (m *ViewRoleInfo) Reset() { *m = ViewRoleInfo{} }
  6894. func (m *ViewRoleInfo) String() string { return proto.CompactTextString(m) }
  6895. func (*ViewRoleInfo) ProtoMessage() {}
  6896. func (*ViewRoleInfo) Descriptor() ([]byte, []int) {
  6897. return fileDescriptor_116e343673f7ffaf, []int{113}
  6898. }
  6899. func (m *ViewRoleInfo) XXX_Unmarshal(b []byte) error {
  6900. return xxx_messageInfo_ViewRoleInfo.Unmarshal(m, b)
  6901. }
  6902. func (m *ViewRoleInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6903. return xxx_messageInfo_ViewRoleInfo.Marshal(b, m, deterministic)
  6904. }
  6905. func (m *ViewRoleInfo) XXX_Merge(src proto.Message) {
  6906. xxx_messageInfo_ViewRoleInfo.Merge(m, src)
  6907. }
  6908. func (m *ViewRoleInfo) XXX_Size() int {
  6909. return xxx_messageInfo_ViewRoleInfo.Size(m)
  6910. }
  6911. func (m *ViewRoleInfo) XXX_DiscardUnknown() {
  6912. xxx_messageInfo_ViewRoleInfo.DiscardUnknown(m)
  6913. }
  6914. var xxx_messageInfo_ViewRoleInfo proto.InternalMessageInfo
  6915. func (m *ViewRoleInfo) GetId() uint64 {
  6916. if m != nil {
  6917. return m.Id
  6918. }
  6919. return 0
  6920. }
  6921. func (m *ViewRoleInfo) GetBrief() *CommonPlayerBriefInfo {
  6922. if m != nil {
  6923. return m.Brief
  6924. }
  6925. return nil
  6926. }
  6927. func (m *ViewRoleInfo) GetRoleHero() *HeroData {
  6928. if m != nil {
  6929. return m.RoleHero
  6930. }
  6931. return nil
  6932. }
  6933. func (m *ViewRoleInfo) GetHero() *RoleHero {
  6934. if m != nil {
  6935. return m.Hero
  6936. }
  6937. return nil
  6938. }
  6939. func (m *ViewRoleInfo) GetFashion() *RoleFashion {
  6940. if m != nil {
  6941. return m.Fashion
  6942. }
  6943. return nil
  6944. }
  6945. func (m *ViewRoleInfo) GetAttrList() []*KeyValueType {
  6946. if m != nil {
  6947. return m.AttrList
  6948. }
  6949. return nil
  6950. }
  6951. func (m *ViewRoleInfo) GetFashionData() *FashionData {
  6952. if m != nil {
  6953. return m.FashionData
  6954. }
  6955. return nil
  6956. }
  6957. func (m *ViewRoleInfo) GetDanScore() int32 {
  6958. if m != nil {
  6959. return m.DanScore
  6960. }
  6961. return 0
  6962. }
  6963. func (m *ViewRoleInfo) GetParamList() []int32 {
  6964. if m != nil {
  6965. return m.ParamList
  6966. }
  6967. return nil
  6968. }
  6969. func (m *ViewRoleInfo) GetGuildName() string {
  6970. if m != nil {
  6971. return m.GuildName
  6972. }
  6973. return ""
  6974. }
  6975. func (m *ViewRoleInfo) GetPetList() []*PetData {
  6976. if m != nil {
  6977. return m.PetList
  6978. }
  6979. return nil
  6980. }
  6981. type ShopCost struct {
  6982. ShopType int32 `protobuf:"varint,1,opt,name=shop_type,json=shopType,proto3" json:"shop_type,omitempty"`
  6983. ResType int32 `protobuf:"varint,2,opt,name=res_type,json=resType,proto3" json:"res_type,omitempty"`
  6984. ResCount uint32 `protobuf:"varint,3,opt,name=res_count,json=resCount,proto3" json:"res_count,omitempty"`
  6985. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6986. XXX_unrecognized []byte `json:"-"`
  6987. XXX_sizecache int32 `json:"-"`
  6988. }
  6989. func (m *ShopCost) Reset() { *m = ShopCost{} }
  6990. func (m *ShopCost) String() string { return proto.CompactTextString(m) }
  6991. func (*ShopCost) ProtoMessage() {}
  6992. func (*ShopCost) Descriptor() ([]byte, []int) {
  6993. return fileDescriptor_116e343673f7ffaf, []int{114}
  6994. }
  6995. func (m *ShopCost) XXX_Unmarshal(b []byte) error {
  6996. return xxx_messageInfo_ShopCost.Unmarshal(m, b)
  6997. }
  6998. func (m *ShopCost) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6999. return xxx_messageInfo_ShopCost.Marshal(b, m, deterministic)
  7000. }
  7001. func (m *ShopCost) XXX_Merge(src proto.Message) {
  7002. xxx_messageInfo_ShopCost.Merge(m, src)
  7003. }
  7004. func (m *ShopCost) XXX_Size() int {
  7005. return xxx_messageInfo_ShopCost.Size(m)
  7006. }
  7007. func (m *ShopCost) XXX_DiscardUnknown() {
  7008. xxx_messageInfo_ShopCost.DiscardUnknown(m)
  7009. }
  7010. var xxx_messageInfo_ShopCost proto.InternalMessageInfo
  7011. func (m *ShopCost) GetShopType() int32 {
  7012. if m != nil {
  7013. return m.ShopType
  7014. }
  7015. return 0
  7016. }
  7017. func (m *ShopCost) GetResType() int32 {
  7018. if m != nil {
  7019. return m.ResType
  7020. }
  7021. return 0
  7022. }
  7023. func (m *ShopCost) GetResCount() uint32 {
  7024. if m != nil {
  7025. return m.ResCount
  7026. }
  7027. return 0
  7028. }
  7029. type RoleShop struct {
  7030. Info []*ShopBuyInfo `protobuf:"bytes,1,rep,name=info,proto3" json:"info,omitempty"`
  7031. TotalBuyNum int32 `protobuf:"varint,2,opt,name=total_buy_num,json=totalBuyNum,proto3" json:"total_buy_num,omitempty"`
  7032. CostRes []*ShopCost `protobuf:"bytes,3,rep,name=cost_res,json=costRes,proto3" json:"cost_res,omitempty"`
  7033. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7034. XXX_unrecognized []byte `json:"-"`
  7035. XXX_sizecache int32 `json:"-"`
  7036. }
  7037. func (m *RoleShop) Reset() { *m = RoleShop{} }
  7038. func (m *RoleShop) String() string { return proto.CompactTextString(m) }
  7039. func (*RoleShop) ProtoMessage() {}
  7040. func (*RoleShop) Descriptor() ([]byte, []int) {
  7041. return fileDescriptor_116e343673f7ffaf, []int{115}
  7042. }
  7043. func (m *RoleShop) XXX_Unmarshal(b []byte) error {
  7044. return xxx_messageInfo_RoleShop.Unmarshal(m, b)
  7045. }
  7046. func (m *RoleShop) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7047. return xxx_messageInfo_RoleShop.Marshal(b, m, deterministic)
  7048. }
  7049. func (m *RoleShop) XXX_Merge(src proto.Message) {
  7050. xxx_messageInfo_RoleShop.Merge(m, src)
  7051. }
  7052. func (m *RoleShop) XXX_Size() int {
  7053. return xxx_messageInfo_RoleShop.Size(m)
  7054. }
  7055. func (m *RoleShop) XXX_DiscardUnknown() {
  7056. xxx_messageInfo_RoleShop.DiscardUnknown(m)
  7057. }
  7058. var xxx_messageInfo_RoleShop proto.InternalMessageInfo
  7059. func (m *RoleShop) GetInfo() []*ShopBuyInfo {
  7060. if m != nil {
  7061. return m.Info
  7062. }
  7063. return nil
  7064. }
  7065. func (m *RoleShop) GetTotalBuyNum() int32 {
  7066. if m != nil {
  7067. return m.TotalBuyNum
  7068. }
  7069. return 0
  7070. }
  7071. func (m *RoleShop) GetCostRes() []*ShopCost {
  7072. if m != nil {
  7073. return m.CostRes
  7074. }
  7075. return nil
  7076. }
  7077. type CurRoundSign struct {
  7078. LastSign int64 `protobuf:"varint,1,opt,name=last_sign,json=lastSign,proto3" json:"last_sign,omitempty"`
  7079. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7080. XXX_unrecognized []byte `json:"-"`
  7081. XXX_sizecache int32 `json:"-"`
  7082. }
  7083. func (m *CurRoundSign) Reset() { *m = CurRoundSign{} }
  7084. func (m *CurRoundSign) String() string { return proto.CompactTextString(m) }
  7085. func (*CurRoundSign) ProtoMessage() {}
  7086. func (*CurRoundSign) Descriptor() ([]byte, []int) {
  7087. return fileDescriptor_116e343673f7ffaf, []int{116}
  7088. }
  7089. func (m *CurRoundSign) XXX_Unmarshal(b []byte) error {
  7090. return xxx_messageInfo_CurRoundSign.Unmarshal(m, b)
  7091. }
  7092. func (m *CurRoundSign) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7093. return xxx_messageInfo_CurRoundSign.Marshal(b, m, deterministic)
  7094. }
  7095. func (m *CurRoundSign) XXX_Merge(src proto.Message) {
  7096. xxx_messageInfo_CurRoundSign.Merge(m, src)
  7097. }
  7098. func (m *CurRoundSign) XXX_Size() int {
  7099. return xxx_messageInfo_CurRoundSign.Size(m)
  7100. }
  7101. func (m *CurRoundSign) XXX_DiscardUnknown() {
  7102. xxx_messageInfo_CurRoundSign.DiscardUnknown(m)
  7103. }
  7104. var xxx_messageInfo_CurRoundSign proto.InternalMessageInfo
  7105. func (m *CurRoundSign) GetLastSign() int64 {
  7106. if m != nil {
  7107. return m.LastSign
  7108. }
  7109. return 0
  7110. }
  7111. // 签到相关
  7112. type SignUp struct {
  7113. SignRound int32 `protobuf:"varint,1,opt,name=sign_round,json=signRound,proto3" json:"sign_round,omitempty"`
  7114. CurDay int32 `protobuf:"varint,2,opt,name=cur_day,json=curDay,proto3" json:"cur_day,omitempty"`
  7115. CurSignInfo *CurRoundSign `protobuf:"bytes,3,opt,name=cur_sign_info,json=curSignInfo,proto3" json:"cur_sign_info,omitempty"`
  7116. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7117. XXX_unrecognized []byte `json:"-"`
  7118. XXX_sizecache int32 `json:"-"`
  7119. }
  7120. func (m *SignUp) Reset() { *m = SignUp{} }
  7121. func (m *SignUp) String() string { return proto.CompactTextString(m) }
  7122. func (*SignUp) ProtoMessage() {}
  7123. func (*SignUp) Descriptor() ([]byte, []int) {
  7124. return fileDescriptor_116e343673f7ffaf, []int{117}
  7125. }
  7126. func (m *SignUp) XXX_Unmarshal(b []byte) error {
  7127. return xxx_messageInfo_SignUp.Unmarshal(m, b)
  7128. }
  7129. func (m *SignUp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7130. return xxx_messageInfo_SignUp.Marshal(b, m, deterministic)
  7131. }
  7132. func (m *SignUp) XXX_Merge(src proto.Message) {
  7133. xxx_messageInfo_SignUp.Merge(m, src)
  7134. }
  7135. func (m *SignUp) XXX_Size() int {
  7136. return xxx_messageInfo_SignUp.Size(m)
  7137. }
  7138. func (m *SignUp) XXX_DiscardUnknown() {
  7139. xxx_messageInfo_SignUp.DiscardUnknown(m)
  7140. }
  7141. var xxx_messageInfo_SignUp proto.InternalMessageInfo
  7142. func (m *SignUp) GetSignRound() int32 {
  7143. if m != nil {
  7144. return m.SignRound
  7145. }
  7146. return 0
  7147. }
  7148. func (m *SignUp) GetCurDay() int32 {
  7149. if m != nil {
  7150. return m.CurDay
  7151. }
  7152. return 0
  7153. }
  7154. func (m *SignUp) GetCurSignInfo() *CurRoundSign {
  7155. if m != nil {
  7156. return m.CurSignInfo
  7157. }
  7158. return nil
  7159. }
  7160. // 活动数据
  7161. type RoleActivity struct {
  7162. SignInfo *SignUp `protobuf:"bytes,1,opt,name=sign_info,json=signInfo,proto3" json:"sign_info,omitempty"`
  7163. // 精彩活动
  7164. CurDayEndTime uint64 `protobuf:"varint,2,opt,name=cur_day_end_time,json=curDayEndTime,proto3" json:"cur_day_end_time,omitempty"`
  7165. ActivityDataList []*ActivitiesDetailData `protobuf:"bytes,3,rep,name=activity_data_list,json=activityDataList,proto3" json:"activity_data_list,omitempty"`
  7166. // 充值活动
  7167. // 首充大礼包时间(达到给定数值记录时间)
  7168. FirstChargeTime uint64 `protobuf:"varint,4,opt,name=first_charge_time,json=firstChargeTime,proto3" json:"first_charge_time,omitempty"`
  7169. FirstChargeRewardState int32 `protobuf:"varint,5,opt,name=first_charge_reward_state,json=firstChargeRewardState,proto3" json:"first_charge_reward_state,omitempty"`
  7170. // 超值礼包数据
  7171. UnlockChargeList []*ActivitiesUnlockRechargeData `protobuf:"bytes,6,rep,name=unlock_charge_list,json=unlockChargeList,proto3" json:"unlock_charge_list,omitempty"`
  7172. UnlockChargeHasList []*KeyValueType `protobuf:"bytes,7,rep,name=unlock_charge_has_list,json=unlockChargeHasList,proto3" json:"unlock_charge_has_list,omitempty"`
  7173. ExpiredActivityList []int32 `protobuf:"varint,8,rep,packed,name=expired_activity_list,json=expiredActivityList,proto3" json:"expired_activity_list,omitempty"`
  7174. // 服务器Load时使用
  7175. ActMsgList []*SystemMessage `protobuf:"bytes,10,rep,name=act_msg_list,json=actMsgList,proto3" json:"act_msg_list,omitempty"`
  7176. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7177. XXX_unrecognized []byte `json:"-"`
  7178. XXX_sizecache int32 `json:"-"`
  7179. }
  7180. func (m *RoleActivity) Reset() { *m = RoleActivity{} }
  7181. func (m *RoleActivity) String() string { return proto.CompactTextString(m) }
  7182. func (*RoleActivity) ProtoMessage() {}
  7183. func (*RoleActivity) Descriptor() ([]byte, []int) {
  7184. return fileDescriptor_116e343673f7ffaf, []int{118}
  7185. }
  7186. func (m *RoleActivity) XXX_Unmarshal(b []byte) error {
  7187. return xxx_messageInfo_RoleActivity.Unmarshal(m, b)
  7188. }
  7189. func (m *RoleActivity) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7190. return xxx_messageInfo_RoleActivity.Marshal(b, m, deterministic)
  7191. }
  7192. func (m *RoleActivity) XXX_Merge(src proto.Message) {
  7193. xxx_messageInfo_RoleActivity.Merge(m, src)
  7194. }
  7195. func (m *RoleActivity) XXX_Size() int {
  7196. return xxx_messageInfo_RoleActivity.Size(m)
  7197. }
  7198. func (m *RoleActivity) XXX_DiscardUnknown() {
  7199. xxx_messageInfo_RoleActivity.DiscardUnknown(m)
  7200. }
  7201. var xxx_messageInfo_RoleActivity proto.InternalMessageInfo
  7202. func (m *RoleActivity) GetSignInfo() *SignUp {
  7203. if m != nil {
  7204. return m.SignInfo
  7205. }
  7206. return nil
  7207. }
  7208. func (m *RoleActivity) GetCurDayEndTime() uint64 {
  7209. if m != nil {
  7210. return m.CurDayEndTime
  7211. }
  7212. return 0
  7213. }
  7214. func (m *RoleActivity) GetActivityDataList() []*ActivitiesDetailData {
  7215. if m != nil {
  7216. return m.ActivityDataList
  7217. }
  7218. return nil
  7219. }
  7220. func (m *RoleActivity) GetFirstChargeTime() uint64 {
  7221. if m != nil {
  7222. return m.FirstChargeTime
  7223. }
  7224. return 0
  7225. }
  7226. func (m *RoleActivity) GetFirstChargeRewardState() int32 {
  7227. if m != nil {
  7228. return m.FirstChargeRewardState
  7229. }
  7230. return 0
  7231. }
  7232. func (m *RoleActivity) GetUnlockChargeList() []*ActivitiesUnlockRechargeData {
  7233. if m != nil {
  7234. return m.UnlockChargeList
  7235. }
  7236. return nil
  7237. }
  7238. func (m *RoleActivity) GetUnlockChargeHasList() []*KeyValueType {
  7239. if m != nil {
  7240. return m.UnlockChargeHasList
  7241. }
  7242. return nil
  7243. }
  7244. func (m *RoleActivity) GetExpiredActivityList() []int32 {
  7245. if m != nil {
  7246. return m.ExpiredActivityList
  7247. }
  7248. return nil
  7249. }
  7250. func (m *RoleActivity) GetActMsgList() []*SystemMessage {
  7251. if m != nil {
  7252. return m.ActMsgList
  7253. }
  7254. return nil
  7255. }
  7256. // /精彩活动
  7257. type ActivitiesDetailData struct {
  7258. ActivitiesId int32 `protobuf:"varint,1,opt,name=activities_id,json=activitiesId,proto3" json:"activities_id,omitempty"`
  7259. ActivitiesType int32 `protobuf:"varint,2,opt,name=activities_type,json=activitiesType,proto3" json:"activities_type,omitempty"`
  7260. StartTime uint64 `protobuf:"varint,3,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
  7261. EndTime uint64 `protobuf:"varint,4,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
  7262. CurDay int32 `protobuf:"varint,5,opt,name=cur_day,json=curDay,proto3" json:"cur_day,omitempty"`
  7263. // 连续登录活动奖励获取状态
  7264. LoginRewardList []*KeyValueType `protobuf:"bytes,6,rep,name=login_reward_list,json=loginRewardList,proto3" json:"login_reward_list,omitempty"`
  7265. // 14日目标任务
  7266. FortnightDays *ActivitiesFortnightDays `protobuf:"bytes,7,opt,name=fortnight_days,json=fortnightDays,proto3" json:"fortnight_days,omitempty"`
  7267. // 充值达到百元大礼包时的时间戳
  7268. ParamTime uint64 `protobuf:"varint,8,opt,name=param_time,json=paramTime,proto3" json:"param_time,omitempty"`
  7269. RewardState int32 `protobuf:"varint,9,opt,name=reward_state,json=rewardState,proto3" json:"reward_state,omitempty"`
  7270. // 集字活动
  7271. CollectionList []*ActivitiesCollectionData `protobuf:"bytes,10,rep,name=collection_list,json=collectionList,proto3" json:"collection_list,omitempty"`
  7272. // 好感度数据(3.8活动)
  7273. LikabilityData *ActivitiesLikabilityData `protobuf:"bytes,11,opt,name=likability_data,json=likabilityData,proto3" json:"likability_data,omitempty"`
  7274. KingTask []*TaskData `protobuf:"bytes,12,rep,name=king_task,json=kingTask,proto3" json:"king_task,omitempty"`
  7275. FightingTarget uint32 `protobuf:"varint,13,opt,name=fighting_target,json=fightingTarget,proto3" json:"fighting_target,omitempty"`
  7276. // 兑换活动
  7277. ExchangeList []*ExchangeData `protobuf:"bytes,14,rep,name=exchange_list,json=exchangeList,proto3" json:"exchange_list,omitempty"`
  7278. // 活动转盘
  7279. WheelData *ActivityWheelData `protobuf:"bytes,15,opt,name=wheel_data,json=wheelData,proto3" json:"wheel_data,omitempty"`
  7280. // 签到活动
  7281. SignData *ActivitySignIn `protobuf:"bytes,16,opt,name=sign_data,json=signData,proto3" json:"sign_data,omitempty"`
  7282. // bt RO币累计活动
  7283. BtRocoinData *ActivityBTROCoin `protobuf:"bytes,20,opt,name=bt_rocoin_data,json=btRocoinData,proto3" json:"bt_rocoin_data,omitempty"`
  7284. // 真/假每日累计充值活动
  7285. BtZhenjiaRechargeTaskList []*TaskData `protobuf:"bytes,21,rep,name=bt_zhenjia_recharge_task_list,json=btZhenjiaRechargeTaskList,proto3" json:"bt_zhenjia_recharge_task_list,omitempty"`
  7286. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7287. XXX_unrecognized []byte `json:"-"`
  7288. XXX_sizecache int32 `json:"-"`
  7289. }
  7290. func (m *ActivitiesDetailData) Reset() { *m = ActivitiesDetailData{} }
  7291. func (m *ActivitiesDetailData) String() string { return proto.CompactTextString(m) }
  7292. func (*ActivitiesDetailData) ProtoMessage() {}
  7293. func (*ActivitiesDetailData) Descriptor() ([]byte, []int) {
  7294. return fileDescriptor_116e343673f7ffaf, []int{119}
  7295. }
  7296. func (m *ActivitiesDetailData) XXX_Unmarshal(b []byte) error {
  7297. return xxx_messageInfo_ActivitiesDetailData.Unmarshal(m, b)
  7298. }
  7299. func (m *ActivitiesDetailData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7300. return xxx_messageInfo_ActivitiesDetailData.Marshal(b, m, deterministic)
  7301. }
  7302. func (m *ActivitiesDetailData) XXX_Merge(src proto.Message) {
  7303. xxx_messageInfo_ActivitiesDetailData.Merge(m, src)
  7304. }
  7305. func (m *ActivitiesDetailData) XXX_Size() int {
  7306. return xxx_messageInfo_ActivitiesDetailData.Size(m)
  7307. }
  7308. func (m *ActivitiesDetailData) XXX_DiscardUnknown() {
  7309. xxx_messageInfo_ActivitiesDetailData.DiscardUnknown(m)
  7310. }
  7311. var xxx_messageInfo_ActivitiesDetailData proto.InternalMessageInfo
  7312. func (m *ActivitiesDetailData) GetActivitiesId() int32 {
  7313. if m != nil {
  7314. return m.ActivitiesId
  7315. }
  7316. return 0
  7317. }
  7318. func (m *ActivitiesDetailData) GetActivitiesType() int32 {
  7319. if m != nil {
  7320. return m.ActivitiesType
  7321. }
  7322. return 0
  7323. }
  7324. func (m *ActivitiesDetailData) GetStartTime() uint64 {
  7325. if m != nil {
  7326. return m.StartTime
  7327. }
  7328. return 0
  7329. }
  7330. func (m *ActivitiesDetailData) GetEndTime() uint64 {
  7331. if m != nil {
  7332. return m.EndTime
  7333. }
  7334. return 0
  7335. }
  7336. func (m *ActivitiesDetailData) GetCurDay() int32 {
  7337. if m != nil {
  7338. return m.CurDay
  7339. }
  7340. return 0
  7341. }
  7342. func (m *ActivitiesDetailData) GetLoginRewardList() []*KeyValueType {
  7343. if m != nil {
  7344. return m.LoginRewardList
  7345. }
  7346. return nil
  7347. }
  7348. func (m *ActivitiesDetailData) GetFortnightDays() *ActivitiesFortnightDays {
  7349. if m != nil {
  7350. return m.FortnightDays
  7351. }
  7352. return nil
  7353. }
  7354. func (m *ActivitiesDetailData) GetParamTime() uint64 {
  7355. if m != nil {
  7356. return m.ParamTime
  7357. }
  7358. return 0
  7359. }
  7360. func (m *ActivitiesDetailData) GetRewardState() int32 {
  7361. if m != nil {
  7362. return m.RewardState
  7363. }
  7364. return 0
  7365. }
  7366. func (m *ActivitiesDetailData) GetCollectionList() []*ActivitiesCollectionData {
  7367. if m != nil {
  7368. return m.CollectionList
  7369. }
  7370. return nil
  7371. }
  7372. func (m *ActivitiesDetailData) GetLikabilityData() *ActivitiesLikabilityData {
  7373. if m != nil {
  7374. return m.LikabilityData
  7375. }
  7376. return nil
  7377. }
  7378. func (m *ActivitiesDetailData) GetKingTask() []*TaskData {
  7379. if m != nil {
  7380. return m.KingTask
  7381. }
  7382. return nil
  7383. }
  7384. func (m *ActivitiesDetailData) GetFightingTarget() uint32 {
  7385. if m != nil {
  7386. return m.FightingTarget
  7387. }
  7388. return 0
  7389. }
  7390. func (m *ActivitiesDetailData) GetExchangeList() []*ExchangeData {
  7391. if m != nil {
  7392. return m.ExchangeList
  7393. }
  7394. return nil
  7395. }
  7396. func (m *ActivitiesDetailData) GetWheelData() *ActivityWheelData {
  7397. if m != nil {
  7398. return m.WheelData
  7399. }
  7400. return nil
  7401. }
  7402. func (m *ActivitiesDetailData) GetSignData() *ActivitySignIn {
  7403. if m != nil {
  7404. return m.SignData
  7405. }
  7406. return nil
  7407. }
  7408. func (m *ActivitiesDetailData) GetBtRocoinData() *ActivityBTROCoin {
  7409. if m != nil {
  7410. return m.BtRocoinData
  7411. }
  7412. return nil
  7413. }
  7414. func (m *ActivitiesDetailData) GetBtZhenjiaRechargeTaskList() []*TaskData {
  7415. if m != nil {
  7416. return m.BtZhenjiaRechargeTaskList
  7417. }
  7418. return nil
  7419. }
  7420. type ActivityBTROCoin struct {
  7421. DailyTaskList []*TaskData `protobuf:"bytes,1,rep,name=daily_task_list,json=dailyTaskList,proto3" json:"daily_task_list,omitempty"`
  7422. WeekTaskList []*TaskData `protobuf:"bytes,2,rep,name=week_task_list,json=weekTaskList,proto3" json:"week_task_list,omitempty"`
  7423. WeekDayEndTime uint64 `protobuf:"varint,3,opt,name=week_day_end_time,json=weekDayEndTime,proto3" json:"week_day_end_time,omitempty"`
  7424. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7425. XXX_unrecognized []byte `json:"-"`
  7426. XXX_sizecache int32 `json:"-"`
  7427. }
  7428. func (m *ActivityBTROCoin) Reset() { *m = ActivityBTROCoin{} }
  7429. func (m *ActivityBTROCoin) String() string { return proto.CompactTextString(m) }
  7430. func (*ActivityBTROCoin) ProtoMessage() {}
  7431. func (*ActivityBTROCoin) Descriptor() ([]byte, []int) {
  7432. return fileDescriptor_116e343673f7ffaf, []int{120}
  7433. }
  7434. func (m *ActivityBTROCoin) XXX_Unmarshal(b []byte) error {
  7435. return xxx_messageInfo_ActivityBTROCoin.Unmarshal(m, b)
  7436. }
  7437. func (m *ActivityBTROCoin) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7438. return xxx_messageInfo_ActivityBTROCoin.Marshal(b, m, deterministic)
  7439. }
  7440. func (m *ActivityBTROCoin) XXX_Merge(src proto.Message) {
  7441. xxx_messageInfo_ActivityBTROCoin.Merge(m, src)
  7442. }
  7443. func (m *ActivityBTROCoin) XXX_Size() int {
  7444. return xxx_messageInfo_ActivityBTROCoin.Size(m)
  7445. }
  7446. func (m *ActivityBTROCoin) XXX_DiscardUnknown() {
  7447. xxx_messageInfo_ActivityBTROCoin.DiscardUnknown(m)
  7448. }
  7449. var xxx_messageInfo_ActivityBTROCoin proto.InternalMessageInfo
  7450. func (m *ActivityBTROCoin) GetDailyTaskList() []*TaskData {
  7451. if m != nil {
  7452. return m.DailyTaskList
  7453. }
  7454. return nil
  7455. }
  7456. func (m *ActivityBTROCoin) GetWeekTaskList() []*TaskData {
  7457. if m != nil {
  7458. return m.WeekTaskList
  7459. }
  7460. return nil
  7461. }
  7462. func (m *ActivityBTROCoin) GetWeekDayEndTime() uint64 {
  7463. if m != nil {
  7464. return m.WeekDayEndTime
  7465. }
  7466. return 0
  7467. }
  7468. type ActivitySignIn struct {
  7469. NextSignTime uint64 `protobuf:"varint,1,opt,name=next_sign_time,json=nextSignTime,proto3" json:"next_sign_time,omitempty"`
  7470. SignDays int32 `protobuf:"varint,2,opt,name=sign_days,json=signDays,proto3" json:"sign_days,omitempty"`
  7471. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7472. XXX_unrecognized []byte `json:"-"`
  7473. XXX_sizecache int32 `json:"-"`
  7474. }
  7475. func (m *ActivitySignIn) Reset() { *m = ActivitySignIn{} }
  7476. func (m *ActivitySignIn) String() string { return proto.CompactTextString(m) }
  7477. func (*ActivitySignIn) ProtoMessage() {}
  7478. func (*ActivitySignIn) Descriptor() ([]byte, []int) {
  7479. return fileDescriptor_116e343673f7ffaf, []int{121}
  7480. }
  7481. func (m *ActivitySignIn) XXX_Unmarshal(b []byte) error {
  7482. return xxx_messageInfo_ActivitySignIn.Unmarshal(m, b)
  7483. }
  7484. func (m *ActivitySignIn) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7485. return xxx_messageInfo_ActivitySignIn.Marshal(b, m, deterministic)
  7486. }
  7487. func (m *ActivitySignIn) XXX_Merge(src proto.Message) {
  7488. xxx_messageInfo_ActivitySignIn.Merge(m, src)
  7489. }
  7490. func (m *ActivitySignIn) XXX_Size() int {
  7491. return xxx_messageInfo_ActivitySignIn.Size(m)
  7492. }
  7493. func (m *ActivitySignIn) XXX_DiscardUnknown() {
  7494. xxx_messageInfo_ActivitySignIn.DiscardUnknown(m)
  7495. }
  7496. var xxx_messageInfo_ActivitySignIn proto.InternalMessageInfo
  7497. func (m *ActivitySignIn) GetNextSignTime() uint64 {
  7498. if m != nil {
  7499. return m.NextSignTime
  7500. }
  7501. return 0
  7502. }
  7503. func (m *ActivitySignIn) GetSignDays() int32 {
  7504. if m != nil {
  7505. return m.SignDays
  7506. }
  7507. return 0
  7508. }
  7509. // 活动转盘
  7510. type ActivityWheelData struct {
  7511. // 转盘
  7512. WheelRewardItemList []*WheelRewardItemInfo `protobuf:"bytes,1,rep,name=wheel_reward_item_list,json=wheelRewardItemList,proto3" json:"wheel_reward_item_list,omitempty"`
  7513. WheelOpen bool `protobuf:"varint,2,opt,name=wheel_open,json=wheelOpen,proto3" json:"wheel_open,omitempty"`
  7514. WheelRefreshNum int32 `protobuf:"varint,3,opt,name=wheel_refresh_num,json=wheelRefreshNum,proto3" json:"wheel_refresh_num,omitempty"`
  7515. TemplateIdx int32 `protobuf:"varint,4,opt,name=template_idx,json=templateIdx,proto3" json:"template_idx,omitempty"`
  7516. WheelNum int32 `protobuf:"varint,5,opt,name=wheel_num,json=wheelNum,proto3" json:"wheel_num,omitempty"`
  7517. WheelIdx int32 `protobuf:"varint,6,opt,name=wheel_idx,json=wheelIdx,proto3" json:"wheel_idx,omitempty"`
  7518. LogList []*WheelLogData `protobuf:"bytes,7,rep,name=log_list,json=logList,proto3" json:"log_list,omitempty"`
  7519. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7520. XXX_unrecognized []byte `json:"-"`
  7521. XXX_sizecache int32 `json:"-"`
  7522. }
  7523. func (m *ActivityWheelData) Reset() { *m = ActivityWheelData{} }
  7524. func (m *ActivityWheelData) String() string { return proto.CompactTextString(m) }
  7525. func (*ActivityWheelData) ProtoMessage() {}
  7526. func (*ActivityWheelData) Descriptor() ([]byte, []int) {
  7527. return fileDescriptor_116e343673f7ffaf, []int{122}
  7528. }
  7529. func (m *ActivityWheelData) XXX_Unmarshal(b []byte) error {
  7530. return xxx_messageInfo_ActivityWheelData.Unmarshal(m, b)
  7531. }
  7532. func (m *ActivityWheelData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7533. return xxx_messageInfo_ActivityWheelData.Marshal(b, m, deterministic)
  7534. }
  7535. func (m *ActivityWheelData) XXX_Merge(src proto.Message) {
  7536. xxx_messageInfo_ActivityWheelData.Merge(m, src)
  7537. }
  7538. func (m *ActivityWheelData) XXX_Size() int {
  7539. return xxx_messageInfo_ActivityWheelData.Size(m)
  7540. }
  7541. func (m *ActivityWheelData) XXX_DiscardUnknown() {
  7542. xxx_messageInfo_ActivityWheelData.DiscardUnknown(m)
  7543. }
  7544. var xxx_messageInfo_ActivityWheelData proto.InternalMessageInfo
  7545. func (m *ActivityWheelData) GetWheelRewardItemList() []*WheelRewardItemInfo {
  7546. if m != nil {
  7547. return m.WheelRewardItemList
  7548. }
  7549. return nil
  7550. }
  7551. func (m *ActivityWheelData) GetWheelOpen() bool {
  7552. if m != nil {
  7553. return m.WheelOpen
  7554. }
  7555. return false
  7556. }
  7557. func (m *ActivityWheelData) GetWheelRefreshNum() int32 {
  7558. if m != nil {
  7559. return m.WheelRefreshNum
  7560. }
  7561. return 0
  7562. }
  7563. func (m *ActivityWheelData) GetTemplateIdx() int32 {
  7564. if m != nil {
  7565. return m.TemplateIdx
  7566. }
  7567. return 0
  7568. }
  7569. func (m *ActivityWheelData) GetWheelNum() int32 {
  7570. if m != nil {
  7571. return m.WheelNum
  7572. }
  7573. return 0
  7574. }
  7575. func (m *ActivityWheelData) GetWheelIdx() int32 {
  7576. if m != nil {
  7577. return m.WheelIdx
  7578. }
  7579. return 0
  7580. }
  7581. func (m *ActivityWheelData) GetLogList() []*WheelLogData {
  7582. if m != nil {
  7583. return m.LogList
  7584. }
  7585. return nil
  7586. }
  7587. type ExchangeData struct {
  7588. Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  7589. ExchangeNum int32 `protobuf:"varint,2,opt,name=exchange_num,json=exchangeNum,proto3" json:"exchange_num,omitempty"`
  7590. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7591. XXX_unrecognized []byte `json:"-"`
  7592. XXX_sizecache int32 `json:"-"`
  7593. }
  7594. func (m *ExchangeData) Reset() { *m = ExchangeData{} }
  7595. func (m *ExchangeData) String() string { return proto.CompactTextString(m) }
  7596. func (*ExchangeData) ProtoMessage() {}
  7597. func (*ExchangeData) Descriptor() ([]byte, []int) {
  7598. return fileDescriptor_116e343673f7ffaf, []int{123}
  7599. }
  7600. func (m *ExchangeData) XXX_Unmarshal(b []byte) error {
  7601. return xxx_messageInfo_ExchangeData.Unmarshal(m, b)
  7602. }
  7603. func (m *ExchangeData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7604. return xxx_messageInfo_ExchangeData.Marshal(b, m, deterministic)
  7605. }
  7606. func (m *ExchangeData) XXX_Merge(src proto.Message) {
  7607. xxx_messageInfo_ExchangeData.Merge(m, src)
  7608. }
  7609. func (m *ExchangeData) XXX_Size() int {
  7610. return xxx_messageInfo_ExchangeData.Size(m)
  7611. }
  7612. func (m *ExchangeData) XXX_DiscardUnknown() {
  7613. xxx_messageInfo_ExchangeData.DiscardUnknown(m)
  7614. }
  7615. var xxx_messageInfo_ExchangeData proto.InternalMessageInfo
  7616. func (m *ExchangeData) GetId() int32 {
  7617. if m != nil {
  7618. return m.Id
  7619. }
  7620. return 0
  7621. }
  7622. func (m *ExchangeData) GetExchangeNum() int32 {
  7623. if m != nil {
  7624. return m.ExchangeNum
  7625. }
  7626. return 0
  7627. }
  7628. type ExchangeInfo struct {
  7629. ConditionId int32 `protobuf:"varint,1,opt,name=condition_id,json=conditionId,proto3" json:"condition_id,omitempty"`
  7630. CostItem []*KeyValueType `protobuf:"bytes,2,rep,name=cost_item,json=costItem,proto3" json:"cost_item,omitempty"`
  7631. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7632. XXX_unrecognized []byte `json:"-"`
  7633. XXX_sizecache int32 `json:"-"`
  7634. }
  7635. func (m *ExchangeInfo) Reset() { *m = ExchangeInfo{} }
  7636. func (m *ExchangeInfo) String() string { return proto.CompactTextString(m) }
  7637. func (*ExchangeInfo) ProtoMessage() {}
  7638. func (*ExchangeInfo) Descriptor() ([]byte, []int) {
  7639. return fileDescriptor_116e343673f7ffaf, []int{124}
  7640. }
  7641. func (m *ExchangeInfo) XXX_Unmarshal(b []byte) error {
  7642. return xxx_messageInfo_ExchangeInfo.Unmarshal(m, b)
  7643. }
  7644. func (m *ExchangeInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7645. return xxx_messageInfo_ExchangeInfo.Marshal(b, m, deterministic)
  7646. }
  7647. func (m *ExchangeInfo) XXX_Merge(src proto.Message) {
  7648. xxx_messageInfo_ExchangeInfo.Merge(m, src)
  7649. }
  7650. func (m *ExchangeInfo) XXX_Size() int {
  7651. return xxx_messageInfo_ExchangeInfo.Size(m)
  7652. }
  7653. func (m *ExchangeInfo) XXX_DiscardUnknown() {
  7654. xxx_messageInfo_ExchangeInfo.DiscardUnknown(m)
  7655. }
  7656. var xxx_messageInfo_ExchangeInfo proto.InternalMessageInfo
  7657. func (m *ExchangeInfo) GetConditionId() int32 {
  7658. if m != nil {
  7659. return m.ConditionId
  7660. }
  7661. return 0
  7662. }
  7663. func (m *ExchangeInfo) GetCostItem() []*KeyValueType {
  7664. if m != nil {
  7665. return m.CostItem
  7666. }
  7667. return nil
  7668. }
  7669. type ActivitiesData struct {
  7670. Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  7671. Type int32 `protobuf:"varint,2,opt,name=type,proto3" json:"type,omitempty"`
  7672. EndTime uint64 `protobuf:"varint,3,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
  7673. Bg string `protobuf:"bytes,4,opt,name=bg,proto3" json:"bg,omitempty"`
  7674. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7675. XXX_unrecognized []byte `json:"-"`
  7676. XXX_sizecache int32 `json:"-"`
  7677. }
  7678. func (m *ActivitiesData) Reset() { *m = ActivitiesData{} }
  7679. func (m *ActivitiesData) String() string { return proto.CompactTextString(m) }
  7680. func (*ActivitiesData) ProtoMessage() {}
  7681. func (*ActivitiesData) Descriptor() ([]byte, []int) {
  7682. return fileDescriptor_116e343673f7ffaf, []int{125}
  7683. }
  7684. func (m *ActivitiesData) XXX_Unmarshal(b []byte) error {
  7685. return xxx_messageInfo_ActivitiesData.Unmarshal(m, b)
  7686. }
  7687. func (m *ActivitiesData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7688. return xxx_messageInfo_ActivitiesData.Marshal(b, m, deterministic)
  7689. }
  7690. func (m *ActivitiesData) XXX_Merge(src proto.Message) {
  7691. xxx_messageInfo_ActivitiesData.Merge(m, src)
  7692. }
  7693. func (m *ActivitiesData) XXX_Size() int {
  7694. return xxx_messageInfo_ActivitiesData.Size(m)
  7695. }
  7696. func (m *ActivitiesData) XXX_DiscardUnknown() {
  7697. xxx_messageInfo_ActivitiesData.DiscardUnknown(m)
  7698. }
  7699. var xxx_messageInfo_ActivitiesData proto.InternalMessageInfo
  7700. func (m *ActivitiesData) GetId() int32 {
  7701. if m != nil {
  7702. return m.Id
  7703. }
  7704. return 0
  7705. }
  7706. func (m *ActivitiesData) GetType() int32 {
  7707. if m != nil {
  7708. return m.Type
  7709. }
  7710. return 0
  7711. }
  7712. func (m *ActivitiesData) GetEndTime() uint64 {
  7713. if m != nil {
  7714. return m.EndTime
  7715. }
  7716. return 0
  7717. }
  7718. func (m *ActivitiesData) GetBg() string {
  7719. if m != nil {
  7720. return m.Bg
  7721. }
  7722. return ""
  7723. }
  7724. // 14日目标任务(7天重置一次,显示7天数据)
  7725. type ActivitiesFortnightDays struct {
  7726. TaskScore int32 `protobuf:"varint,1,opt,name=task_score,json=taskScore,proto3" json:"task_score,omitempty"`
  7727. TaskScoreReward uint32 `protobuf:"varint,2,opt,name=task_score_reward,json=taskScoreReward,proto3" json:"task_score_reward,omitempty"`
  7728. TaskList []*TaskData `protobuf:"bytes,3,rep,name=task_list,json=taskList,proto3" json:"task_list,omitempty"`
  7729. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7730. XXX_unrecognized []byte `json:"-"`
  7731. XXX_sizecache int32 `json:"-"`
  7732. }
  7733. func (m *ActivitiesFortnightDays) Reset() { *m = ActivitiesFortnightDays{} }
  7734. func (m *ActivitiesFortnightDays) String() string { return proto.CompactTextString(m) }
  7735. func (*ActivitiesFortnightDays) ProtoMessage() {}
  7736. func (*ActivitiesFortnightDays) Descriptor() ([]byte, []int) {
  7737. return fileDescriptor_116e343673f7ffaf, []int{126}
  7738. }
  7739. func (m *ActivitiesFortnightDays) XXX_Unmarshal(b []byte) error {
  7740. return xxx_messageInfo_ActivitiesFortnightDays.Unmarshal(m, b)
  7741. }
  7742. func (m *ActivitiesFortnightDays) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7743. return xxx_messageInfo_ActivitiesFortnightDays.Marshal(b, m, deterministic)
  7744. }
  7745. func (m *ActivitiesFortnightDays) XXX_Merge(src proto.Message) {
  7746. xxx_messageInfo_ActivitiesFortnightDays.Merge(m, src)
  7747. }
  7748. func (m *ActivitiesFortnightDays) XXX_Size() int {
  7749. return xxx_messageInfo_ActivitiesFortnightDays.Size(m)
  7750. }
  7751. func (m *ActivitiesFortnightDays) XXX_DiscardUnknown() {
  7752. xxx_messageInfo_ActivitiesFortnightDays.DiscardUnknown(m)
  7753. }
  7754. var xxx_messageInfo_ActivitiesFortnightDays proto.InternalMessageInfo
  7755. func (m *ActivitiesFortnightDays) GetTaskScore() int32 {
  7756. if m != nil {
  7757. return m.TaskScore
  7758. }
  7759. return 0
  7760. }
  7761. func (m *ActivitiesFortnightDays) GetTaskScoreReward() uint32 {
  7762. if m != nil {
  7763. return m.TaskScoreReward
  7764. }
  7765. return 0
  7766. }
  7767. func (m *ActivitiesFortnightDays) GetTaskList() []*TaskData {
  7768. if m != nil {
  7769. return m.TaskList
  7770. }
  7771. return nil
  7772. }
  7773. // 超值礼包数据
  7774. type ActivitiesUnlockRechargeData struct {
  7775. ActivitiesId int32 `protobuf:"varint,1,opt,name=activities_id,json=activitiesId,proto3" json:"activities_id,omitempty"`
  7776. StartTime uint64 `protobuf:"varint,2,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
  7777. EndTime uint64 `protobuf:"varint,3,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
  7778. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7779. XXX_unrecognized []byte `json:"-"`
  7780. XXX_sizecache int32 `json:"-"`
  7781. }
  7782. func (m *ActivitiesUnlockRechargeData) Reset() { *m = ActivitiesUnlockRechargeData{} }
  7783. func (m *ActivitiesUnlockRechargeData) String() string { return proto.CompactTextString(m) }
  7784. func (*ActivitiesUnlockRechargeData) ProtoMessage() {}
  7785. func (*ActivitiesUnlockRechargeData) Descriptor() ([]byte, []int) {
  7786. return fileDescriptor_116e343673f7ffaf, []int{127}
  7787. }
  7788. func (m *ActivitiesUnlockRechargeData) XXX_Unmarshal(b []byte) error {
  7789. return xxx_messageInfo_ActivitiesUnlockRechargeData.Unmarshal(m, b)
  7790. }
  7791. func (m *ActivitiesUnlockRechargeData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7792. return xxx_messageInfo_ActivitiesUnlockRechargeData.Marshal(b, m, deterministic)
  7793. }
  7794. func (m *ActivitiesUnlockRechargeData) XXX_Merge(src proto.Message) {
  7795. xxx_messageInfo_ActivitiesUnlockRechargeData.Merge(m, src)
  7796. }
  7797. func (m *ActivitiesUnlockRechargeData) XXX_Size() int {
  7798. return xxx_messageInfo_ActivitiesUnlockRechargeData.Size(m)
  7799. }
  7800. func (m *ActivitiesUnlockRechargeData) XXX_DiscardUnknown() {
  7801. xxx_messageInfo_ActivitiesUnlockRechargeData.DiscardUnknown(m)
  7802. }
  7803. var xxx_messageInfo_ActivitiesUnlockRechargeData proto.InternalMessageInfo
  7804. func (m *ActivitiesUnlockRechargeData) GetActivitiesId() int32 {
  7805. if m != nil {
  7806. return m.ActivitiesId
  7807. }
  7808. return 0
  7809. }
  7810. func (m *ActivitiesUnlockRechargeData) GetStartTime() uint64 {
  7811. if m != nil {
  7812. return m.StartTime
  7813. }
  7814. return 0
  7815. }
  7816. func (m *ActivitiesUnlockRechargeData) GetEndTime() uint64 {
  7817. if m != nil {
  7818. return m.EndTime
  7819. }
  7820. return 0
  7821. }
  7822. type ActivitiesCollectionData struct {
  7823. Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  7824. RewardNum int32 `protobuf:"varint,2,opt,name=reward_num,json=rewardNum,proto3" json:"reward_num,omitempty"`
  7825. NoNotice bool `protobuf:"varint,3,opt,name=no_notice,json=noNotice,proto3" json:"no_notice,omitempty"`
  7826. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7827. XXX_unrecognized []byte `json:"-"`
  7828. XXX_sizecache int32 `json:"-"`
  7829. }
  7830. func (m *ActivitiesCollectionData) Reset() { *m = ActivitiesCollectionData{} }
  7831. func (m *ActivitiesCollectionData) String() string { return proto.CompactTextString(m) }
  7832. func (*ActivitiesCollectionData) ProtoMessage() {}
  7833. func (*ActivitiesCollectionData) Descriptor() ([]byte, []int) {
  7834. return fileDescriptor_116e343673f7ffaf, []int{128}
  7835. }
  7836. func (m *ActivitiesCollectionData) XXX_Unmarshal(b []byte) error {
  7837. return xxx_messageInfo_ActivitiesCollectionData.Unmarshal(m, b)
  7838. }
  7839. func (m *ActivitiesCollectionData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7840. return xxx_messageInfo_ActivitiesCollectionData.Marshal(b, m, deterministic)
  7841. }
  7842. func (m *ActivitiesCollectionData) XXX_Merge(src proto.Message) {
  7843. xxx_messageInfo_ActivitiesCollectionData.Merge(m, src)
  7844. }
  7845. func (m *ActivitiesCollectionData) XXX_Size() int {
  7846. return xxx_messageInfo_ActivitiesCollectionData.Size(m)
  7847. }
  7848. func (m *ActivitiesCollectionData) XXX_DiscardUnknown() {
  7849. xxx_messageInfo_ActivitiesCollectionData.DiscardUnknown(m)
  7850. }
  7851. var xxx_messageInfo_ActivitiesCollectionData proto.InternalMessageInfo
  7852. func (m *ActivitiesCollectionData) GetId() int32 {
  7853. if m != nil {
  7854. return m.Id
  7855. }
  7856. return 0
  7857. }
  7858. func (m *ActivitiesCollectionData) GetRewardNum() int32 {
  7859. if m != nil {
  7860. return m.RewardNum
  7861. }
  7862. return 0
  7863. }
  7864. func (m *ActivitiesCollectionData) GetNoNotice() bool {
  7865. if m != nil {
  7866. return m.NoNotice
  7867. }
  7868. return false
  7869. }
  7870. // 好感度数据
  7871. type ActivitiesLikabilityData struct {
  7872. Level int32 `protobuf:"varint,1,opt,name=level,proto3" json:"level,omitempty"`
  7873. Param uint32 `protobuf:"varint,2,opt,name=param,proto3" json:"param,omitempty"`
  7874. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7875. XXX_unrecognized []byte `json:"-"`
  7876. XXX_sizecache int32 `json:"-"`
  7877. }
  7878. func (m *ActivitiesLikabilityData) Reset() { *m = ActivitiesLikabilityData{} }
  7879. func (m *ActivitiesLikabilityData) String() string { return proto.CompactTextString(m) }
  7880. func (*ActivitiesLikabilityData) ProtoMessage() {}
  7881. func (*ActivitiesLikabilityData) Descriptor() ([]byte, []int) {
  7882. return fileDescriptor_116e343673f7ffaf, []int{129}
  7883. }
  7884. func (m *ActivitiesLikabilityData) XXX_Unmarshal(b []byte) error {
  7885. return xxx_messageInfo_ActivitiesLikabilityData.Unmarshal(m, b)
  7886. }
  7887. func (m *ActivitiesLikabilityData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7888. return xxx_messageInfo_ActivitiesLikabilityData.Marshal(b, m, deterministic)
  7889. }
  7890. func (m *ActivitiesLikabilityData) XXX_Merge(src proto.Message) {
  7891. xxx_messageInfo_ActivitiesLikabilityData.Merge(m, src)
  7892. }
  7893. func (m *ActivitiesLikabilityData) XXX_Size() int {
  7894. return xxx_messageInfo_ActivitiesLikabilityData.Size(m)
  7895. }
  7896. func (m *ActivitiesLikabilityData) XXX_DiscardUnknown() {
  7897. xxx_messageInfo_ActivitiesLikabilityData.DiscardUnknown(m)
  7898. }
  7899. var xxx_messageInfo_ActivitiesLikabilityData proto.InternalMessageInfo
  7900. func (m *ActivitiesLikabilityData) GetLevel() int32 {
  7901. if m != nil {
  7902. return m.Level
  7903. }
  7904. return 0
  7905. }
  7906. func (m *ActivitiesLikabilityData) GetParam() uint32 {
  7907. if m != nil {
  7908. return m.Param
  7909. }
  7910. return 0
  7911. }
  7912. type FriendTowerInfo struct {
  7913. TowerLevel int32 `protobuf:"varint,1,opt,name=tower_level,json=towerLevel,proto3" json:"tower_level,omitempty"`
  7914. Infos []*CommonPlayerBriefInfo `protobuf:"bytes,2,rep,name=infos,proto3" json:"infos,omitempty"`
  7915. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7916. XXX_unrecognized []byte `json:"-"`
  7917. XXX_sizecache int32 `json:"-"`
  7918. }
  7919. func (m *FriendTowerInfo) Reset() { *m = FriendTowerInfo{} }
  7920. func (m *FriendTowerInfo) String() string { return proto.CompactTextString(m) }
  7921. func (*FriendTowerInfo) ProtoMessage() {}
  7922. func (*FriendTowerInfo) Descriptor() ([]byte, []int) {
  7923. return fileDescriptor_116e343673f7ffaf, []int{130}
  7924. }
  7925. func (m *FriendTowerInfo) XXX_Unmarshal(b []byte) error {
  7926. return xxx_messageInfo_FriendTowerInfo.Unmarshal(m, b)
  7927. }
  7928. func (m *FriendTowerInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7929. return xxx_messageInfo_FriendTowerInfo.Marshal(b, m, deterministic)
  7930. }
  7931. func (m *FriendTowerInfo) XXX_Merge(src proto.Message) {
  7932. xxx_messageInfo_FriendTowerInfo.Merge(m, src)
  7933. }
  7934. func (m *FriendTowerInfo) XXX_Size() int {
  7935. return xxx_messageInfo_FriendTowerInfo.Size(m)
  7936. }
  7937. func (m *FriendTowerInfo) XXX_DiscardUnknown() {
  7938. xxx_messageInfo_FriendTowerInfo.DiscardUnknown(m)
  7939. }
  7940. var xxx_messageInfo_FriendTowerInfo proto.InternalMessageInfo
  7941. func (m *FriendTowerInfo) GetTowerLevel() int32 {
  7942. if m != nil {
  7943. return m.TowerLevel
  7944. }
  7945. return 0
  7946. }
  7947. func (m *FriendTowerInfo) GetInfos() []*CommonPlayerBriefInfo {
  7948. if m != nil {
  7949. return m.Infos
  7950. }
  7951. return nil
  7952. }
  7953. type RushTower struct {
  7954. RushRound int32 `protobuf:"varint,1,opt,name=rush_round,json=rushRound,proto3" json:"rush_round,omitempty"`
  7955. Count int32 `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"`
  7956. Reward int32 `protobuf:"varint,3,opt,name=reward,proto3" json:"reward,omitempty"`
  7957. RankReward int32 `protobuf:"varint,4,opt,name=rank_reward,json=rankReward,proto3" json:"rank_reward,omitempty"`
  7958. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7959. XXX_unrecognized []byte `json:"-"`
  7960. XXX_sizecache int32 `json:"-"`
  7961. }
  7962. func (m *RushTower) Reset() { *m = RushTower{} }
  7963. func (m *RushTower) String() string { return proto.CompactTextString(m) }
  7964. func (*RushTower) ProtoMessage() {}
  7965. func (*RushTower) Descriptor() ([]byte, []int) {
  7966. return fileDescriptor_116e343673f7ffaf, []int{131}
  7967. }
  7968. func (m *RushTower) XXX_Unmarshal(b []byte) error {
  7969. return xxx_messageInfo_RushTower.Unmarshal(m, b)
  7970. }
  7971. func (m *RushTower) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7972. return xxx_messageInfo_RushTower.Marshal(b, m, deterministic)
  7973. }
  7974. func (m *RushTower) XXX_Merge(src proto.Message) {
  7975. xxx_messageInfo_RushTower.Merge(m, src)
  7976. }
  7977. func (m *RushTower) XXX_Size() int {
  7978. return xxx_messageInfo_RushTower.Size(m)
  7979. }
  7980. func (m *RushTower) XXX_DiscardUnknown() {
  7981. xxx_messageInfo_RushTower.DiscardUnknown(m)
  7982. }
  7983. var xxx_messageInfo_RushTower proto.InternalMessageInfo
  7984. func (m *RushTower) GetRushRound() int32 {
  7985. if m != nil {
  7986. return m.RushRound
  7987. }
  7988. return 0
  7989. }
  7990. func (m *RushTower) GetCount() int32 {
  7991. if m != nil {
  7992. return m.Count
  7993. }
  7994. return 0
  7995. }
  7996. func (m *RushTower) GetReward() int32 {
  7997. if m != nil {
  7998. return m.Reward
  7999. }
  8000. return 0
  8001. }
  8002. func (m *RushTower) GetRankReward() int32 {
  8003. if m != nil {
  8004. return m.RankReward
  8005. }
  8006. return 0
  8007. }
  8008. type RoleTower struct {
  8009. NowTowerLevel int32 `protobuf:"varint,1,opt,name=now_tower_level,json=nowTowerLevel,proto3" json:"now_tower_level,omitempty"`
  8010. NowTowerTime int64 `protobuf:"varint,2,opt,name=now_tower_time,json=nowTowerTime,proto3" json:"now_tower_time,omitempty"`
  8011. RushTower *RushTower `protobuf:"bytes,3,opt,name=rush_tower,json=rushTower,proto3" json:"rush_tower,omitempty"`
  8012. SysRewardTime uint64 `protobuf:"varint,4,opt,name=sys_reward_time,json=sysRewardTime,proto3" json:"sys_reward_time,omitempty"`
  8013. TowerLevelDayRewardTime uint64 `protobuf:"varint,5,opt,name=tower_level_day_reward_time,json=towerLevelDayRewardTime,proto3" json:"tower_level_day_reward_time,omitempty"`
  8014. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8015. XXX_unrecognized []byte `json:"-"`
  8016. XXX_sizecache int32 `json:"-"`
  8017. }
  8018. func (m *RoleTower) Reset() { *m = RoleTower{} }
  8019. func (m *RoleTower) String() string { return proto.CompactTextString(m) }
  8020. func (*RoleTower) ProtoMessage() {}
  8021. func (*RoleTower) Descriptor() ([]byte, []int) {
  8022. return fileDescriptor_116e343673f7ffaf, []int{132}
  8023. }
  8024. func (m *RoleTower) XXX_Unmarshal(b []byte) error {
  8025. return xxx_messageInfo_RoleTower.Unmarshal(m, b)
  8026. }
  8027. func (m *RoleTower) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8028. return xxx_messageInfo_RoleTower.Marshal(b, m, deterministic)
  8029. }
  8030. func (m *RoleTower) XXX_Merge(src proto.Message) {
  8031. xxx_messageInfo_RoleTower.Merge(m, src)
  8032. }
  8033. func (m *RoleTower) XXX_Size() int {
  8034. return xxx_messageInfo_RoleTower.Size(m)
  8035. }
  8036. func (m *RoleTower) XXX_DiscardUnknown() {
  8037. xxx_messageInfo_RoleTower.DiscardUnknown(m)
  8038. }
  8039. var xxx_messageInfo_RoleTower proto.InternalMessageInfo
  8040. func (m *RoleTower) GetNowTowerLevel() int32 {
  8041. if m != nil {
  8042. return m.NowTowerLevel
  8043. }
  8044. return 0
  8045. }
  8046. func (m *RoleTower) GetNowTowerTime() int64 {
  8047. if m != nil {
  8048. return m.NowTowerTime
  8049. }
  8050. return 0
  8051. }
  8052. func (m *RoleTower) GetRushTower() *RushTower {
  8053. if m != nil {
  8054. return m.RushTower
  8055. }
  8056. return nil
  8057. }
  8058. func (m *RoleTower) GetSysRewardTime() uint64 {
  8059. if m != nil {
  8060. return m.SysRewardTime
  8061. }
  8062. return 0
  8063. }
  8064. func (m *RoleTower) GetTowerLevelDayRewardTime() uint64 {
  8065. if m != nil {
  8066. return m.TowerLevelDayRewardTime
  8067. }
  8068. return 0
  8069. }
  8070. type RefusedApply struct {
  8071. GuildId uint64 `protobuf:"varint,1,opt,name=guild_id,json=guildId,proto3" json:"guild_id,omitempty"`
  8072. ApplyTime int64 `protobuf:"varint,2,opt,name=apply_time,json=applyTime,proto3" json:"apply_time,omitempty"`
  8073. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8074. XXX_unrecognized []byte `json:"-"`
  8075. XXX_sizecache int32 `json:"-"`
  8076. }
  8077. func (m *RefusedApply) Reset() { *m = RefusedApply{} }
  8078. func (m *RefusedApply) String() string { return proto.CompactTextString(m) }
  8079. func (*RefusedApply) ProtoMessage() {}
  8080. func (*RefusedApply) Descriptor() ([]byte, []int) {
  8081. return fileDescriptor_116e343673f7ffaf, []int{133}
  8082. }
  8083. func (m *RefusedApply) XXX_Unmarshal(b []byte) error {
  8084. return xxx_messageInfo_RefusedApply.Unmarshal(m, b)
  8085. }
  8086. func (m *RefusedApply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8087. return xxx_messageInfo_RefusedApply.Marshal(b, m, deterministic)
  8088. }
  8089. func (m *RefusedApply) XXX_Merge(src proto.Message) {
  8090. xxx_messageInfo_RefusedApply.Merge(m, src)
  8091. }
  8092. func (m *RefusedApply) XXX_Size() int {
  8093. return xxx_messageInfo_RefusedApply.Size(m)
  8094. }
  8095. func (m *RefusedApply) XXX_DiscardUnknown() {
  8096. xxx_messageInfo_RefusedApply.DiscardUnknown(m)
  8097. }
  8098. var xxx_messageInfo_RefusedApply proto.InternalMessageInfo
  8099. func (m *RefusedApply) GetGuildId() uint64 {
  8100. if m != nil {
  8101. return m.GuildId
  8102. }
  8103. return 0
  8104. }
  8105. func (m *RefusedApply) GetApplyTime() int64 {
  8106. if m != nil {
  8107. return m.ApplyTime
  8108. }
  8109. return 0
  8110. }
  8111. type DayApply struct {
  8112. GuildId uint64 `protobuf:"varint,1,opt,name=guild_id,json=guildId,proto3" json:"guild_id,omitempty"`
  8113. ApplyTime int64 `protobuf:"varint,2,opt,name=apply_time,json=applyTime,proto3" json:"apply_time,omitempty"`
  8114. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8115. XXX_unrecognized []byte `json:"-"`
  8116. XXX_sizecache int32 `json:"-"`
  8117. }
  8118. func (m *DayApply) Reset() { *m = DayApply{} }
  8119. func (m *DayApply) String() string { return proto.CompactTextString(m) }
  8120. func (*DayApply) ProtoMessage() {}
  8121. func (*DayApply) Descriptor() ([]byte, []int) {
  8122. return fileDescriptor_116e343673f7ffaf, []int{134}
  8123. }
  8124. func (m *DayApply) XXX_Unmarshal(b []byte) error {
  8125. return xxx_messageInfo_DayApply.Unmarshal(m, b)
  8126. }
  8127. func (m *DayApply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8128. return xxx_messageInfo_DayApply.Marshal(b, m, deterministic)
  8129. }
  8130. func (m *DayApply) XXX_Merge(src proto.Message) {
  8131. xxx_messageInfo_DayApply.Merge(m, src)
  8132. }
  8133. func (m *DayApply) XXX_Size() int {
  8134. return xxx_messageInfo_DayApply.Size(m)
  8135. }
  8136. func (m *DayApply) XXX_DiscardUnknown() {
  8137. xxx_messageInfo_DayApply.DiscardUnknown(m)
  8138. }
  8139. var xxx_messageInfo_DayApply proto.InternalMessageInfo
  8140. func (m *DayApply) GetGuildId() uint64 {
  8141. if m != nil {
  8142. return m.GuildId
  8143. }
  8144. return 0
  8145. }
  8146. func (m *DayApply) GetApplyTime() int64 {
  8147. if m != nil {
  8148. return m.ApplyTime
  8149. }
  8150. return 0
  8151. }
  8152. type TowerBriefInfo struct {
  8153. CommonInfo *CommonPlayerBriefInfo `protobuf:"bytes,1,opt,name=common_info,json=commonInfo,proto3" json:"common_info,omitempty"`
  8154. BattleTime int32 `protobuf:"varint,2,opt,name=battle_time,json=battleTime,proto3" json:"battle_time,omitempty"`
  8155. BattleVersion int32 `protobuf:"varint,3,opt,name=battle_version,json=battleVersion,proto3" json:"battle_version,omitempty"`
  8156. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8157. XXX_unrecognized []byte `json:"-"`
  8158. XXX_sizecache int32 `json:"-"`
  8159. }
  8160. func (m *TowerBriefInfo) Reset() { *m = TowerBriefInfo{} }
  8161. func (m *TowerBriefInfo) String() string { return proto.CompactTextString(m) }
  8162. func (*TowerBriefInfo) ProtoMessage() {}
  8163. func (*TowerBriefInfo) Descriptor() ([]byte, []int) {
  8164. return fileDescriptor_116e343673f7ffaf, []int{135}
  8165. }
  8166. func (m *TowerBriefInfo) XXX_Unmarshal(b []byte) error {
  8167. return xxx_messageInfo_TowerBriefInfo.Unmarshal(m, b)
  8168. }
  8169. func (m *TowerBriefInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8170. return xxx_messageInfo_TowerBriefInfo.Marshal(b, m, deterministic)
  8171. }
  8172. func (m *TowerBriefInfo) XXX_Merge(src proto.Message) {
  8173. xxx_messageInfo_TowerBriefInfo.Merge(m, src)
  8174. }
  8175. func (m *TowerBriefInfo) XXX_Size() int {
  8176. return xxx_messageInfo_TowerBriefInfo.Size(m)
  8177. }
  8178. func (m *TowerBriefInfo) XXX_DiscardUnknown() {
  8179. xxx_messageInfo_TowerBriefInfo.DiscardUnknown(m)
  8180. }
  8181. var xxx_messageInfo_TowerBriefInfo proto.InternalMessageInfo
  8182. func (m *TowerBriefInfo) GetCommonInfo() *CommonPlayerBriefInfo {
  8183. if m != nil {
  8184. return m.CommonInfo
  8185. }
  8186. return nil
  8187. }
  8188. func (m *TowerBriefInfo) GetBattleTime() int32 {
  8189. if m != nil {
  8190. return m.BattleTime
  8191. }
  8192. return 0
  8193. }
  8194. func (m *TowerBriefInfo) GetBattleVersion() int32 {
  8195. if m != nil {
  8196. return m.BattleVersion
  8197. }
  8198. return 0
  8199. }
  8200. type RecommendGuild struct {
  8201. GuildId uint64 `protobuf:"varint,1,opt,name=guild_id,json=guildId,proto3" json:"guild_id,omitempty"`
  8202. Level int32 `protobuf:"varint,2,opt,name=level,proto3" json:"level,omitempty"`
  8203. ActiveTime int64 `protobuf:"varint,3,opt,name=active_time,json=activeTime,proto3" json:"active_time,omitempty"`
  8204. Active uint32 `protobuf:"varint,4,opt,name=active,proto3" json:"active,omitempty"`
  8205. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8206. XXX_unrecognized []byte `json:"-"`
  8207. XXX_sizecache int32 `json:"-"`
  8208. }
  8209. func (m *RecommendGuild) Reset() { *m = RecommendGuild{} }
  8210. func (m *RecommendGuild) String() string { return proto.CompactTextString(m) }
  8211. func (*RecommendGuild) ProtoMessage() {}
  8212. func (*RecommendGuild) Descriptor() ([]byte, []int) {
  8213. return fileDescriptor_116e343673f7ffaf, []int{136}
  8214. }
  8215. func (m *RecommendGuild) XXX_Unmarshal(b []byte) error {
  8216. return xxx_messageInfo_RecommendGuild.Unmarshal(m, b)
  8217. }
  8218. func (m *RecommendGuild) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8219. return xxx_messageInfo_RecommendGuild.Marshal(b, m, deterministic)
  8220. }
  8221. func (m *RecommendGuild) XXX_Merge(src proto.Message) {
  8222. xxx_messageInfo_RecommendGuild.Merge(m, src)
  8223. }
  8224. func (m *RecommendGuild) XXX_Size() int {
  8225. return xxx_messageInfo_RecommendGuild.Size(m)
  8226. }
  8227. func (m *RecommendGuild) XXX_DiscardUnknown() {
  8228. xxx_messageInfo_RecommendGuild.DiscardUnknown(m)
  8229. }
  8230. var xxx_messageInfo_RecommendGuild proto.InternalMessageInfo
  8231. func (m *RecommendGuild) GetGuildId() uint64 {
  8232. if m != nil {
  8233. return m.GuildId
  8234. }
  8235. return 0
  8236. }
  8237. func (m *RecommendGuild) GetLevel() int32 {
  8238. if m != nil {
  8239. return m.Level
  8240. }
  8241. return 0
  8242. }
  8243. func (m *RecommendGuild) GetActiveTime() int64 {
  8244. if m != nil {
  8245. return m.ActiveTime
  8246. }
  8247. return 0
  8248. }
  8249. func (m *RecommendGuild) GetActive() uint32 {
  8250. if m != nil {
  8251. return m.Active
  8252. }
  8253. return 0
  8254. }
  8255. type RecommendSet struct {
  8256. Guild []*RecommendGuild `protobuf:"bytes,1,rep,name=guild,proto3" json:"guild,omitempty"`
  8257. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8258. XXX_unrecognized []byte `json:"-"`
  8259. XXX_sizecache int32 `json:"-"`
  8260. }
  8261. func (m *RecommendSet) Reset() { *m = RecommendSet{} }
  8262. func (m *RecommendSet) String() string { return proto.CompactTextString(m) }
  8263. func (*RecommendSet) ProtoMessage() {}
  8264. func (*RecommendSet) Descriptor() ([]byte, []int) {
  8265. return fileDescriptor_116e343673f7ffaf, []int{137}
  8266. }
  8267. func (m *RecommendSet) XXX_Unmarshal(b []byte) error {
  8268. return xxx_messageInfo_RecommendSet.Unmarshal(m, b)
  8269. }
  8270. func (m *RecommendSet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8271. return xxx_messageInfo_RecommendSet.Marshal(b, m, deterministic)
  8272. }
  8273. func (m *RecommendSet) XXX_Merge(src proto.Message) {
  8274. xxx_messageInfo_RecommendSet.Merge(m, src)
  8275. }
  8276. func (m *RecommendSet) XXX_Size() int {
  8277. return xxx_messageInfo_RecommendSet.Size(m)
  8278. }
  8279. func (m *RecommendSet) XXX_DiscardUnknown() {
  8280. xxx_messageInfo_RecommendSet.DiscardUnknown(m)
  8281. }
  8282. var xxx_messageInfo_RecommendSet proto.InternalMessageInfo
  8283. func (m *RecommendSet) GetGuild() []*RecommendGuild {
  8284. if m != nil {
  8285. return m.Guild
  8286. }
  8287. return nil
  8288. }
  8289. // =============================== 公会 ====================================
  8290. // 客户端请求: 公会基础信息:成员简介
  8291. type MemberBrief struct {
  8292. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  8293. OfflineTime int64 `protobuf:"varint,2,opt,name=offline_time,json=offlineTime,proto3" json:"offline_time,omitempty"`
  8294. Title int32 `protobuf:"varint,3,opt,name=title,proto3" json:"title,omitempty"`
  8295. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8296. XXX_unrecognized []byte `json:"-"`
  8297. XXX_sizecache int32 `json:"-"`
  8298. }
  8299. func (m *MemberBrief) Reset() { *m = MemberBrief{} }
  8300. func (m *MemberBrief) String() string { return proto.CompactTextString(m) }
  8301. func (*MemberBrief) ProtoMessage() {}
  8302. func (*MemberBrief) Descriptor() ([]byte, []int) {
  8303. return fileDescriptor_116e343673f7ffaf, []int{138}
  8304. }
  8305. func (m *MemberBrief) XXX_Unmarshal(b []byte) error {
  8306. return xxx_messageInfo_MemberBrief.Unmarshal(m, b)
  8307. }
  8308. func (m *MemberBrief) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8309. return xxx_messageInfo_MemberBrief.Marshal(b, m, deterministic)
  8310. }
  8311. func (m *MemberBrief) XXX_Merge(src proto.Message) {
  8312. xxx_messageInfo_MemberBrief.Merge(m, src)
  8313. }
  8314. func (m *MemberBrief) XXX_Size() int {
  8315. return xxx_messageInfo_MemberBrief.Size(m)
  8316. }
  8317. func (m *MemberBrief) XXX_DiscardUnknown() {
  8318. xxx_messageInfo_MemberBrief.DiscardUnknown(m)
  8319. }
  8320. var xxx_messageInfo_MemberBrief proto.InternalMessageInfo
  8321. func (m *MemberBrief) GetUid() uint64 {
  8322. if m != nil {
  8323. return m.Uid
  8324. }
  8325. return 0
  8326. }
  8327. func (m *MemberBrief) GetOfflineTime() int64 {
  8328. if m != nil {
  8329. return m.OfflineTime
  8330. }
  8331. return 0
  8332. }
  8333. func (m *MemberBrief) GetTitle() int32 {
  8334. if m != nil {
  8335. return m.Title
  8336. }
  8337. return 0
  8338. }
  8339. // 客户端请求: 公会基础信息:公会简介
  8340. type GuildNotifyData struct {
  8341. Brief *GuildBrief `protobuf:"bytes,1,opt,name=brief,proto3" json:"brief,omitempty"`
  8342. MemCount int32 `protobuf:"varint,2,opt,name=mem_count,json=memCount,proto3" json:"mem_count,omitempty"`
  8343. IsApply bool `protobuf:"varint,3,opt,name=is_apply,json=isApply,proto3" json:"is_apply,omitempty"`
  8344. CpNum bool `protobuf:"varint,4,opt,name=cp_num,json=cpNum,proto3" json:"cp_num,omitempty"`
  8345. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8346. XXX_unrecognized []byte `json:"-"`
  8347. XXX_sizecache int32 `json:"-"`
  8348. }
  8349. func (m *GuildNotifyData) Reset() { *m = GuildNotifyData{} }
  8350. func (m *GuildNotifyData) String() string { return proto.CompactTextString(m) }
  8351. func (*GuildNotifyData) ProtoMessage() {}
  8352. func (*GuildNotifyData) Descriptor() ([]byte, []int) {
  8353. return fileDescriptor_116e343673f7ffaf, []int{139}
  8354. }
  8355. func (m *GuildNotifyData) XXX_Unmarshal(b []byte) error {
  8356. return xxx_messageInfo_GuildNotifyData.Unmarshal(m, b)
  8357. }
  8358. func (m *GuildNotifyData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8359. return xxx_messageInfo_GuildNotifyData.Marshal(b, m, deterministic)
  8360. }
  8361. func (m *GuildNotifyData) XXX_Merge(src proto.Message) {
  8362. xxx_messageInfo_GuildNotifyData.Merge(m, src)
  8363. }
  8364. func (m *GuildNotifyData) XXX_Size() int {
  8365. return xxx_messageInfo_GuildNotifyData.Size(m)
  8366. }
  8367. func (m *GuildNotifyData) XXX_DiscardUnknown() {
  8368. xxx_messageInfo_GuildNotifyData.DiscardUnknown(m)
  8369. }
  8370. var xxx_messageInfo_GuildNotifyData proto.InternalMessageInfo
  8371. func (m *GuildNotifyData) GetBrief() *GuildBrief {
  8372. if m != nil {
  8373. return m.Brief
  8374. }
  8375. return nil
  8376. }
  8377. func (m *GuildNotifyData) GetMemCount() int32 {
  8378. if m != nil {
  8379. return m.MemCount
  8380. }
  8381. return 0
  8382. }
  8383. func (m *GuildNotifyData) GetIsApply() bool {
  8384. if m != nil {
  8385. return m.IsApply
  8386. }
  8387. return false
  8388. }
  8389. func (m *GuildNotifyData) GetCpNum() bool {
  8390. if m != nil {
  8391. return m.CpNum
  8392. }
  8393. return false
  8394. }
  8395. // 客户端请求: 成员详细信息
  8396. type MemberInfo struct {
  8397. TotalActive uint32 `protobuf:"varint,1,opt,name=total_active,json=totalActive,proto3" json:"total_active,omitempty"`
  8398. Brief *CommonPlayerBriefInfo `protobuf:"bytes,2,opt,name=brief,proto3" json:"brief,omitempty"`
  8399. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8400. XXX_unrecognized []byte `json:"-"`
  8401. XXX_sizecache int32 `json:"-"`
  8402. }
  8403. func (m *MemberInfo) Reset() { *m = MemberInfo{} }
  8404. func (m *MemberInfo) String() string { return proto.CompactTextString(m) }
  8405. func (*MemberInfo) ProtoMessage() {}
  8406. func (*MemberInfo) Descriptor() ([]byte, []int) {
  8407. return fileDescriptor_116e343673f7ffaf, []int{140}
  8408. }
  8409. func (m *MemberInfo) XXX_Unmarshal(b []byte) error {
  8410. return xxx_messageInfo_MemberInfo.Unmarshal(m, b)
  8411. }
  8412. func (m *MemberInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8413. return xxx_messageInfo_MemberInfo.Marshal(b, m, deterministic)
  8414. }
  8415. func (m *MemberInfo) XXX_Merge(src proto.Message) {
  8416. xxx_messageInfo_MemberInfo.Merge(m, src)
  8417. }
  8418. func (m *MemberInfo) XXX_Size() int {
  8419. return xxx_messageInfo_MemberInfo.Size(m)
  8420. }
  8421. func (m *MemberInfo) XXX_DiscardUnknown() {
  8422. xxx_messageInfo_MemberInfo.DiscardUnknown(m)
  8423. }
  8424. var xxx_messageInfo_MemberInfo proto.InternalMessageInfo
  8425. func (m *MemberInfo) GetTotalActive() uint32 {
  8426. if m != nil {
  8427. return m.TotalActive
  8428. }
  8429. return 0
  8430. }
  8431. func (m *MemberInfo) GetBrief() *CommonPlayerBriefInfo {
  8432. if m != nil {
  8433. return m.Brief
  8434. }
  8435. return nil
  8436. }
  8437. type GuildBossLogDetial struct {
  8438. FightLog *GuildFightLog `protobuf:"bytes,1,opt,name=fight_log,json=fightLog,proto3" json:"fight_log,omitempty"`
  8439. Info *CommonPlayerBriefInfo `protobuf:"bytes,2,opt,name=info,proto3" json:"info,omitempty"`
  8440. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8441. XXX_unrecognized []byte `json:"-"`
  8442. XXX_sizecache int32 `json:"-"`
  8443. }
  8444. func (m *GuildBossLogDetial) Reset() { *m = GuildBossLogDetial{} }
  8445. func (m *GuildBossLogDetial) String() string { return proto.CompactTextString(m) }
  8446. func (*GuildBossLogDetial) ProtoMessage() {}
  8447. func (*GuildBossLogDetial) Descriptor() ([]byte, []int) {
  8448. return fileDescriptor_116e343673f7ffaf, []int{141}
  8449. }
  8450. func (m *GuildBossLogDetial) XXX_Unmarshal(b []byte) error {
  8451. return xxx_messageInfo_GuildBossLogDetial.Unmarshal(m, b)
  8452. }
  8453. func (m *GuildBossLogDetial) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8454. return xxx_messageInfo_GuildBossLogDetial.Marshal(b, m, deterministic)
  8455. }
  8456. func (m *GuildBossLogDetial) XXX_Merge(src proto.Message) {
  8457. xxx_messageInfo_GuildBossLogDetial.Merge(m, src)
  8458. }
  8459. func (m *GuildBossLogDetial) XXX_Size() int {
  8460. return xxx_messageInfo_GuildBossLogDetial.Size(m)
  8461. }
  8462. func (m *GuildBossLogDetial) XXX_DiscardUnknown() {
  8463. xxx_messageInfo_GuildBossLogDetial.DiscardUnknown(m)
  8464. }
  8465. var xxx_messageInfo_GuildBossLogDetial proto.InternalMessageInfo
  8466. func (m *GuildBossLogDetial) GetFightLog() *GuildFightLog {
  8467. if m != nil {
  8468. return m.FightLog
  8469. }
  8470. return nil
  8471. }
  8472. func (m *GuildBossLogDetial) GetInfo() *CommonPlayerBriefInfo {
  8473. if m != nil {
  8474. return m.Info
  8475. }
  8476. return nil
  8477. }
  8478. type GuildBossData struct {
  8479. BossId uint32 `protobuf:"varint,1,opt,name=boss_id,json=bossId,proto3" json:"boss_id,omitempty"`
  8480. FightTime uint64 `protobuf:"varint,2,opt,name=fight_time,json=fightTime,proto3" json:"fight_time,omitempty"`
  8481. FightCdTime uint64 `protobuf:"varint,3,opt,name=fight_cd_time,json=fightCdTime,proto3" json:"fight_cd_time,omitempty"`
  8482. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8483. XXX_unrecognized []byte `json:"-"`
  8484. XXX_sizecache int32 `json:"-"`
  8485. }
  8486. func (m *GuildBossData) Reset() { *m = GuildBossData{} }
  8487. func (m *GuildBossData) String() string { return proto.CompactTextString(m) }
  8488. func (*GuildBossData) ProtoMessage() {}
  8489. func (*GuildBossData) Descriptor() ([]byte, []int) {
  8490. return fileDescriptor_116e343673f7ffaf, []int{142}
  8491. }
  8492. func (m *GuildBossData) XXX_Unmarshal(b []byte) error {
  8493. return xxx_messageInfo_GuildBossData.Unmarshal(m, b)
  8494. }
  8495. func (m *GuildBossData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8496. return xxx_messageInfo_GuildBossData.Marshal(b, m, deterministic)
  8497. }
  8498. func (m *GuildBossData) XXX_Merge(src proto.Message) {
  8499. xxx_messageInfo_GuildBossData.Merge(m, src)
  8500. }
  8501. func (m *GuildBossData) XXX_Size() int {
  8502. return xxx_messageInfo_GuildBossData.Size(m)
  8503. }
  8504. func (m *GuildBossData) XXX_DiscardUnknown() {
  8505. xxx_messageInfo_GuildBossData.DiscardUnknown(m)
  8506. }
  8507. var xxx_messageInfo_GuildBossData proto.InternalMessageInfo
  8508. func (m *GuildBossData) GetBossId() uint32 {
  8509. if m != nil {
  8510. return m.BossId
  8511. }
  8512. return 0
  8513. }
  8514. func (m *GuildBossData) GetFightTime() uint64 {
  8515. if m != nil {
  8516. return m.FightTime
  8517. }
  8518. return 0
  8519. }
  8520. func (m *GuildBossData) GetFightCdTime() uint64 {
  8521. if m != nil {
  8522. return m.FightCdTime
  8523. }
  8524. return 0
  8525. }
  8526. // 公会存库======开始
  8527. type GuildLog struct {
  8528. OpTitle int32 `protobuf:"varint,1,opt,name=op_title,json=opTitle,proto3" json:"op_title,omitempty"`
  8529. OpName string `protobuf:"bytes,2,opt,name=op_name,json=opName,proto3" json:"op_name,omitempty"`
  8530. BeOpTitle int32 `protobuf:"varint,3,opt,name=be_op_title,json=beOpTitle,proto3" json:"be_op_title,omitempty"`
  8531. BeOpName string `protobuf:"bytes,4,opt,name=be_op_name,json=beOpName,proto3" json:"be_op_name,omitempty"`
  8532. EventType int32 `protobuf:"varint,5,opt,name=event_type,json=eventType,proto3" json:"event_type,omitempty"`
  8533. EventTime uint64 `protobuf:"varint,6,opt,name=event_time,json=eventTime,proto3" json:"event_time,omitempty"`
  8534. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8535. XXX_unrecognized []byte `json:"-"`
  8536. XXX_sizecache int32 `json:"-"`
  8537. }
  8538. func (m *GuildLog) Reset() { *m = GuildLog{} }
  8539. func (m *GuildLog) String() string { return proto.CompactTextString(m) }
  8540. func (*GuildLog) ProtoMessage() {}
  8541. func (*GuildLog) Descriptor() ([]byte, []int) {
  8542. return fileDescriptor_116e343673f7ffaf, []int{143}
  8543. }
  8544. func (m *GuildLog) XXX_Unmarshal(b []byte) error {
  8545. return xxx_messageInfo_GuildLog.Unmarshal(m, b)
  8546. }
  8547. func (m *GuildLog) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8548. return xxx_messageInfo_GuildLog.Marshal(b, m, deterministic)
  8549. }
  8550. func (m *GuildLog) XXX_Merge(src proto.Message) {
  8551. xxx_messageInfo_GuildLog.Merge(m, src)
  8552. }
  8553. func (m *GuildLog) XXX_Size() int {
  8554. return xxx_messageInfo_GuildLog.Size(m)
  8555. }
  8556. func (m *GuildLog) XXX_DiscardUnknown() {
  8557. xxx_messageInfo_GuildLog.DiscardUnknown(m)
  8558. }
  8559. var xxx_messageInfo_GuildLog proto.InternalMessageInfo
  8560. func (m *GuildLog) GetOpTitle() int32 {
  8561. if m != nil {
  8562. return m.OpTitle
  8563. }
  8564. return 0
  8565. }
  8566. func (m *GuildLog) GetOpName() string {
  8567. if m != nil {
  8568. return m.OpName
  8569. }
  8570. return ""
  8571. }
  8572. func (m *GuildLog) GetBeOpTitle() int32 {
  8573. if m != nil {
  8574. return m.BeOpTitle
  8575. }
  8576. return 0
  8577. }
  8578. func (m *GuildLog) GetBeOpName() string {
  8579. if m != nil {
  8580. return m.BeOpName
  8581. }
  8582. return ""
  8583. }
  8584. func (m *GuildLog) GetEventType() int32 {
  8585. if m != nil {
  8586. return m.EventType
  8587. }
  8588. return 0
  8589. }
  8590. func (m *GuildLog) GetEventTime() uint64 {
  8591. if m != nil {
  8592. return m.EventTime
  8593. }
  8594. return 0
  8595. }
  8596. type GuildLogSet struct {
  8597. GuildLog []*GuildLog `protobuf:"bytes,1,rep,name=guild_log,json=guildLog,proto3" json:"guild_log,omitempty"`
  8598. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8599. XXX_unrecognized []byte `json:"-"`
  8600. XXX_sizecache int32 `json:"-"`
  8601. }
  8602. func (m *GuildLogSet) Reset() { *m = GuildLogSet{} }
  8603. func (m *GuildLogSet) String() string { return proto.CompactTextString(m) }
  8604. func (*GuildLogSet) ProtoMessage() {}
  8605. func (*GuildLogSet) Descriptor() ([]byte, []int) {
  8606. return fileDescriptor_116e343673f7ffaf, []int{144}
  8607. }
  8608. func (m *GuildLogSet) XXX_Unmarshal(b []byte) error {
  8609. return xxx_messageInfo_GuildLogSet.Unmarshal(m, b)
  8610. }
  8611. func (m *GuildLogSet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8612. return xxx_messageInfo_GuildLogSet.Marshal(b, m, deterministic)
  8613. }
  8614. func (m *GuildLogSet) XXX_Merge(src proto.Message) {
  8615. xxx_messageInfo_GuildLogSet.Merge(m, src)
  8616. }
  8617. func (m *GuildLogSet) XXX_Size() int {
  8618. return xxx_messageInfo_GuildLogSet.Size(m)
  8619. }
  8620. func (m *GuildLogSet) XXX_DiscardUnknown() {
  8621. xxx_messageInfo_GuildLogSet.DiscardUnknown(m)
  8622. }
  8623. var xxx_messageInfo_GuildLogSet proto.InternalMessageInfo
  8624. func (m *GuildLogSet) GetGuildLog() []*GuildLog {
  8625. if m != nil {
  8626. return m.GuildLog
  8627. }
  8628. return nil
  8629. }
  8630. type GuildMember struct {
  8631. MemberId uint64 `protobuf:"varint,1,opt,name=member_id,json=memberId,proto3" json:"member_id,omitempty"`
  8632. Title int32 `protobuf:"varint,2,opt,name=title,proto3" json:"title,omitempty"`
  8633. OfflineTime int64 `protobuf:"varint,3,opt,name=offline_time,json=offlineTime,proto3" json:"offline_time,omitempty"`
  8634. ActiveInfo []*KeyValueType64 `protobuf:"bytes,4,rep,name=active_info,json=activeInfo,proto3" json:"active_info,omitempty"`
  8635. AddGuildTime uint64 `protobuf:"varint,5,opt,name=add_guild_time,json=addGuildTime,proto3" json:"add_guild_time,omitempty"`
  8636. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8637. XXX_unrecognized []byte `json:"-"`
  8638. XXX_sizecache int32 `json:"-"`
  8639. }
  8640. func (m *GuildMember) Reset() { *m = GuildMember{} }
  8641. func (m *GuildMember) String() string { return proto.CompactTextString(m) }
  8642. func (*GuildMember) ProtoMessage() {}
  8643. func (*GuildMember) Descriptor() ([]byte, []int) {
  8644. return fileDescriptor_116e343673f7ffaf, []int{145}
  8645. }
  8646. func (m *GuildMember) XXX_Unmarshal(b []byte) error {
  8647. return xxx_messageInfo_GuildMember.Unmarshal(m, b)
  8648. }
  8649. func (m *GuildMember) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8650. return xxx_messageInfo_GuildMember.Marshal(b, m, deterministic)
  8651. }
  8652. func (m *GuildMember) XXX_Merge(src proto.Message) {
  8653. xxx_messageInfo_GuildMember.Merge(m, src)
  8654. }
  8655. func (m *GuildMember) XXX_Size() int {
  8656. return xxx_messageInfo_GuildMember.Size(m)
  8657. }
  8658. func (m *GuildMember) XXX_DiscardUnknown() {
  8659. xxx_messageInfo_GuildMember.DiscardUnknown(m)
  8660. }
  8661. var xxx_messageInfo_GuildMember proto.InternalMessageInfo
  8662. func (m *GuildMember) GetMemberId() uint64 {
  8663. if m != nil {
  8664. return m.MemberId
  8665. }
  8666. return 0
  8667. }
  8668. func (m *GuildMember) GetTitle() int32 {
  8669. if m != nil {
  8670. return m.Title
  8671. }
  8672. return 0
  8673. }
  8674. func (m *GuildMember) GetOfflineTime() int64 {
  8675. if m != nil {
  8676. return m.OfflineTime
  8677. }
  8678. return 0
  8679. }
  8680. func (m *GuildMember) GetActiveInfo() []*KeyValueType64 {
  8681. if m != nil {
  8682. return m.ActiveInfo
  8683. }
  8684. return nil
  8685. }
  8686. func (m *GuildMember) GetAddGuildTime() uint64 {
  8687. if m != nil {
  8688. return m.AddGuildTime
  8689. }
  8690. return 0
  8691. }
  8692. type MemberData struct {
  8693. PreId uint64 `protobuf:"varint,1,opt,name=pre_id,json=preId,proto3" json:"pre_id,omitempty"`
  8694. VicePreId []uint64 `protobuf:"varint,2,rep,packed,name=vice_pre_id,json=vicePreId,proto3" json:"vice_pre_id,omitempty"`
  8695. MemberInfo []*GuildMember `protobuf:"bytes,3,rep,name=member_info,json=memberInfo,proto3" json:"member_info,omitempty"`
  8696. KickTime uint64 `protobuf:"varint,4,opt,name=kick_time,json=kickTime,proto3" json:"kick_time,omitempty"`
  8697. KickNum int32 `protobuf:"varint,5,opt,name=kick_num,json=kickNum,proto3" json:"kick_num,omitempty"`
  8698. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8699. XXX_unrecognized []byte `json:"-"`
  8700. XXX_sizecache int32 `json:"-"`
  8701. }
  8702. func (m *MemberData) Reset() { *m = MemberData{} }
  8703. func (m *MemberData) String() string { return proto.CompactTextString(m) }
  8704. func (*MemberData) ProtoMessage() {}
  8705. func (*MemberData) Descriptor() ([]byte, []int) {
  8706. return fileDescriptor_116e343673f7ffaf, []int{146}
  8707. }
  8708. func (m *MemberData) XXX_Unmarshal(b []byte) error {
  8709. return xxx_messageInfo_MemberData.Unmarshal(m, b)
  8710. }
  8711. func (m *MemberData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8712. return xxx_messageInfo_MemberData.Marshal(b, m, deterministic)
  8713. }
  8714. func (m *MemberData) XXX_Merge(src proto.Message) {
  8715. xxx_messageInfo_MemberData.Merge(m, src)
  8716. }
  8717. func (m *MemberData) XXX_Size() int {
  8718. return xxx_messageInfo_MemberData.Size(m)
  8719. }
  8720. func (m *MemberData) XXX_DiscardUnknown() {
  8721. xxx_messageInfo_MemberData.DiscardUnknown(m)
  8722. }
  8723. var xxx_messageInfo_MemberData proto.InternalMessageInfo
  8724. func (m *MemberData) GetPreId() uint64 {
  8725. if m != nil {
  8726. return m.PreId
  8727. }
  8728. return 0
  8729. }
  8730. func (m *MemberData) GetVicePreId() []uint64 {
  8731. if m != nil {
  8732. return m.VicePreId
  8733. }
  8734. return nil
  8735. }
  8736. func (m *MemberData) GetMemberInfo() []*GuildMember {
  8737. if m != nil {
  8738. return m.MemberInfo
  8739. }
  8740. return nil
  8741. }
  8742. func (m *MemberData) GetKickTime() uint64 {
  8743. if m != nil {
  8744. return m.KickTime
  8745. }
  8746. return 0
  8747. }
  8748. func (m *MemberData) GetKickNum() int32 {
  8749. if m != nil {
  8750. return m.KickNum
  8751. }
  8752. return 0
  8753. }
  8754. type GuildBrief struct {
  8755. GuildId uint64 `protobuf:"varint,1,opt,name=guild_id,json=guildId,proto3" json:"guild_id,omitempty"`
  8756. GuildName string `protobuf:"bytes,2,opt,name=guild_name,json=guildName,proto3" json:"guild_name,omitempty"`
  8757. GuildBadge int32 `protobuf:"varint,3,opt,name=guild_badge,json=guildBadge,proto3" json:"guild_badge,omitempty"`
  8758. GuildLevel int32 `protobuf:"varint,4,opt,name=guild_level,json=guildLevel,proto3" json:"guild_level,omitempty"`
  8759. GuildActive uint32 `protobuf:"varint,5,opt,name=guild_active,json=guildActive,proto3" json:"guild_active,omitempty"`
  8760. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8761. XXX_unrecognized []byte `json:"-"`
  8762. XXX_sizecache int32 `json:"-"`
  8763. }
  8764. func (m *GuildBrief) Reset() { *m = GuildBrief{} }
  8765. func (m *GuildBrief) String() string { return proto.CompactTextString(m) }
  8766. func (*GuildBrief) ProtoMessage() {}
  8767. func (*GuildBrief) Descriptor() ([]byte, []int) {
  8768. return fileDescriptor_116e343673f7ffaf, []int{147}
  8769. }
  8770. func (m *GuildBrief) XXX_Unmarshal(b []byte) error {
  8771. return xxx_messageInfo_GuildBrief.Unmarshal(m, b)
  8772. }
  8773. func (m *GuildBrief) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8774. return xxx_messageInfo_GuildBrief.Marshal(b, m, deterministic)
  8775. }
  8776. func (m *GuildBrief) XXX_Merge(src proto.Message) {
  8777. xxx_messageInfo_GuildBrief.Merge(m, src)
  8778. }
  8779. func (m *GuildBrief) XXX_Size() int {
  8780. return xxx_messageInfo_GuildBrief.Size(m)
  8781. }
  8782. func (m *GuildBrief) XXX_DiscardUnknown() {
  8783. xxx_messageInfo_GuildBrief.DiscardUnknown(m)
  8784. }
  8785. var xxx_messageInfo_GuildBrief proto.InternalMessageInfo
  8786. func (m *GuildBrief) GetGuildId() uint64 {
  8787. if m != nil {
  8788. return m.GuildId
  8789. }
  8790. return 0
  8791. }
  8792. func (m *GuildBrief) GetGuildName() string {
  8793. if m != nil {
  8794. return m.GuildName
  8795. }
  8796. return ""
  8797. }
  8798. func (m *GuildBrief) GetGuildBadge() int32 {
  8799. if m != nil {
  8800. return m.GuildBadge
  8801. }
  8802. return 0
  8803. }
  8804. func (m *GuildBrief) GetGuildLevel() int32 {
  8805. if m != nil {
  8806. return m.GuildLevel
  8807. }
  8808. return 0
  8809. }
  8810. func (m *GuildBrief) GetGuildActive() uint32 {
  8811. if m != nil {
  8812. return m.GuildActive
  8813. }
  8814. return 0
  8815. }
  8816. type GuildBase struct {
  8817. GuildBrief *GuildBrief `protobuf:"bytes,1,opt,name=guild_brief,json=guildBrief,proto3" json:"guild_brief,omitempty"`
  8818. DayActive uint32 `protobuf:"varint,2,opt,name=day_active,json=dayActive,proto3" json:"day_active,omitempty"`
  8819. GuildExp uint32 `protobuf:"varint,3,opt,name=guild_exp,json=guildExp,proto3" json:"guild_exp,omitempty"`
  8820. ActiveTime int64 `protobuf:"varint,4,opt,name=active_time,json=activeTime,proto3" json:"active_time,omitempty"`
  8821. RecruitType int32 `protobuf:"varint,5,opt,name=recruit_type,json=recruitType,proto3" json:"recruit_type,omitempty"`
  8822. RecruitLevel int32 `protobuf:"varint,6,opt,name=recruit_level,json=recruitLevel,proto3" json:"recruit_level,omitempty"`
  8823. Notice string `protobuf:"bytes,7,opt,name=notice,proto3" json:"notice,omitempty"`
  8824. RecruitNotice string `protobuf:"bytes,8,opt,name=recruit_notice,json=recruitNotice,proto3" json:"recruit_notice,omitempty"`
  8825. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8826. XXX_unrecognized []byte `json:"-"`
  8827. XXX_sizecache int32 `json:"-"`
  8828. }
  8829. func (m *GuildBase) Reset() { *m = GuildBase{} }
  8830. func (m *GuildBase) String() string { return proto.CompactTextString(m) }
  8831. func (*GuildBase) ProtoMessage() {}
  8832. func (*GuildBase) Descriptor() ([]byte, []int) {
  8833. return fileDescriptor_116e343673f7ffaf, []int{148}
  8834. }
  8835. func (m *GuildBase) XXX_Unmarshal(b []byte) error {
  8836. return xxx_messageInfo_GuildBase.Unmarshal(m, b)
  8837. }
  8838. func (m *GuildBase) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8839. return xxx_messageInfo_GuildBase.Marshal(b, m, deterministic)
  8840. }
  8841. func (m *GuildBase) XXX_Merge(src proto.Message) {
  8842. xxx_messageInfo_GuildBase.Merge(m, src)
  8843. }
  8844. func (m *GuildBase) XXX_Size() int {
  8845. return xxx_messageInfo_GuildBase.Size(m)
  8846. }
  8847. func (m *GuildBase) XXX_DiscardUnknown() {
  8848. xxx_messageInfo_GuildBase.DiscardUnknown(m)
  8849. }
  8850. var xxx_messageInfo_GuildBase proto.InternalMessageInfo
  8851. func (m *GuildBase) GetGuildBrief() *GuildBrief {
  8852. if m != nil {
  8853. return m.GuildBrief
  8854. }
  8855. return nil
  8856. }
  8857. func (m *GuildBase) GetDayActive() uint32 {
  8858. if m != nil {
  8859. return m.DayActive
  8860. }
  8861. return 0
  8862. }
  8863. func (m *GuildBase) GetGuildExp() uint32 {
  8864. if m != nil {
  8865. return m.GuildExp
  8866. }
  8867. return 0
  8868. }
  8869. func (m *GuildBase) GetActiveTime() int64 {
  8870. if m != nil {
  8871. return m.ActiveTime
  8872. }
  8873. return 0
  8874. }
  8875. func (m *GuildBase) GetRecruitType() int32 {
  8876. if m != nil {
  8877. return m.RecruitType
  8878. }
  8879. return 0
  8880. }
  8881. func (m *GuildBase) GetRecruitLevel() int32 {
  8882. if m != nil {
  8883. return m.RecruitLevel
  8884. }
  8885. return 0
  8886. }
  8887. func (m *GuildBase) GetNotice() string {
  8888. if m != nil {
  8889. return m.Notice
  8890. }
  8891. return ""
  8892. }
  8893. func (m *GuildBase) GetRecruitNotice() string {
  8894. if m != nil {
  8895. return m.RecruitNotice
  8896. }
  8897. return ""
  8898. }
  8899. type DemonDamage struct {
  8900. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  8901. Damage uint64 `protobuf:"varint,2,opt,name=damage,proto3" json:"damage,omitempty"`
  8902. FightTime uint64 `protobuf:"varint,3,opt,name=fight_time,json=fightTime,proto3" json:"fight_time,omitempty"`
  8903. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8904. XXX_unrecognized []byte `json:"-"`
  8905. XXX_sizecache int32 `json:"-"`
  8906. }
  8907. func (m *DemonDamage) Reset() { *m = DemonDamage{} }
  8908. func (m *DemonDamage) String() string { return proto.CompactTextString(m) }
  8909. func (*DemonDamage) ProtoMessage() {}
  8910. func (*DemonDamage) Descriptor() ([]byte, []int) {
  8911. return fileDescriptor_116e343673f7ffaf, []int{149}
  8912. }
  8913. func (m *DemonDamage) XXX_Unmarshal(b []byte) error {
  8914. return xxx_messageInfo_DemonDamage.Unmarshal(m, b)
  8915. }
  8916. func (m *DemonDamage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8917. return xxx_messageInfo_DemonDamage.Marshal(b, m, deterministic)
  8918. }
  8919. func (m *DemonDamage) XXX_Merge(src proto.Message) {
  8920. xxx_messageInfo_DemonDamage.Merge(m, src)
  8921. }
  8922. func (m *DemonDamage) XXX_Size() int {
  8923. return xxx_messageInfo_DemonDamage.Size(m)
  8924. }
  8925. func (m *DemonDamage) XXX_DiscardUnknown() {
  8926. xxx_messageInfo_DemonDamage.DiscardUnknown(m)
  8927. }
  8928. var xxx_messageInfo_DemonDamage proto.InternalMessageInfo
  8929. func (m *DemonDamage) GetUid() uint64 {
  8930. if m != nil {
  8931. return m.Uid
  8932. }
  8933. return 0
  8934. }
  8935. func (m *DemonDamage) GetDamage() uint64 {
  8936. if m != nil {
  8937. return m.Damage
  8938. }
  8939. return 0
  8940. }
  8941. func (m *DemonDamage) GetFightTime() uint64 {
  8942. if m != nil {
  8943. return m.FightTime
  8944. }
  8945. return 0
  8946. }
  8947. type GuildDemon struct {
  8948. CurDemonId int32 `protobuf:"varint,1,opt,name=cur_demon_id,json=curDemonId,proto3" json:"cur_demon_id,omitempty"`
  8949. TotalDamage uint64 `protobuf:"varint,2,opt,name=total_damage,json=totalDamage,proto3" json:"total_damage,omitempty"`
  8950. DamageList []*DemonDamage `protobuf:"bytes,3,rep,name=damage_list,json=damageList,proto3" json:"damage_list,omitempty"`
  8951. RefreshTime uint64 `protobuf:"varint,4,opt,name=refresh_time,json=refreshTime,proto3" json:"refresh_time,omitempty"`
  8952. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8953. XXX_unrecognized []byte `json:"-"`
  8954. XXX_sizecache int32 `json:"-"`
  8955. }
  8956. func (m *GuildDemon) Reset() { *m = GuildDemon{} }
  8957. func (m *GuildDemon) String() string { return proto.CompactTextString(m) }
  8958. func (*GuildDemon) ProtoMessage() {}
  8959. func (*GuildDemon) Descriptor() ([]byte, []int) {
  8960. return fileDescriptor_116e343673f7ffaf, []int{150}
  8961. }
  8962. func (m *GuildDemon) XXX_Unmarshal(b []byte) error {
  8963. return xxx_messageInfo_GuildDemon.Unmarshal(m, b)
  8964. }
  8965. func (m *GuildDemon) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8966. return xxx_messageInfo_GuildDemon.Marshal(b, m, deterministic)
  8967. }
  8968. func (m *GuildDemon) XXX_Merge(src proto.Message) {
  8969. xxx_messageInfo_GuildDemon.Merge(m, src)
  8970. }
  8971. func (m *GuildDemon) XXX_Size() int {
  8972. return xxx_messageInfo_GuildDemon.Size(m)
  8973. }
  8974. func (m *GuildDemon) XXX_DiscardUnknown() {
  8975. xxx_messageInfo_GuildDemon.DiscardUnknown(m)
  8976. }
  8977. var xxx_messageInfo_GuildDemon proto.InternalMessageInfo
  8978. func (m *GuildDemon) GetCurDemonId() int32 {
  8979. if m != nil {
  8980. return m.CurDemonId
  8981. }
  8982. return 0
  8983. }
  8984. func (m *GuildDemon) GetTotalDamage() uint64 {
  8985. if m != nil {
  8986. return m.TotalDamage
  8987. }
  8988. return 0
  8989. }
  8990. func (m *GuildDemon) GetDamageList() []*DemonDamage {
  8991. if m != nil {
  8992. return m.DamageList
  8993. }
  8994. return nil
  8995. }
  8996. func (m *GuildDemon) GetRefreshTime() uint64 {
  8997. if m != nil {
  8998. return m.RefreshTime
  8999. }
  9000. return 0
  9001. }
  9002. type GuildActiveInfo struct {
  9003. ActiveValue uint32 `protobuf:"varint,1,opt,name=active_value,json=activeValue,proto3" json:"active_value,omitempty"`
  9004. DayActiveValue int32 `protobuf:"varint,2,opt,name=day_active_value,json=dayActiveValue,proto3" json:"day_active_value,omitempty"`
  9005. ActiveTime int64 `protobuf:"varint,3,opt,name=active_time,json=activeTime,proto3" json:"active_time,omitempty"`
  9006. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9007. XXX_unrecognized []byte `json:"-"`
  9008. XXX_sizecache int32 `json:"-"`
  9009. }
  9010. func (m *GuildActiveInfo) Reset() { *m = GuildActiveInfo{} }
  9011. func (m *GuildActiveInfo) String() string { return proto.CompactTextString(m) }
  9012. func (*GuildActiveInfo) ProtoMessage() {}
  9013. func (*GuildActiveInfo) Descriptor() ([]byte, []int) {
  9014. return fileDescriptor_116e343673f7ffaf, []int{151}
  9015. }
  9016. func (m *GuildActiveInfo) XXX_Unmarshal(b []byte) error {
  9017. return xxx_messageInfo_GuildActiveInfo.Unmarshal(m, b)
  9018. }
  9019. func (m *GuildActiveInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9020. return xxx_messageInfo_GuildActiveInfo.Marshal(b, m, deterministic)
  9021. }
  9022. func (m *GuildActiveInfo) XXX_Merge(src proto.Message) {
  9023. xxx_messageInfo_GuildActiveInfo.Merge(m, src)
  9024. }
  9025. func (m *GuildActiveInfo) XXX_Size() int {
  9026. return xxx_messageInfo_GuildActiveInfo.Size(m)
  9027. }
  9028. func (m *GuildActiveInfo) XXX_DiscardUnknown() {
  9029. xxx_messageInfo_GuildActiveInfo.DiscardUnknown(m)
  9030. }
  9031. var xxx_messageInfo_GuildActiveInfo proto.InternalMessageInfo
  9032. func (m *GuildActiveInfo) GetActiveValue() uint32 {
  9033. if m != nil {
  9034. return m.ActiveValue
  9035. }
  9036. return 0
  9037. }
  9038. func (m *GuildActiveInfo) GetDayActiveValue() int32 {
  9039. if m != nil {
  9040. return m.DayActiveValue
  9041. }
  9042. return 0
  9043. }
  9044. func (m *GuildActiveInfo) GetActiveTime() int64 {
  9045. if m != nil {
  9046. return m.ActiveTime
  9047. }
  9048. return 0
  9049. }
  9050. type RoleApplyInfo struct {
  9051. DayApply []*DayApply `protobuf:"bytes,1,rep,name=day_apply,json=dayApply,proto3" json:"day_apply,omitempty"`
  9052. Refused []*RefusedApply `protobuf:"bytes,2,rep,name=refused,proto3" json:"refused,omitempty"`
  9053. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9054. XXX_unrecognized []byte `json:"-"`
  9055. XXX_sizecache int32 `json:"-"`
  9056. }
  9057. func (m *RoleApplyInfo) Reset() { *m = RoleApplyInfo{} }
  9058. func (m *RoleApplyInfo) String() string { return proto.CompactTextString(m) }
  9059. func (*RoleApplyInfo) ProtoMessage() {}
  9060. func (*RoleApplyInfo) Descriptor() ([]byte, []int) {
  9061. return fileDescriptor_116e343673f7ffaf, []int{152}
  9062. }
  9063. func (m *RoleApplyInfo) XXX_Unmarshal(b []byte) error {
  9064. return xxx_messageInfo_RoleApplyInfo.Unmarshal(m, b)
  9065. }
  9066. func (m *RoleApplyInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9067. return xxx_messageInfo_RoleApplyInfo.Marshal(b, m, deterministic)
  9068. }
  9069. func (m *RoleApplyInfo) XXX_Merge(src proto.Message) {
  9070. xxx_messageInfo_RoleApplyInfo.Merge(m, src)
  9071. }
  9072. func (m *RoleApplyInfo) XXX_Size() int {
  9073. return xxx_messageInfo_RoleApplyInfo.Size(m)
  9074. }
  9075. func (m *RoleApplyInfo) XXX_DiscardUnknown() {
  9076. xxx_messageInfo_RoleApplyInfo.DiscardUnknown(m)
  9077. }
  9078. var xxx_messageInfo_RoleApplyInfo proto.InternalMessageInfo
  9079. func (m *RoleApplyInfo) GetDayApply() []*DayApply {
  9080. if m != nil {
  9081. return m.DayApply
  9082. }
  9083. return nil
  9084. }
  9085. func (m *RoleApplyInfo) GetRefused() []*RefusedApply {
  9086. if m != nil {
  9087. return m.Refused
  9088. }
  9089. return nil
  9090. }
  9091. type GuildBossTickTime struct {
  9092. BossId uint32 `protobuf:"varint,1,opt,name=bossId,proto3" json:"bossId,omitempty"`
  9093. FightCount int32 `protobuf:"varint,2,opt,name=fight_count,json=fightCount,proto3" json:"fight_count,omitempty"`
  9094. RefreshTime uint64 `protobuf:"varint,3,opt,name=refresh_time,json=refreshTime,proto3" json:"refresh_time,omitempty"`
  9095. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9096. XXX_unrecognized []byte `json:"-"`
  9097. XXX_sizecache int32 `json:"-"`
  9098. }
  9099. func (m *GuildBossTickTime) Reset() { *m = GuildBossTickTime{} }
  9100. func (m *GuildBossTickTime) String() string { return proto.CompactTextString(m) }
  9101. func (*GuildBossTickTime) ProtoMessage() {}
  9102. func (*GuildBossTickTime) Descriptor() ([]byte, []int) {
  9103. return fileDescriptor_116e343673f7ffaf, []int{153}
  9104. }
  9105. func (m *GuildBossTickTime) XXX_Unmarshal(b []byte) error {
  9106. return xxx_messageInfo_GuildBossTickTime.Unmarshal(m, b)
  9107. }
  9108. func (m *GuildBossTickTime) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9109. return xxx_messageInfo_GuildBossTickTime.Marshal(b, m, deterministic)
  9110. }
  9111. func (m *GuildBossTickTime) XXX_Merge(src proto.Message) {
  9112. xxx_messageInfo_GuildBossTickTime.Merge(m, src)
  9113. }
  9114. func (m *GuildBossTickTime) XXX_Size() int {
  9115. return xxx_messageInfo_GuildBossTickTime.Size(m)
  9116. }
  9117. func (m *GuildBossTickTime) XXX_DiscardUnknown() {
  9118. xxx_messageInfo_GuildBossTickTime.DiscardUnknown(m)
  9119. }
  9120. var xxx_messageInfo_GuildBossTickTime proto.InternalMessageInfo
  9121. func (m *GuildBossTickTime) GetBossId() uint32 {
  9122. if m != nil {
  9123. return m.BossId
  9124. }
  9125. return 0
  9126. }
  9127. func (m *GuildBossTickTime) GetFightCount() int32 {
  9128. if m != nil {
  9129. return m.FightCount
  9130. }
  9131. return 0
  9132. }
  9133. func (m *GuildBossTickTime) GetRefreshTime() uint64 {
  9134. if m != nil {
  9135. return m.RefreshTime
  9136. }
  9137. return 0
  9138. }
  9139. // 公会战个人信息
  9140. type GuildBattle struct {
  9141. RewardRound int32 `protobuf:"varint,1,opt,name=reward_round,json=rewardRound,proto3" json:"reward_round,omitempty"`
  9142. MvpRewardRound int32 `protobuf:"varint,2,opt,name=mvp_reward_round,json=mvpRewardRound,proto3" json:"mvp_reward_round,omitempty"`
  9143. ChallengeNum int32 `protobuf:"varint,3,opt,name=challenge_num,json=challengeNum,proto3" json:"challenge_num,omitempty"`
  9144. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9145. XXX_unrecognized []byte `json:"-"`
  9146. XXX_sizecache int32 `json:"-"`
  9147. }
  9148. func (m *GuildBattle) Reset() { *m = GuildBattle{} }
  9149. func (m *GuildBattle) String() string { return proto.CompactTextString(m) }
  9150. func (*GuildBattle) ProtoMessage() {}
  9151. func (*GuildBattle) Descriptor() ([]byte, []int) {
  9152. return fileDescriptor_116e343673f7ffaf, []int{154}
  9153. }
  9154. func (m *GuildBattle) XXX_Unmarshal(b []byte) error {
  9155. return xxx_messageInfo_GuildBattle.Unmarshal(m, b)
  9156. }
  9157. func (m *GuildBattle) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9158. return xxx_messageInfo_GuildBattle.Marshal(b, m, deterministic)
  9159. }
  9160. func (m *GuildBattle) XXX_Merge(src proto.Message) {
  9161. xxx_messageInfo_GuildBattle.Merge(m, src)
  9162. }
  9163. func (m *GuildBattle) XXX_Size() int {
  9164. return xxx_messageInfo_GuildBattle.Size(m)
  9165. }
  9166. func (m *GuildBattle) XXX_DiscardUnknown() {
  9167. xxx_messageInfo_GuildBattle.DiscardUnknown(m)
  9168. }
  9169. var xxx_messageInfo_GuildBattle proto.InternalMessageInfo
  9170. func (m *GuildBattle) GetRewardRound() int32 {
  9171. if m != nil {
  9172. return m.RewardRound
  9173. }
  9174. return 0
  9175. }
  9176. func (m *GuildBattle) GetMvpRewardRound() int32 {
  9177. if m != nil {
  9178. return m.MvpRewardRound
  9179. }
  9180. return 0
  9181. }
  9182. func (m *GuildBattle) GetChallengeNum() int32 {
  9183. if m != nil {
  9184. return m.ChallengeNum
  9185. }
  9186. return 0
  9187. }
  9188. type GuildDemonReward struct {
  9189. TotalDamage uint64 `protobuf:"varint,1,opt,name=total_damage,json=totalDamage,proto3" json:"total_damage,omitempty"`
  9190. DemonId int32 `protobuf:"varint,2,opt,name=demon_id,json=demonId,proto3" json:"demon_id,omitempty"`
  9191. DamageList []*DemonDamage `protobuf:"bytes,3,rep,name=damage_list,json=damageList,proto3" json:"damage_list,omitempty"`
  9192. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9193. XXX_unrecognized []byte `json:"-"`
  9194. XXX_sizecache int32 `json:"-"`
  9195. }
  9196. func (m *GuildDemonReward) Reset() { *m = GuildDemonReward{} }
  9197. func (m *GuildDemonReward) String() string { return proto.CompactTextString(m) }
  9198. func (*GuildDemonReward) ProtoMessage() {}
  9199. func (*GuildDemonReward) Descriptor() ([]byte, []int) {
  9200. return fileDescriptor_116e343673f7ffaf, []int{155}
  9201. }
  9202. func (m *GuildDemonReward) XXX_Unmarshal(b []byte) error {
  9203. return xxx_messageInfo_GuildDemonReward.Unmarshal(m, b)
  9204. }
  9205. func (m *GuildDemonReward) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9206. return xxx_messageInfo_GuildDemonReward.Marshal(b, m, deterministic)
  9207. }
  9208. func (m *GuildDemonReward) XXX_Merge(src proto.Message) {
  9209. xxx_messageInfo_GuildDemonReward.Merge(m, src)
  9210. }
  9211. func (m *GuildDemonReward) XXX_Size() int {
  9212. return xxx_messageInfo_GuildDemonReward.Size(m)
  9213. }
  9214. func (m *GuildDemonReward) XXX_DiscardUnknown() {
  9215. xxx_messageInfo_GuildDemonReward.DiscardUnknown(m)
  9216. }
  9217. var xxx_messageInfo_GuildDemonReward proto.InternalMessageInfo
  9218. func (m *GuildDemonReward) GetTotalDamage() uint64 {
  9219. if m != nil {
  9220. return m.TotalDamage
  9221. }
  9222. return 0
  9223. }
  9224. func (m *GuildDemonReward) GetDemonId() int32 {
  9225. if m != nil {
  9226. return m.DemonId
  9227. }
  9228. return 0
  9229. }
  9230. func (m *GuildDemonReward) GetDamageList() []*DemonDamage {
  9231. if m != nil {
  9232. return m.DamageList
  9233. }
  9234. return nil
  9235. }
  9236. type DemonInfo struct {
  9237. FreeFightCount int32 `protobuf:"varint,1,opt,name=free_fight_count,json=freeFightCount,proto3" json:"free_fight_count,omitempty"`
  9238. BuyFightCount int32 `protobuf:"varint,2,opt,name=buy_fight_count,json=buyFightCount,proto3" json:"buy_fight_count,omitempty"`
  9239. UseFightCount int32 `protobuf:"varint,3,opt,name=use_fight_count,json=useFightCount,proto3" json:"use_fight_count,omitempty"`
  9240. RefreshTime uint64 `protobuf:"varint,4,opt,name=refresh_time,json=refreshTime,proto3" json:"refresh_time,omitempty"`
  9241. LastFightTime uint64 `protobuf:"varint,5,opt,name=last_fight_time,json=lastFightTime,proto3" json:"last_fight_time,omitempty"`
  9242. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9243. XXX_unrecognized []byte `json:"-"`
  9244. XXX_sizecache int32 `json:"-"`
  9245. }
  9246. func (m *DemonInfo) Reset() { *m = DemonInfo{} }
  9247. func (m *DemonInfo) String() string { return proto.CompactTextString(m) }
  9248. func (*DemonInfo) ProtoMessage() {}
  9249. func (*DemonInfo) Descriptor() ([]byte, []int) {
  9250. return fileDescriptor_116e343673f7ffaf, []int{156}
  9251. }
  9252. func (m *DemonInfo) XXX_Unmarshal(b []byte) error {
  9253. return xxx_messageInfo_DemonInfo.Unmarshal(m, b)
  9254. }
  9255. func (m *DemonInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9256. return xxx_messageInfo_DemonInfo.Marshal(b, m, deterministic)
  9257. }
  9258. func (m *DemonInfo) XXX_Merge(src proto.Message) {
  9259. xxx_messageInfo_DemonInfo.Merge(m, src)
  9260. }
  9261. func (m *DemonInfo) XXX_Size() int {
  9262. return xxx_messageInfo_DemonInfo.Size(m)
  9263. }
  9264. func (m *DemonInfo) XXX_DiscardUnknown() {
  9265. xxx_messageInfo_DemonInfo.DiscardUnknown(m)
  9266. }
  9267. var xxx_messageInfo_DemonInfo proto.InternalMessageInfo
  9268. func (m *DemonInfo) GetFreeFightCount() int32 {
  9269. if m != nil {
  9270. return m.FreeFightCount
  9271. }
  9272. return 0
  9273. }
  9274. func (m *DemonInfo) GetBuyFightCount() int32 {
  9275. if m != nil {
  9276. return m.BuyFightCount
  9277. }
  9278. return 0
  9279. }
  9280. func (m *DemonInfo) GetUseFightCount() int32 {
  9281. if m != nil {
  9282. return m.UseFightCount
  9283. }
  9284. return 0
  9285. }
  9286. func (m *DemonInfo) GetRefreshTime() uint64 {
  9287. if m != nil {
  9288. return m.RefreshTime
  9289. }
  9290. return 0
  9291. }
  9292. func (m *DemonInfo) GetLastFightTime() uint64 {
  9293. if m != nil {
  9294. return m.LastFightTime
  9295. }
  9296. return 0
  9297. }
  9298. type RoleGuild struct {
  9299. GuildId uint64 `protobuf:"varint,1,opt,name=guild_id,json=guildId,proto3" json:"guild_id,omitempty"`
  9300. GuildActive *GuildActiveInfo `protobuf:"bytes,2,opt,name=guild_active,json=guildActive,proto3" json:"guild_active,omitempty"`
  9301. GuildApply *RoleApplyInfo `protobuf:"bytes,3,opt,name=guild_apply,json=guildApply,proto3" json:"guild_apply,omitempty"`
  9302. QuitNum int32 `protobuf:"varint,4,opt,name=quit_num,json=quitNum,proto3" json:"quit_num,omitempty"`
  9303. NextJoin int64 `protobuf:"varint,5,opt,name=next_join,json=nextJoin,proto3" json:"next_join,omitempty"`
  9304. BossFight []*GuildBossTickTime `protobuf:"bytes,6,rep,name=boss_fight,json=bossFight,proto3" json:"boss_fight,omitempty"`
  9305. GuildName string `protobuf:"bytes,7,opt,name=guild_name,json=guildName,proto3" json:"guild_name,omitempty"`
  9306. EliteBossCd uint64 `protobuf:"varint,8,opt,name=elite_boss_cd,json=eliteBossCd,proto3" json:"elite_boss_cd,omitempty"`
  9307. GuildBattle *GuildBattle `protobuf:"bytes,9,opt,name=guild_battle,json=guildBattle,proto3" json:"guild_battle,omitempty"`
  9308. DemonInfo *DemonInfo `protobuf:"bytes,10,opt,name=demon_info,json=demonInfo,proto3" json:"demon_info,omitempty"`
  9309. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9310. XXX_unrecognized []byte `json:"-"`
  9311. XXX_sizecache int32 `json:"-"`
  9312. }
  9313. func (m *RoleGuild) Reset() { *m = RoleGuild{} }
  9314. func (m *RoleGuild) String() string { return proto.CompactTextString(m) }
  9315. func (*RoleGuild) ProtoMessage() {}
  9316. func (*RoleGuild) Descriptor() ([]byte, []int) {
  9317. return fileDescriptor_116e343673f7ffaf, []int{157}
  9318. }
  9319. func (m *RoleGuild) XXX_Unmarshal(b []byte) error {
  9320. return xxx_messageInfo_RoleGuild.Unmarshal(m, b)
  9321. }
  9322. func (m *RoleGuild) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9323. return xxx_messageInfo_RoleGuild.Marshal(b, m, deterministic)
  9324. }
  9325. func (m *RoleGuild) XXX_Merge(src proto.Message) {
  9326. xxx_messageInfo_RoleGuild.Merge(m, src)
  9327. }
  9328. func (m *RoleGuild) XXX_Size() int {
  9329. return xxx_messageInfo_RoleGuild.Size(m)
  9330. }
  9331. func (m *RoleGuild) XXX_DiscardUnknown() {
  9332. xxx_messageInfo_RoleGuild.DiscardUnknown(m)
  9333. }
  9334. var xxx_messageInfo_RoleGuild proto.InternalMessageInfo
  9335. func (m *RoleGuild) GetGuildId() uint64 {
  9336. if m != nil {
  9337. return m.GuildId
  9338. }
  9339. return 0
  9340. }
  9341. func (m *RoleGuild) GetGuildActive() *GuildActiveInfo {
  9342. if m != nil {
  9343. return m.GuildActive
  9344. }
  9345. return nil
  9346. }
  9347. func (m *RoleGuild) GetGuildApply() *RoleApplyInfo {
  9348. if m != nil {
  9349. return m.GuildApply
  9350. }
  9351. return nil
  9352. }
  9353. func (m *RoleGuild) GetQuitNum() int32 {
  9354. if m != nil {
  9355. return m.QuitNum
  9356. }
  9357. return 0
  9358. }
  9359. func (m *RoleGuild) GetNextJoin() int64 {
  9360. if m != nil {
  9361. return m.NextJoin
  9362. }
  9363. return 0
  9364. }
  9365. func (m *RoleGuild) GetBossFight() []*GuildBossTickTime {
  9366. if m != nil {
  9367. return m.BossFight
  9368. }
  9369. return nil
  9370. }
  9371. func (m *RoleGuild) GetGuildName() string {
  9372. if m != nil {
  9373. return m.GuildName
  9374. }
  9375. return ""
  9376. }
  9377. func (m *RoleGuild) GetEliteBossCd() uint64 {
  9378. if m != nil {
  9379. return m.EliteBossCd
  9380. }
  9381. return 0
  9382. }
  9383. func (m *RoleGuild) GetGuildBattle() *GuildBattle {
  9384. if m != nil {
  9385. return m.GuildBattle
  9386. }
  9387. return nil
  9388. }
  9389. func (m *RoleGuild) GetDemonInfo() *DemonInfo {
  9390. if m != nil {
  9391. return m.DemonInfo
  9392. }
  9393. return nil
  9394. }
  9395. type GuildIdex struct {
  9396. GuildId uint64 `protobuf:"varint,1,opt,name=guild_id,json=guildId,proto3" json:"guild_id,omitempty"`
  9397. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9398. XXX_unrecognized []byte `json:"-"`
  9399. XXX_sizecache int32 `json:"-"`
  9400. }
  9401. func (m *GuildIdex) Reset() { *m = GuildIdex{} }
  9402. func (m *GuildIdex) String() string { return proto.CompactTextString(m) }
  9403. func (*GuildIdex) ProtoMessage() {}
  9404. func (*GuildIdex) Descriptor() ([]byte, []int) {
  9405. return fileDescriptor_116e343673f7ffaf, []int{158}
  9406. }
  9407. func (m *GuildIdex) XXX_Unmarshal(b []byte) error {
  9408. return xxx_messageInfo_GuildIdex.Unmarshal(m, b)
  9409. }
  9410. func (m *GuildIdex) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9411. return xxx_messageInfo_GuildIdex.Marshal(b, m, deterministic)
  9412. }
  9413. func (m *GuildIdex) XXX_Merge(src proto.Message) {
  9414. xxx_messageInfo_GuildIdex.Merge(m, src)
  9415. }
  9416. func (m *GuildIdex) XXX_Size() int {
  9417. return xxx_messageInfo_GuildIdex.Size(m)
  9418. }
  9419. func (m *GuildIdex) XXX_DiscardUnknown() {
  9420. xxx_messageInfo_GuildIdex.DiscardUnknown(m)
  9421. }
  9422. var xxx_messageInfo_GuildIdex proto.InternalMessageInfo
  9423. func (m *GuildIdex) GetGuildId() uint64 {
  9424. if m != nil {
  9425. return m.GuildId
  9426. }
  9427. return 0
  9428. }
  9429. type RushRoundData struct {
  9430. RushId int32 `protobuf:"varint,1,opt,name=rush_id,json=rushId,proto3" json:"rush_id,omitempty"`
  9431. StartTime uint64 `protobuf:"varint,2,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
  9432. CloseTime uint64 `protobuf:"varint,3,opt,name=close_time,json=closeTime,proto3" json:"close_time,omitempty"`
  9433. ResetTime uint64 `protobuf:"varint,4,opt,name=reset_time,json=resetTime,proto3" json:"reset_time,omitempty"`
  9434. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9435. XXX_unrecognized []byte `json:"-"`
  9436. XXX_sizecache int32 `json:"-"`
  9437. }
  9438. func (m *RushRoundData) Reset() { *m = RushRoundData{} }
  9439. func (m *RushRoundData) String() string { return proto.CompactTextString(m) }
  9440. func (*RushRoundData) ProtoMessage() {}
  9441. func (*RushRoundData) Descriptor() ([]byte, []int) {
  9442. return fileDescriptor_116e343673f7ffaf, []int{159}
  9443. }
  9444. func (m *RushRoundData) XXX_Unmarshal(b []byte) error {
  9445. return xxx_messageInfo_RushRoundData.Unmarshal(m, b)
  9446. }
  9447. func (m *RushRoundData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9448. return xxx_messageInfo_RushRoundData.Marshal(b, m, deterministic)
  9449. }
  9450. func (m *RushRoundData) XXX_Merge(src proto.Message) {
  9451. xxx_messageInfo_RushRoundData.Merge(m, src)
  9452. }
  9453. func (m *RushRoundData) XXX_Size() int {
  9454. return xxx_messageInfo_RushRoundData.Size(m)
  9455. }
  9456. func (m *RushRoundData) XXX_DiscardUnknown() {
  9457. xxx_messageInfo_RushRoundData.DiscardUnknown(m)
  9458. }
  9459. var xxx_messageInfo_RushRoundData proto.InternalMessageInfo
  9460. func (m *RushRoundData) GetRushId() int32 {
  9461. if m != nil {
  9462. return m.RushId
  9463. }
  9464. return 0
  9465. }
  9466. func (m *RushRoundData) GetStartTime() uint64 {
  9467. if m != nil {
  9468. return m.StartTime
  9469. }
  9470. return 0
  9471. }
  9472. func (m *RushRoundData) GetCloseTime() uint64 {
  9473. if m != nil {
  9474. return m.CloseTime
  9475. }
  9476. return 0
  9477. }
  9478. func (m *RushRoundData) GetResetTime() uint64 {
  9479. if m != nil {
  9480. return m.ResetTime
  9481. }
  9482. return 0
  9483. }
  9484. type RushData struct {
  9485. RushId int32 `protobuf:"varint,1,opt,name=rush_id,json=rushId,proto3" json:"rush_id,omitempty"`
  9486. RushStage int32 `protobuf:"varint,2,opt,name=rush_stage,json=rushStage,proto3" json:"rush_stage,omitempty"`
  9487. RewardList []uint64 `protobuf:"varint,3,rep,packed,name=reward_list,json=rewardList,proto3" json:"reward_list,omitempty"`
  9488. RoundData []*RushRoundData `protobuf:"bytes,4,rep,name=round_data,json=roundData,proto3" json:"round_data,omitempty"`
  9489. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9490. XXX_unrecognized []byte `json:"-"`
  9491. XXX_sizecache int32 `json:"-"`
  9492. }
  9493. func (m *RushData) Reset() { *m = RushData{} }
  9494. func (m *RushData) String() string { return proto.CompactTextString(m) }
  9495. func (*RushData) ProtoMessage() {}
  9496. func (*RushData) Descriptor() ([]byte, []int) {
  9497. return fileDescriptor_116e343673f7ffaf, []int{160}
  9498. }
  9499. func (m *RushData) XXX_Unmarshal(b []byte) error {
  9500. return xxx_messageInfo_RushData.Unmarshal(m, b)
  9501. }
  9502. func (m *RushData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9503. return xxx_messageInfo_RushData.Marshal(b, m, deterministic)
  9504. }
  9505. func (m *RushData) XXX_Merge(src proto.Message) {
  9506. xxx_messageInfo_RushData.Merge(m, src)
  9507. }
  9508. func (m *RushData) XXX_Size() int {
  9509. return xxx_messageInfo_RushData.Size(m)
  9510. }
  9511. func (m *RushData) XXX_DiscardUnknown() {
  9512. xxx_messageInfo_RushData.DiscardUnknown(m)
  9513. }
  9514. var xxx_messageInfo_RushData proto.InternalMessageInfo
  9515. func (m *RushData) GetRushId() int32 {
  9516. if m != nil {
  9517. return m.RushId
  9518. }
  9519. return 0
  9520. }
  9521. func (m *RushData) GetRushStage() int32 {
  9522. if m != nil {
  9523. return m.RushStage
  9524. }
  9525. return 0
  9526. }
  9527. func (m *RushData) GetRewardList() []uint64 {
  9528. if m != nil {
  9529. return m.RewardList
  9530. }
  9531. return nil
  9532. }
  9533. func (m *RushData) GetRoundData() []*RushRoundData {
  9534. if m != nil {
  9535. return m.RoundData
  9536. }
  9537. return nil
  9538. }
  9539. type GuildFightLog struct {
  9540. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  9541. FightTime uint64 `protobuf:"varint,2,opt,name=fight_time,json=fightTime,proto3" json:"fight_time,omitempty"`
  9542. Damage uint32 `protobuf:"varint,3,opt,name=damage,proto3" json:"damage,omitempty"`
  9543. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9544. XXX_unrecognized []byte `json:"-"`
  9545. XXX_sizecache int32 `json:"-"`
  9546. }
  9547. func (m *GuildFightLog) Reset() { *m = GuildFightLog{} }
  9548. func (m *GuildFightLog) String() string { return proto.CompactTextString(m) }
  9549. func (*GuildFightLog) ProtoMessage() {}
  9550. func (*GuildFightLog) Descriptor() ([]byte, []int) {
  9551. return fileDescriptor_116e343673f7ffaf, []int{161}
  9552. }
  9553. func (m *GuildFightLog) XXX_Unmarshal(b []byte) error {
  9554. return xxx_messageInfo_GuildFightLog.Unmarshal(m, b)
  9555. }
  9556. func (m *GuildFightLog) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9557. return xxx_messageInfo_GuildFightLog.Marshal(b, m, deterministic)
  9558. }
  9559. func (m *GuildFightLog) XXX_Merge(src proto.Message) {
  9560. xxx_messageInfo_GuildFightLog.Merge(m, src)
  9561. }
  9562. func (m *GuildFightLog) XXX_Size() int {
  9563. return xxx_messageInfo_GuildFightLog.Size(m)
  9564. }
  9565. func (m *GuildFightLog) XXX_DiscardUnknown() {
  9566. xxx_messageInfo_GuildFightLog.DiscardUnknown(m)
  9567. }
  9568. var xxx_messageInfo_GuildFightLog proto.InternalMessageInfo
  9569. func (m *GuildFightLog) GetUid() uint64 {
  9570. if m != nil {
  9571. return m.Uid
  9572. }
  9573. return 0
  9574. }
  9575. func (m *GuildFightLog) GetFightTime() uint64 {
  9576. if m != nil {
  9577. return m.FightTime
  9578. }
  9579. return 0
  9580. }
  9581. func (m *GuildFightLog) GetDamage() uint32 {
  9582. if m != nil {
  9583. return m.Damage
  9584. }
  9585. return 0
  9586. }
  9587. type GuildFight struct {
  9588. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  9589. Damage uint32 `protobuf:"varint,2,opt,name=damage,proto3" json:"damage,omitempty"`
  9590. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9591. XXX_unrecognized []byte `json:"-"`
  9592. XXX_sizecache int32 `json:"-"`
  9593. }
  9594. func (m *GuildFight) Reset() { *m = GuildFight{} }
  9595. func (m *GuildFight) String() string { return proto.CompactTextString(m) }
  9596. func (*GuildFight) ProtoMessage() {}
  9597. func (*GuildFight) Descriptor() ([]byte, []int) {
  9598. return fileDescriptor_116e343673f7ffaf, []int{162}
  9599. }
  9600. func (m *GuildFight) XXX_Unmarshal(b []byte) error {
  9601. return xxx_messageInfo_GuildFight.Unmarshal(m, b)
  9602. }
  9603. func (m *GuildFight) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9604. return xxx_messageInfo_GuildFight.Marshal(b, m, deterministic)
  9605. }
  9606. func (m *GuildFight) XXX_Merge(src proto.Message) {
  9607. xxx_messageInfo_GuildFight.Merge(m, src)
  9608. }
  9609. func (m *GuildFight) XXX_Size() int {
  9610. return xxx_messageInfo_GuildFight.Size(m)
  9611. }
  9612. func (m *GuildFight) XXX_DiscardUnknown() {
  9613. xxx_messageInfo_GuildFight.DiscardUnknown(m)
  9614. }
  9615. var xxx_messageInfo_GuildFight proto.InternalMessageInfo
  9616. func (m *GuildFight) GetUid() uint64 {
  9617. if m != nil {
  9618. return m.Uid
  9619. }
  9620. return 0
  9621. }
  9622. func (m *GuildFight) GetDamage() uint32 {
  9623. if m != nil {
  9624. return m.Damage
  9625. }
  9626. return 0
  9627. }
  9628. type GuildBossInfo struct {
  9629. MaxDam *GuildFight `protobuf:"bytes,1,opt,name=max_dam,json=maxDam,proto3" json:"max_dam,omitempty"`
  9630. FightLog []*GuildFightLog `protobuf:"bytes,2,rep,name=fight_log,json=fightLog,proto3" json:"fight_log,omitempty"`
  9631. RefreshTime uint64 `protobuf:"varint,3,opt,name=refresh_time,json=refreshTime,proto3" json:"refresh_time,omitempty"`
  9632. BossState int32 `protobuf:"varint,4,opt,name=boss_state,json=bossState,proto3" json:"boss_state,omitempty"`
  9633. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9634. XXX_unrecognized []byte `json:"-"`
  9635. XXX_sizecache int32 `json:"-"`
  9636. }
  9637. func (m *GuildBossInfo) Reset() { *m = GuildBossInfo{} }
  9638. func (m *GuildBossInfo) String() string { return proto.CompactTextString(m) }
  9639. func (*GuildBossInfo) ProtoMessage() {}
  9640. func (*GuildBossInfo) Descriptor() ([]byte, []int) {
  9641. return fileDescriptor_116e343673f7ffaf, []int{163}
  9642. }
  9643. func (m *GuildBossInfo) XXX_Unmarshal(b []byte) error {
  9644. return xxx_messageInfo_GuildBossInfo.Unmarshal(m, b)
  9645. }
  9646. func (m *GuildBossInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9647. return xxx_messageInfo_GuildBossInfo.Marshal(b, m, deterministic)
  9648. }
  9649. func (m *GuildBossInfo) XXX_Merge(src proto.Message) {
  9650. xxx_messageInfo_GuildBossInfo.Merge(m, src)
  9651. }
  9652. func (m *GuildBossInfo) XXX_Size() int {
  9653. return xxx_messageInfo_GuildBossInfo.Size(m)
  9654. }
  9655. func (m *GuildBossInfo) XXX_DiscardUnknown() {
  9656. xxx_messageInfo_GuildBossInfo.DiscardUnknown(m)
  9657. }
  9658. var xxx_messageInfo_GuildBossInfo proto.InternalMessageInfo
  9659. func (m *GuildBossInfo) GetMaxDam() *GuildFight {
  9660. if m != nil {
  9661. return m.MaxDam
  9662. }
  9663. return nil
  9664. }
  9665. func (m *GuildBossInfo) GetFightLog() []*GuildFightLog {
  9666. if m != nil {
  9667. return m.FightLog
  9668. }
  9669. return nil
  9670. }
  9671. func (m *GuildBossInfo) GetRefreshTime() uint64 {
  9672. if m != nil {
  9673. return m.RefreshTime
  9674. }
  9675. return 0
  9676. }
  9677. func (m *GuildBossInfo) GetBossState() int32 {
  9678. if m != nil {
  9679. return m.BossState
  9680. }
  9681. return 0
  9682. }
  9683. type GuildBoss struct {
  9684. GuildId uint64 `protobuf:"varint,1,opt,name=guild_id,json=guildId,proto3" json:"guild_id,omitempty"`
  9685. DayBoss []*GuildBossInfo `protobuf:"bytes,2,rep,name=day_boss,json=dayBoss,proto3" json:"day_boss,omitempty"`
  9686. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9687. XXX_unrecognized []byte `json:"-"`
  9688. XXX_sizecache int32 `json:"-"`
  9689. }
  9690. func (m *GuildBoss) Reset() { *m = GuildBoss{} }
  9691. func (m *GuildBoss) String() string { return proto.CompactTextString(m) }
  9692. func (*GuildBoss) ProtoMessage() {}
  9693. func (*GuildBoss) Descriptor() ([]byte, []int) {
  9694. return fileDescriptor_116e343673f7ffaf, []int{164}
  9695. }
  9696. func (m *GuildBoss) XXX_Unmarshal(b []byte) error {
  9697. return xxx_messageInfo_GuildBoss.Unmarshal(m, b)
  9698. }
  9699. func (m *GuildBoss) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9700. return xxx_messageInfo_GuildBoss.Marshal(b, m, deterministic)
  9701. }
  9702. func (m *GuildBoss) XXX_Merge(src proto.Message) {
  9703. xxx_messageInfo_GuildBoss.Merge(m, src)
  9704. }
  9705. func (m *GuildBoss) XXX_Size() int {
  9706. return xxx_messageInfo_GuildBoss.Size(m)
  9707. }
  9708. func (m *GuildBoss) XXX_DiscardUnknown() {
  9709. xxx_messageInfo_GuildBoss.DiscardUnknown(m)
  9710. }
  9711. var xxx_messageInfo_GuildBoss proto.InternalMessageInfo
  9712. func (m *GuildBoss) GetGuildId() uint64 {
  9713. if m != nil {
  9714. return m.GuildId
  9715. }
  9716. return 0
  9717. }
  9718. func (m *GuildBoss) GetDayBoss() []*GuildBossInfo {
  9719. if m != nil {
  9720. return m.DayBoss
  9721. }
  9722. return nil
  9723. }
  9724. type RoleApplayData struct {
  9725. ApplyGuild []uint64 `protobuf:"varint,1,rep,packed,name=apply_guild,json=applyGuild,proto3" json:"apply_guild,omitempty"`
  9726. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9727. XXX_unrecognized []byte `json:"-"`
  9728. XXX_sizecache int32 `json:"-"`
  9729. }
  9730. func (m *RoleApplayData) Reset() { *m = RoleApplayData{} }
  9731. func (m *RoleApplayData) String() string { return proto.CompactTextString(m) }
  9732. func (*RoleApplayData) ProtoMessage() {}
  9733. func (*RoleApplayData) Descriptor() ([]byte, []int) {
  9734. return fileDescriptor_116e343673f7ffaf, []int{165}
  9735. }
  9736. func (m *RoleApplayData) XXX_Unmarshal(b []byte) error {
  9737. return xxx_messageInfo_RoleApplayData.Unmarshal(m, b)
  9738. }
  9739. func (m *RoleApplayData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9740. return xxx_messageInfo_RoleApplayData.Marshal(b, m, deterministic)
  9741. }
  9742. func (m *RoleApplayData) XXX_Merge(src proto.Message) {
  9743. xxx_messageInfo_RoleApplayData.Merge(m, src)
  9744. }
  9745. func (m *RoleApplayData) XXX_Size() int {
  9746. return xxx_messageInfo_RoleApplayData.Size(m)
  9747. }
  9748. func (m *RoleApplayData) XXX_DiscardUnknown() {
  9749. xxx_messageInfo_RoleApplayData.DiscardUnknown(m)
  9750. }
  9751. var xxx_messageInfo_RoleApplayData proto.InternalMessageInfo
  9752. func (m *RoleApplayData) GetApplyGuild() []uint64 {
  9753. if m != nil {
  9754. return m.ApplyGuild
  9755. }
  9756. return nil
  9757. }
  9758. type GuildApplayData struct {
  9759. ApplyGuild []uint64 `protobuf:"varint,1,rep,packed,name=apply_guild,json=applyGuild,proto3" json:"apply_guild,omitempty"`
  9760. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9761. XXX_unrecognized []byte `json:"-"`
  9762. XXX_sizecache int32 `json:"-"`
  9763. }
  9764. func (m *GuildApplayData) Reset() { *m = GuildApplayData{} }
  9765. func (m *GuildApplayData) String() string { return proto.CompactTextString(m) }
  9766. func (*GuildApplayData) ProtoMessage() {}
  9767. func (*GuildApplayData) Descriptor() ([]byte, []int) {
  9768. return fileDescriptor_116e343673f7ffaf, []int{166}
  9769. }
  9770. func (m *GuildApplayData) XXX_Unmarshal(b []byte) error {
  9771. return xxx_messageInfo_GuildApplayData.Unmarshal(m, b)
  9772. }
  9773. func (m *GuildApplayData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9774. return xxx_messageInfo_GuildApplayData.Marshal(b, m, deterministic)
  9775. }
  9776. func (m *GuildApplayData) XXX_Merge(src proto.Message) {
  9777. xxx_messageInfo_GuildApplayData.Merge(m, src)
  9778. }
  9779. func (m *GuildApplayData) XXX_Size() int {
  9780. return xxx_messageInfo_GuildApplayData.Size(m)
  9781. }
  9782. func (m *GuildApplayData) XXX_DiscardUnknown() {
  9783. xxx_messageInfo_GuildApplayData.DiscardUnknown(m)
  9784. }
  9785. var xxx_messageInfo_GuildApplayData proto.InternalMessageInfo
  9786. func (m *GuildApplayData) GetApplyGuild() []uint64 {
  9787. if m != nil {
  9788. return m.ApplyGuild
  9789. }
  9790. return nil
  9791. }
  9792. // 公会战个人数据
  9793. type GuildBattleSelfData struct {
  9794. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  9795. GuildId uint64 `protobuf:"varint,2,opt,name=guild_id,json=guildId,proto3" json:"guild_id,omitempty"`
  9796. ChallengeNum int32 `protobuf:"varint,3,opt,name=challenge_num,json=challengeNum,proto3" json:"challenge_num,omitempty"`
  9797. BuffList []*KeyValueType `protobuf:"bytes,4,rep,name=buff_list,json=buffList,proto3" json:"buff_list,omitempty"`
  9798. RebornEndTime uint64 `protobuf:"varint,5,opt,name=reborn_end_time,json=rebornEndTime,proto3" json:"reborn_end_time,omitempty"`
  9799. AutoChallenge bool `protobuf:"varint,6,opt,name=auto_challenge,json=autoChallenge,proto3" json:"auto_challenge,omitempty"`
  9800. AutoReborn bool `protobuf:"varint,7,opt,name=auto_reborn,json=autoReborn,proto3" json:"auto_reborn,omitempty"`
  9801. WinNum int32 `protobuf:"varint,8,opt,name=win_num,json=winNum,proto3" json:"win_num,omitempty"`
  9802. WinStrak int32 `protobuf:"varint,9,opt,name=win_strak,json=winStrak,proto3" json:"win_strak,omitempty"`
  9803. GuildPre bool `protobuf:"varint,10,opt,name=guild_pre,json=guildPre,proto3" json:"guild_pre,omitempty"`
  9804. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9805. XXX_unrecognized []byte `json:"-"`
  9806. XXX_sizecache int32 `json:"-"`
  9807. }
  9808. func (m *GuildBattleSelfData) Reset() { *m = GuildBattleSelfData{} }
  9809. func (m *GuildBattleSelfData) String() string { return proto.CompactTextString(m) }
  9810. func (*GuildBattleSelfData) ProtoMessage() {}
  9811. func (*GuildBattleSelfData) Descriptor() ([]byte, []int) {
  9812. return fileDescriptor_116e343673f7ffaf, []int{167}
  9813. }
  9814. func (m *GuildBattleSelfData) XXX_Unmarshal(b []byte) error {
  9815. return xxx_messageInfo_GuildBattleSelfData.Unmarshal(m, b)
  9816. }
  9817. func (m *GuildBattleSelfData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9818. return xxx_messageInfo_GuildBattleSelfData.Marshal(b, m, deterministic)
  9819. }
  9820. func (m *GuildBattleSelfData) XXX_Merge(src proto.Message) {
  9821. xxx_messageInfo_GuildBattleSelfData.Merge(m, src)
  9822. }
  9823. func (m *GuildBattleSelfData) XXX_Size() int {
  9824. return xxx_messageInfo_GuildBattleSelfData.Size(m)
  9825. }
  9826. func (m *GuildBattleSelfData) XXX_DiscardUnknown() {
  9827. xxx_messageInfo_GuildBattleSelfData.DiscardUnknown(m)
  9828. }
  9829. var xxx_messageInfo_GuildBattleSelfData proto.InternalMessageInfo
  9830. func (m *GuildBattleSelfData) GetUid() uint64 {
  9831. if m != nil {
  9832. return m.Uid
  9833. }
  9834. return 0
  9835. }
  9836. func (m *GuildBattleSelfData) GetGuildId() uint64 {
  9837. if m != nil {
  9838. return m.GuildId
  9839. }
  9840. return 0
  9841. }
  9842. func (m *GuildBattleSelfData) GetChallengeNum() int32 {
  9843. if m != nil {
  9844. return m.ChallengeNum
  9845. }
  9846. return 0
  9847. }
  9848. func (m *GuildBattleSelfData) GetBuffList() []*KeyValueType {
  9849. if m != nil {
  9850. return m.BuffList
  9851. }
  9852. return nil
  9853. }
  9854. func (m *GuildBattleSelfData) GetRebornEndTime() uint64 {
  9855. if m != nil {
  9856. return m.RebornEndTime
  9857. }
  9858. return 0
  9859. }
  9860. func (m *GuildBattleSelfData) GetAutoChallenge() bool {
  9861. if m != nil {
  9862. return m.AutoChallenge
  9863. }
  9864. return false
  9865. }
  9866. func (m *GuildBattleSelfData) GetAutoReborn() bool {
  9867. if m != nil {
  9868. return m.AutoReborn
  9869. }
  9870. return false
  9871. }
  9872. func (m *GuildBattleSelfData) GetWinNum() int32 {
  9873. if m != nil {
  9874. return m.WinNum
  9875. }
  9876. return 0
  9877. }
  9878. func (m *GuildBattleSelfData) GetWinStrak() int32 {
  9879. if m != nil {
  9880. return m.WinStrak
  9881. }
  9882. return 0
  9883. }
  9884. func (m *GuildBattleSelfData) GetGuildPre() bool {
  9885. if m != nil {
  9886. return m.GuildPre
  9887. }
  9888. return false
  9889. }
  9890. // 公会战位置数据
  9891. type GuildPosIdxData struct {
  9892. PosIdx int32 `protobuf:"varint,1,opt,name=pos_idx,json=posIdx,proto3" json:"pos_idx,omitempty"`
  9893. GuildId uint64 `protobuf:"varint,2,opt,name=guild_id,json=guildId,proto3" json:"guild_id,omitempty"`
  9894. Uid uint64 `protobuf:"varint,3,opt,name=uid,proto3" json:"uid,omitempty"`
  9895. OwnerBrief *CommonPlayerBriefInfo `protobuf:"bytes,4,opt,name=owner_brief,json=ownerBrief,proto3" json:"owner_brief,omitempty"`
  9896. FightEndTime uint64 `protobuf:"varint,5,opt,name=fight_end_time,json=fightEndTime,proto3" json:"fight_end_time,omitempty"`
  9897. FightStartTime uint64 `protobuf:"varint,6,opt,name=fight_start_time,json=fightStartTime,proto3" json:"fight_start_time,omitempty"`
  9898. ChallengeUid uint64 `protobuf:"varint,7,opt,name=challenge_uid,json=challengeUid,proto3" json:"challenge_uid,omitempty"`
  9899. FightPingTime uint64 `protobuf:"varint,8,opt,name=fight_ping_time,json=fightPingTime,proto3" json:"fight_ping_time,omitempty"`
  9900. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9901. XXX_unrecognized []byte `json:"-"`
  9902. XXX_sizecache int32 `json:"-"`
  9903. }
  9904. func (m *GuildPosIdxData) Reset() { *m = GuildPosIdxData{} }
  9905. func (m *GuildPosIdxData) String() string { return proto.CompactTextString(m) }
  9906. func (*GuildPosIdxData) ProtoMessage() {}
  9907. func (*GuildPosIdxData) Descriptor() ([]byte, []int) {
  9908. return fileDescriptor_116e343673f7ffaf, []int{168}
  9909. }
  9910. func (m *GuildPosIdxData) XXX_Unmarshal(b []byte) error {
  9911. return xxx_messageInfo_GuildPosIdxData.Unmarshal(m, b)
  9912. }
  9913. func (m *GuildPosIdxData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9914. return xxx_messageInfo_GuildPosIdxData.Marshal(b, m, deterministic)
  9915. }
  9916. func (m *GuildPosIdxData) XXX_Merge(src proto.Message) {
  9917. xxx_messageInfo_GuildPosIdxData.Merge(m, src)
  9918. }
  9919. func (m *GuildPosIdxData) XXX_Size() int {
  9920. return xxx_messageInfo_GuildPosIdxData.Size(m)
  9921. }
  9922. func (m *GuildPosIdxData) XXX_DiscardUnknown() {
  9923. xxx_messageInfo_GuildPosIdxData.DiscardUnknown(m)
  9924. }
  9925. var xxx_messageInfo_GuildPosIdxData proto.InternalMessageInfo
  9926. func (m *GuildPosIdxData) GetPosIdx() int32 {
  9927. if m != nil {
  9928. return m.PosIdx
  9929. }
  9930. return 0
  9931. }
  9932. func (m *GuildPosIdxData) GetGuildId() uint64 {
  9933. if m != nil {
  9934. return m.GuildId
  9935. }
  9936. return 0
  9937. }
  9938. func (m *GuildPosIdxData) GetUid() uint64 {
  9939. if m != nil {
  9940. return m.Uid
  9941. }
  9942. return 0
  9943. }
  9944. func (m *GuildPosIdxData) GetOwnerBrief() *CommonPlayerBriefInfo {
  9945. if m != nil {
  9946. return m.OwnerBrief
  9947. }
  9948. return nil
  9949. }
  9950. func (m *GuildPosIdxData) GetFightEndTime() uint64 {
  9951. if m != nil {
  9952. return m.FightEndTime
  9953. }
  9954. return 0
  9955. }
  9956. func (m *GuildPosIdxData) GetFightStartTime() uint64 {
  9957. if m != nil {
  9958. return m.FightStartTime
  9959. }
  9960. return 0
  9961. }
  9962. func (m *GuildPosIdxData) GetChallengeUid() uint64 {
  9963. if m != nil {
  9964. return m.ChallengeUid
  9965. }
  9966. return 0
  9967. }
  9968. func (m *GuildPosIdxData) GetFightPingTime() uint64 {
  9969. if m != nil {
  9970. return m.FightPingTime
  9971. }
  9972. return 0
  9973. }
  9974. // 占领日志
  9975. type GuildBattleLog struct {
  9976. Type int32 `protobuf:"varint,1,opt,name=type,proto3" json:"type,omitempty"`
  9977. RecordTime uint64 `protobuf:"varint,2,opt,name=record_time,json=recordTime,proto3" json:"record_time,omitempty"`
  9978. State bool `protobuf:"varint,3,opt,name=state,proto3" json:"state,omitempty"`
  9979. PosIdx int32 `protobuf:"varint,4,opt,name=pos_idx,json=posIdx,proto3" json:"pos_idx,omitempty"`
  9980. TargetPlayerName string `protobuf:"bytes,5,opt,name=target_player_name,json=targetPlayerName,proto3" json:"target_player_name,omitempty"`
  9981. TargetGuildId uint64 `protobuf:"varint,6,opt,name=target_guild_id,json=targetGuildId,proto3" json:"target_guild_id,omitempty"`
  9982. TargetPlayerUid uint64 `protobuf:"varint,7,opt,name=target_player_uid,json=targetPlayerUid,proto3" json:"target_player_uid,omitempty"`
  9983. ChallengePlayerName string `protobuf:"bytes,8,opt,name=challenge_player_name,json=challengePlayerName,proto3" json:"challenge_player_name,omitempty"`
  9984. ChallengeGuildId uint64 `protobuf:"varint,9,opt,name=challenge_guild_id,json=challengeGuildId,proto3" json:"challenge_guild_id,omitempty"`
  9985. ChallengePlayerUid uint64 `protobuf:"varint,10,opt,name=challenge_player_uid,json=challengePlayerUid,proto3" json:"challenge_player_uid,omitempty"`
  9986. WinSteak int32 `protobuf:"varint,11,opt,name=win_steak,json=winSteak,proto3" json:"win_steak,omitempty"`
  9987. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9988. XXX_unrecognized []byte `json:"-"`
  9989. XXX_sizecache int32 `json:"-"`
  9990. }
  9991. func (m *GuildBattleLog) Reset() { *m = GuildBattleLog{} }
  9992. func (m *GuildBattleLog) String() string { return proto.CompactTextString(m) }
  9993. func (*GuildBattleLog) ProtoMessage() {}
  9994. func (*GuildBattleLog) Descriptor() ([]byte, []int) {
  9995. return fileDescriptor_116e343673f7ffaf, []int{169}
  9996. }
  9997. func (m *GuildBattleLog) XXX_Unmarshal(b []byte) error {
  9998. return xxx_messageInfo_GuildBattleLog.Unmarshal(m, b)
  9999. }
  10000. func (m *GuildBattleLog) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  10001. return xxx_messageInfo_GuildBattleLog.Marshal(b, m, deterministic)
  10002. }
  10003. func (m *GuildBattleLog) XXX_Merge(src proto.Message) {
  10004. xxx_messageInfo_GuildBattleLog.Merge(m, src)
  10005. }
  10006. func (m *GuildBattleLog) XXX_Size() int {
  10007. return xxx_messageInfo_GuildBattleLog.Size(m)
  10008. }
  10009. func (m *GuildBattleLog) XXX_DiscardUnknown() {
  10010. xxx_messageInfo_GuildBattleLog.DiscardUnknown(m)
  10011. }
  10012. var xxx_messageInfo_GuildBattleLog proto.InternalMessageInfo
  10013. func (m *GuildBattleLog) GetType() int32 {
  10014. if m != nil {
  10015. return m.Type
  10016. }
  10017. return 0
  10018. }
  10019. func (m *GuildBattleLog) GetRecordTime() uint64 {
  10020. if m != nil {
  10021. return m.RecordTime
  10022. }
  10023. return 0
  10024. }
  10025. func (m *GuildBattleLog) GetState() bool {
  10026. if m != nil {
  10027. return m.State
  10028. }
  10029. return false
  10030. }
  10031. func (m *GuildBattleLog) GetPosIdx() int32 {
  10032. if m != nil {
  10033. return m.PosIdx
  10034. }
  10035. return 0
  10036. }
  10037. func (m *GuildBattleLog) GetTargetPlayerName() string {
  10038. if m != nil {
  10039. return m.TargetPlayerName
  10040. }
  10041. return ""
  10042. }
  10043. func (m *GuildBattleLog) GetTargetGuildId() uint64 {
  10044. if m != nil {
  10045. return m.TargetGuildId
  10046. }
  10047. return 0
  10048. }
  10049. func (m *GuildBattleLog) GetTargetPlayerUid() uint64 {
  10050. if m != nil {
  10051. return m.TargetPlayerUid
  10052. }
  10053. return 0
  10054. }
  10055. func (m *GuildBattleLog) GetChallengePlayerName() string {
  10056. if m != nil {
  10057. return m.ChallengePlayerName
  10058. }
  10059. return ""
  10060. }
  10061. func (m *GuildBattleLog) GetChallengeGuildId() uint64 {
  10062. if m != nil {
  10063. return m.ChallengeGuildId
  10064. }
  10065. return 0
  10066. }
  10067. func (m *GuildBattleLog) GetChallengePlayerUid() uint64 {
  10068. if m != nil {
  10069. return m.ChallengePlayerUid
  10070. }
  10071. return 0
  10072. }
  10073. func (m *GuildBattleLog) GetWinSteak() int32 {
  10074. if m != nil {
  10075. return m.WinSteak
  10076. }
  10077. return 0
  10078. }
  10079. type GuildBattleBaseData struct {
  10080. BattleStartTime uint64 `protobuf:"varint,1,opt,name=battle_start_time,json=battleStartTime,proto3" json:"battle_start_time,omitempty"`
  10081. BattleEndTime uint64 `protobuf:"varint,2,opt,name=battle_end_time,json=battleEndTime,proto3" json:"battle_end_time,omitempty"`
  10082. ScoreList []*KeyValueType64 `protobuf:"bytes,3,rep,name=score_list,json=scoreList,proto3" json:"score_list,omitempty"`
  10083. ScoreMvp []uint64 `protobuf:"varint,4,rep,packed,name=score_mvp,json=scoreMvp,proto3" json:"score_mvp,omitempty"`
  10084. KillerMvp []uint64 `protobuf:"varint,5,rep,packed,name=killer_mvp,json=killerMvp,proto3" json:"killer_mvp,omitempty"`
  10085. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  10086. XXX_unrecognized []byte `json:"-"`
  10087. XXX_sizecache int32 `json:"-"`
  10088. }
  10089. func (m *GuildBattleBaseData) Reset() { *m = GuildBattleBaseData{} }
  10090. func (m *GuildBattleBaseData) String() string { return proto.CompactTextString(m) }
  10091. func (*GuildBattleBaseData) ProtoMessage() {}
  10092. func (*GuildBattleBaseData) Descriptor() ([]byte, []int) {
  10093. return fileDescriptor_116e343673f7ffaf, []int{170}
  10094. }
  10095. func (m *GuildBattleBaseData) XXX_Unmarshal(b []byte) error {
  10096. return xxx_messageInfo_GuildBattleBaseData.Unmarshal(m, b)
  10097. }
  10098. func (m *GuildBattleBaseData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  10099. return xxx_messageInfo_GuildBattleBaseData.Marshal(b, m, deterministic)
  10100. }
  10101. func (m *GuildBattleBaseData) XXX_Merge(src proto.Message) {
  10102. xxx_messageInfo_GuildBattleBaseData.Merge(m, src)
  10103. }
  10104. func (m *GuildBattleBaseData) XXX_Size() int {
  10105. return xxx_messageInfo_GuildBattleBaseData.Size(m)
  10106. }
  10107. func (m *GuildBattleBaseData) XXX_DiscardUnknown() {
  10108. xxx_messageInfo_GuildBattleBaseData.DiscardUnknown(m)
  10109. }
  10110. var xxx_messageInfo_GuildBattleBaseData proto.InternalMessageInfo
  10111. func (m *GuildBattleBaseData) GetBattleStartTime() uint64 {
  10112. if m != nil {
  10113. return m.BattleStartTime
  10114. }
  10115. return 0
  10116. }
  10117. func (m *GuildBattleBaseData) GetBattleEndTime() uint64 {
  10118. if m != nil {
  10119. return m.BattleEndTime
  10120. }
  10121. return 0
  10122. }
  10123. func (m *GuildBattleBaseData) GetScoreList() []*KeyValueType64 {
  10124. if m != nil {
  10125. return m.ScoreList
  10126. }
  10127. return nil
  10128. }
  10129. func (m *GuildBattleBaseData) GetScoreMvp() []uint64 {
  10130. if m != nil {
  10131. return m.ScoreMvp
  10132. }
  10133. return nil
  10134. }
  10135. func (m *GuildBattleBaseData) GetKillerMvp() []uint64 {
  10136. if m != nil {
  10137. return m.KillerMvp
  10138. }
  10139. return nil
  10140. }
  10141. // 公会战基础信息
  10142. type GuildBattleBase struct {
  10143. GuildBattleId int32 `protobuf:"varint,1,opt,name=guild_battle_id,json=guildBattleId,proto3" json:"guild_battle_id,omitempty"`
  10144. CurGuildStart uint64 `protobuf:"varint,2,opt,name=cur_guild_start,json=curGuildStart,proto3" json:"cur_guild_start,omitempty"`
  10145. GuildBattleState int32 `protobuf:"varint,3,opt,name=guild_battle_state,json=guildBattleState,proto3" json:"guild_battle_state,omitempty"`
  10146. NextStageBegin uint64 `protobuf:"varint,4,opt,name=next_stage_begin,json=nextStageBegin,proto3" json:"next_stage_begin,omitempty"`
  10147. NextBattleBegin uint64 `protobuf:"varint,5,opt,name=next_battle_begin,json=nextBattleBegin,proto3" json:"next_battle_begin,omitempty"`
  10148. TournamentPrepare uint64 `protobuf:"varint,6,opt,name=tournament_prepare,json=tournamentPrepare,proto3" json:"tournament_prepare,omitempty"`
  10149. TournamentBegin uint64 `protobuf:"varint,7,opt,name=tournament_begin,json=tournamentBegin,proto3" json:"tournament_begin,omitempty"`
  10150. TournamentEnd uint64 `protobuf:"varint,8,opt,name=tournament_end,json=tournamentEnd,proto3" json:"tournament_end,omitempty"`
  10151. SemifinalsPrepare uint64 `protobuf:"varint,9,opt,name=semifinals_prepare,json=semifinalsPrepare,proto3" json:"semifinals_prepare,omitempty"`
  10152. SemifinalsBegin uint64 `protobuf:"varint,10,opt,name=semifinals_begin,json=semifinalsBegin,proto3" json:"semifinals_begin,omitempty"`
  10153. SemifinalsEnd uint64 `protobuf:"varint,11,opt,name=semifinals_end,json=semifinalsEnd,proto3" json:"semifinals_end,omitempty"`
  10154. FinalsPrepare uint64 `protobuf:"varint,12,opt,name=finals_prepare,json=finalsPrepare,proto3" json:"finals_prepare,omitempty"`
  10155. FinalsBegin uint64 `protobuf:"varint,13,opt,name=finals_begin,json=finalsBegin,proto3" json:"finals_begin,omitempty"`
  10156. FinalsEnd uint64 `protobuf:"varint,14,opt,name=finals_end,json=finalsEnd,proto3" json:"finals_end,omitempty"`
  10157. ShowEnd uint64 `protobuf:"varint,15,opt,name=show_end,json=showEnd,proto3" json:"show_end,omitempty"`
  10158. IsOpen int32 `protobuf:"varint,16,opt,name=is_open,json=isOpen,proto3" json:"is_open,omitempty"`
  10159. RewardState int32 `protobuf:"varint,17,opt,name=reward_state,json=rewardState,proto3" json:"reward_state,omitempty"`
  10160. BanType int32 `protobuf:"varint,18,opt,name=ban_type,json=banType,proto3" json:"ban_type,omitempty"`
  10161. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  10162. XXX_unrecognized []byte `json:"-"`
  10163. XXX_sizecache int32 `json:"-"`
  10164. }
  10165. func (m *GuildBattleBase) Reset() { *m = GuildBattleBase{} }
  10166. func (m *GuildBattleBase) String() string { return proto.CompactTextString(m) }
  10167. func (*GuildBattleBase) ProtoMessage() {}
  10168. func (*GuildBattleBase) Descriptor() ([]byte, []int) {
  10169. return fileDescriptor_116e343673f7ffaf, []int{171}
  10170. }
  10171. func (m *GuildBattleBase) XXX_Unmarshal(b []byte) error {
  10172. return xxx_messageInfo_GuildBattleBase.Unmarshal(m, b)
  10173. }
  10174. func (m *GuildBattleBase) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  10175. return xxx_messageInfo_GuildBattleBase.Marshal(b, m, deterministic)
  10176. }
  10177. func (m *GuildBattleBase) XXX_Merge(src proto.Message) {
  10178. xxx_messageInfo_GuildBattleBase.Merge(m, src)
  10179. }
  10180. func (m *GuildBattleBase) XXX_Size() int {
  10181. return xxx_messageInfo_GuildBattleBase.Size(m)
  10182. }
  10183. func (m *GuildBattleBase) XXX_DiscardUnknown() {
  10184. xxx_messageInfo_GuildBattleBase.DiscardUnknown(m)
  10185. }
  10186. var xxx_messageInfo_GuildBattleBase proto.InternalMessageInfo
  10187. func (m *GuildBattleBase) GetGuildBattleId() int32 {
  10188. if m != nil {
  10189. return m.GuildBattleId
  10190. }
  10191. return 0
  10192. }
  10193. func (m *GuildBattleBase) GetCurGuildStart() uint64 {
  10194. if m != nil {
  10195. return m.CurGuildStart
  10196. }
  10197. return 0
  10198. }
  10199. func (m *GuildBattleBase) GetGuildBattleState() int32 {
  10200. if m != nil {
  10201. return m.GuildBattleState
  10202. }
  10203. return 0
  10204. }
  10205. func (m *GuildBattleBase) GetNextStageBegin() uint64 {
  10206. if m != nil {
  10207. return m.NextStageBegin
  10208. }
  10209. return 0
  10210. }
  10211. func (m *GuildBattleBase) GetNextBattleBegin() uint64 {
  10212. if m != nil {
  10213. return m.NextBattleBegin
  10214. }
  10215. return 0
  10216. }
  10217. func (m *GuildBattleBase) GetTournamentPrepare() uint64 {
  10218. if m != nil {
  10219. return m.TournamentPrepare
  10220. }
  10221. return 0
  10222. }
  10223. func (m *GuildBattleBase) GetTournamentBegin() uint64 {
  10224. if m != nil {
  10225. return m.TournamentBegin
  10226. }
  10227. return 0
  10228. }
  10229. func (m *GuildBattleBase) GetTournamentEnd() uint64 {
  10230. if m != nil {
  10231. return m.TournamentEnd
  10232. }
  10233. return 0
  10234. }
  10235. func (m *GuildBattleBase) GetSemifinalsPrepare() uint64 {
  10236. if m != nil {
  10237. return m.SemifinalsPrepare
  10238. }
  10239. return 0
  10240. }
  10241. func (m *GuildBattleBase) GetSemifinalsBegin() uint64 {
  10242. if m != nil {
  10243. return m.SemifinalsBegin
  10244. }
  10245. return 0
  10246. }
  10247. func (m *GuildBattleBase) GetSemifinalsEnd() uint64 {
  10248. if m != nil {
  10249. return m.SemifinalsEnd
  10250. }
  10251. return 0
  10252. }
  10253. func (m *GuildBattleBase) GetFinalsPrepare() uint64 {
  10254. if m != nil {
  10255. return m.FinalsPrepare
  10256. }
  10257. return 0
  10258. }
  10259. func (m *GuildBattleBase) GetFinalsBegin() uint64 {
  10260. if m != nil {
  10261. return m.FinalsBegin
  10262. }
  10263. return 0
  10264. }
  10265. func (m *GuildBattleBase) GetFinalsEnd() uint64 {
  10266. if m != nil {
  10267. return m.FinalsEnd
  10268. }
  10269. return 0
  10270. }
  10271. func (m *GuildBattleBase) GetShowEnd() uint64 {
  10272. if m != nil {
  10273. return m.ShowEnd
  10274. }
  10275. return 0
  10276. }
  10277. func (m *GuildBattleBase) GetIsOpen() int32 {
  10278. if m != nil {
  10279. return m.IsOpen
  10280. }
  10281. return 0
  10282. }
  10283. func (m *GuildBattleBase) GetRewardState() int32 {
  10284. if m != nil {
  10285. return m.RewardState
  10286. }
  10287. return 0
  10288. }
  10289. func (m *GuildBattleBase) GetBanType() int32 {
  10290. if m != nil {
  10291. return m.BanType
  10292. }
  10293. return 0
  10294. }
  10295. type CountTableData struct {
  10296. BattleIndex int32 `protobuf:"varint,1,opt,name=battle_index,json=battleIndex,proto3" json:"battle_index,omitempty"`
  10297. Guild1Id uint64 `protobuf:"varint,2,opt,name=guild1_id,json=guild1Id,proto3" json:"guild1_id,omitempty"`
  10298. Guild1Name string `protobuf:"bytes,3,opt,name=guild1_name,json=guild1Name,proto3" json:"guild1_name,omitempty"`
  10299. Guild1Badge int32 `protobuf:"varint,4,opt,name=guild1_badge,json=guild1Badge,proto3" json:"guild1_badge,omitempty"`
  10300. Guild2Id uint64 `protobuf:"varint,5,opt,name=guild2_id,json=guild2Id,proto3" json:"guild2_id,omitempty"`
  10301. Guild2Name string `protobuf:"bytes,6,opt,name=guild2_name,json=guild2Name,proto3" json:"guild2_name,omitempty"`
  10302. Guild2Badge int32 `protobuf:"varint,7,opt,name=guild2_badge,json=guild2Badge,proto3" json:"guild2_badge,omitempty"`
  10303. WinGuild bool `protobuf:"varint,8,opt,name=win_guild,json=winGuild,proto3" json:"win_guild,omitempty"`
  10304. WinType int32 `protobuf:"varint,9,opt,name=win_type,json=winType,proto3" json:"win_type,omitempty"`
  10305. State int32 `protobuf:"varint,10,opt,name=state,proto3" json:"state,omitempty"`
  10306. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  10307. XXX_unrecognized []byte `json:"-"`
  10308. XXX_sizecache int32 `json:"-"`
  10309. }
  10310. func (m *CountTableData) Reset() { *m = CountTableData{} }
  10311. func (m *CountTableData) String() string { return proto.CompactTextString(m) }
  10312. func (*CountTableData) ProtoMessage() {}
  10313. func (*CountTableData) Descriptor() ([]byte, []int) {
  10314. return fileDescriptor_116e343673f7ffaf, []int{172}
  10315. }
  10316. func (m *CountTableData) XXX_Unmarshal(b []byte) error {
  10317. return xxx_messageInfo_CountTableData.Unmarshal(m, b)
  10318. }
  10319. func (m *CountTableData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  10320. return xxx_messageInfo_CountTableData.Marshal(b, m, deterministic)
  10321. }
  10322. func (m *CountTableData) XXX_Merge(src proto.Message) {
  10323. xxx_messageInfo_CountTableData.Merge(m, src)
  10324. }
  10325. func (m *CountTableData) XXX_Size() int {
  10326. return xxx_messageInfo_CountTableData.Size(m)
  10327. }
  10328. func (m *CountTableData) XXX_DiscardUnknown() {
  10329. xxx_messageInfo_CountTableData.DiscardUnknown(m)
  10330. }
  10331. var xxx_messageInfo_CountTableData proto.InternalMessageInfo
  10332. func (m *CountTableData) GetBattleIndex() int32 {
  10333. if m != nil {
  10334. return m.BattleIndex
  10335. }
  10336. return 0
  10337. }
  10338. func (m *CountTableData) GetGuild1Id() uint64 {
  10339. if m != nil {
  10340. return m.Guild1Id
  10341. }
  10342. return 0
  10343. }
  10344. func (m *CountTableData) GetGuild1Name() string {
  10345. if m != nil {
  10346. return m.Guild1Name
  10347. }
  10348. return ""
  10349. }
  10350. func (m *CountTableData) GetGuild1Badge() int32 {
  10351. if m != nil {
  10352. return m.Guild1Badge
  10353. }
  10354. return 0
  10355. }
  10356. func (m *CountTableData) GetGuild2Id() uint64 {
  10357. if m != nil {
  10358. return m.Guild2Id
  10359. }
  10360. return 0
  10361. }
  10362. func (m *CountTableData) GetGuild2Name() string {
  10363. if m != nil {
  10364. return m.Guild2Name
  10365. }
  10366. return ""
  10367. }
  10368. func (m *CountTableData) GetGuild2Badge() int32 {
  10369. if m != nil {
  10370. return m.Guild2Badge
  10371. }
  10372. return 0
  10373. }
  10374. func (m *CountTableData) GetWinGuild() bool {
  10375. if m != nil {
  10376. return m.WinGuild
  10377. }
  10378. return false
  10379. }
  10380. func (m *CountTableData) GetWinType() int32 {
  10381. if m != nil {
  10382. return m.WinType
  10383. }
  10384. return 0
  10385. }
  10386. func (m *CountTableData) GetState() int32 {
  10387. if m != nil {
  10388. return m.State
  10389. }
  10390. return 0
  10391. }
  10392. // 公会战对阵表
  10393. type GuildCountPartTable struct {
  10394. Data []*CountTableData `protobuf:"bytes,1,rep,name=data,proto3" json:"data,omitempty"`
  10395. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  10396. XXX_unrecognized []byte `json:"-"`
  10397. XXX_sizecache int32 `json:"-"`
  10398. }
  10399. func (m *GuildCountPartTable) Reset() { *m = GuildCountPartTable{} }
  10400. func (m *GuildCountPartTable) String() string { return proto.CompactTextString(m) }
  10401. func (*GuildCountPartTable) ProtoMessage() {}
  10402. func (*GuildCountPartTable) Descriptor() ([]byte, []int) {
  10403. return fileDescriptor_116e343673f7ffaf, []int{173}
  10404. }
  10405. func (m *GuildCountPartTable) XXX_Unmarshal(b []byte) error {
  10406. return xxx_messageInfo_GuildCountPartTable.Unmarshal(m, b)
  10407. }
  10408. func (m *GuildCountPartTable) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  10409. return xxx_messageInfo_GuildCountPartTable.Marshal(b, m, deterministic)
  10410. }
  10411. func (m *GuildCountPartTable) XXX_Merge(src proto.Message) {
  10412. xxx_messageInfo_GuildCountPartTable.Merge(m, src)
  10413. }
  10414. func (m *GuildCountPartTable) XXX_Size() int {
  10415. return xxx_messageInfo_GuildCountPartTable.Size(m)
  10416. }
  10417. func (m *GuildCountPartTable) XXX_DiscardUnknown() {
  10418. xxx_messageInfo_GuildCountPartTable.DiscardUnknown(m)
  10419. }
  10420. var xxx_messageInfo_GuildCountPartTable proto.InternalMessageInfo
  10421. func (m *GuildCountPartTable) GetData() []*CountTableData {
  10422. if m != nil {
  10423. return m.Data
  10424. }
  10425. return nil
  10426. }
  10427. // MVP界面数据
  10428. type GuildBattleDetail struct {
  10429. GuildId uint64 `protobuf:"varint,1,opt,name=guild_id,json=guildId,proto3" json:"guild_id,omitempty"`
  10430. SlotCount int32 `protobuf:"varint,2,opt,name=slot_count,json=slotCount,proto3" json:"slot_count,omitempty"`
  10431. Score int32 `protobuf:"varint,3,opt,name=score,proto3" json:"score,omitempty"`
  10432. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  10433. XXX_unrecognized []byte `json:"-"`
  10434. XXX_sizecache int32 `json:"-"`
  10435. }
  10436. func (m *GuildBattleDetail) Reset() { *m = GuildBattleDetail{} }
  10437. func (m *GuildBattleDetail) String() string { return proto.CompactTextString(m) }
  10438. func (*GuildBattleDetail) ProtoMessage() {}
  10439. func (*GuildBattleDetail) Descriptor() ([]byte, []int) {
  10440. return fileDescriptor_116e343673f7ffaf, []int{174}
  10441. }
  10442. func (m *GuildBattleDetail) XXX_Unmarshal(b []byte) error {
  10443. return xxx_messageInfo_GuildBattleDetail.Unmarshal(m, b)
  10444. }
  10445. func (m *GuildBattleDetail) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  10446. return xxx_messageInfo_GuildBattleDetail.Marshal(b, m, deterministic)
  10447. }
  10448. func (m *GuildBattleDetail) XXX_Merge(src proto.Message) {
  10449. xxx_messageInfo_GuildBattleDetail.Merge(m, src)
  10450. }
  10451. func (m *GuildBattleDetail) XXX_Size() int {
  10452. return xxx_messageInfo_GuildBattleDetail.Size(m)
  10453. }
  10454. func (m *GuildBattleDetail) XXX_DiscardUnknown() {
  10455. xxx_messageInfo_GuildBattleDetail.DiscardUnknown(m)
  10456. }
  10457. var xxx_messageInfo_GuildBattleDetail proto.InternalMessageInfo
  10458. func (m *GuildBattleDetail) GetGuildId() uint64 {
  10459. if m != nil {
  10460. return m.GuildId
  10461. }
  10462. return 0
  10463. }
  10464. func (m *GuildBattleDetail) GetSlotCount() int32 {
  10465. if m != nil {
  10466. return m.SlotCount
  10467. }
  10468. return 0
  10469. }
  10470. func (m *GuildBattleDetail) GetScore() int32 {
  10471. if m != nil {
  10472. return m.Score
  10473. }
  10474. return 0
  10475. }
  10476. // MVP
  10477. type GuildBattleMvp struct {
  10478. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  10479. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  10480. GuildId uint64 `protobuf:"varint,3,opt,name=guild_id,json=guildId,proto3" json:"guild_id,omitempty"`
  10481. Score int32 `protobuf:"varint,4,opt,name=score,proto3" json:"score,omitempty"`
  10482. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  10483. XXX_unrecognized []byte `json:"-"`
  10484. XXX_sizecache int32 `json:"-"`
  10485. }
  10486. func (m *GuildBattleMvp) Reset() { *m = GuildBattleMvp{} }
  10487. func (m *GuildBattleMvp) String() string { return proto.CompactTextString(m) }
  10488. func (*GuildBattleMvp) ProtoMessage() {}
  10489. func (*GuildBattleMvp) Descriptor() ([]byte, []int) {
  10490. return fileDescriptor_116e343673f7ffaf, []int{175}
  10491. }
  10492. func (m *GuildBattleMvp) XXX_Unmarshal(b []byte) error {
  10493. return xxx_messageInfo_GuildBattleMvp.Unmarshal(m, b)
  10494. }
  10495. func (m *GuildBattleMvp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  10496. return xxx_messageInfo_GuildBattleMvp.Marshal(b, m, deterministic)
  10497. }
  10498. func (m *GuildBattleMvp) XXX_Merge(src proto.Message) {
  10499. xxx_messageInfo_GuildBattleMvp.Merge(m, src)
  10500. }
  10501. func (m *GuildBattleMvp) XXX_Size() int {
  10502. return xxx_messageInfo_GuildBattleMvp.Size(m)
  10503. }
  10504. func (m *GuildBattleMvp) XXX_DiscardUnknown() {
  10505. xxx_messageInfo_GuildBattleMvp.DiscardUnknown(m)
  10506. }
  10507. var xxx_messageInfo_GuildBattleMvp proto.InternalMessageInfo
  10508. func (m *GuildBattleMvp) GetUid() uint64 {
  10509. if m != nil {
  10510. return m.Uid
  10511. }
  10512. return 0
  10513. }
  10514. func (m *GuildBattleMvp) GetName() string {
  10515. if m != nil {
  10516. return m.Name
  10517. }
  10518. return ""
  10519. }
  10520. func (m *GuildBattleMvp) GetGuildId() uint64 {
  10521. if m != nil {
  10522. return m.GuildId
  10523. }
  10524. return 0
  10525. }
  10526. func (m *GuildBattleMvp) GetScore() int32 {
  10527. if m != nil {
  10528. return m.Score
  10529. }
  10530. return 0
  10531. }
  10532. type GuildBattleRank struct {
  10533. Score int32 `protobuf:"varint,1,opt,name=score,proto3" json:"score,omitempty"`
  10534. Rank int32 `protobuf:"varint,2,opt,name=rank,proto3" json:"rank,omitempty"`
  10535. GuildId uint64 `protobuf:"varint,3,opt,name=guild_id,json=guildId,proto3" json:"guild_id,omitempty"`
  10536. Info *CommonPlayerBriefInfo `protobuf:"bytes,4,opt,name=info,proto3" json:"info,omitempty"`
  10537. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  10538. XXX_unrecognized []byte `json:"-"`
  10539. XXX_sizecache int32 `json:"-"`
  10540. }
  10541. func (m *GuildBattleRank) Reset() { *m = GuildBattleRank{} }
  10542. func (m *GuildBattleRank) String() string { return proto.CompactTextString(m) }
  10543. func (*GuildBattleRank) ProtoMessage() {}
  10544. func (*GuildBattleRank) Descriptor() ([]byte, []int) {
  10545. return fileDescriptor_116e343673f7ffaf, []int{176}
  10546. }
  10547. func (m *GuildBattleRank) XXX_Unmarshal(b []byte) error {
  10548. return xxx_messageInfo_GuildBattleRank.Unmarshal(m, b)
  10549. }
  10550. func (m *GuildBattleRank) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  10551. return xxx_messageInfo_GuildBattleRank.Marshal(b, m, deterministic)
  10552. }
  10553. func (m *GuildBattleRank) XXX_Merge(src proto.Message) {
  10554. xxx_messageInfo_GuildBattleRank.Merge(m, src)
  10555. }
  10556. func (m *GuildBattleRank) XXX_Size() int {
  10557. return xxx_messageInfo_GuildBattleRank.Size(m)
  10558. }
  10559. func (m *GuildBattleRank) XXX_DiscardUnknown() {
  10560. xxx_messageInfo_GuildBattleRank.DiscardUnknown(m)
  10561. }
  10562. var xxx_messageInfo_GuildBattleRank proto.InternalMessageInfo
  10563. func (m *GuildBattleRank) GetScore() int32 {
  10564. if m != nil {
  10565. return m.Score
  10566. }
  10567. return 0
  10568. }
  10569. func (m *GuildBattleRank) GetRank() int32 {
  10570. if m != nil {
  10571. return m.Rank
  10572. }
  10573. return 0
  10574. }
  10575. func (m *GuildBattleRank) GetGuildId() uint64 {
  10576. if m != nil {
  10577. return m.GuildId
  10578. }
  10579. return 0
  10580. }
  10581. func (m *GuildBattleRank) GetInfo() *CommonPlayerBriefInfo {
  10582. if m != nil {
  10583. return m.Info
  10584. }
  10585. return nil
  10586. }
  10587. // 公会贡献点cp
  10588. type GuildBattleCP struct {
  10589. Brief *GuildBrief `protobuf:"bytes,1,opt,name=brief,proto3" json:"brief,omitempty"`
  10590. MemCount int32 `protobuf:"varint,2,opt,name=mem_count,json=memCount,proto3" json:"mem_count,omitempty"`
  10591. CpNum uint32 `protobuf:"varint,3,opt,name=cp_num,json=cpNum,proto3" json:"cp_num,omitempty"`
  10592. Rank int32 `protobuf:"varint,4,opt,name=rank,proto3" json:"rank,omitempty"`
  10593. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  10594. XXX_unrecognized []byte `json:"-"`
  10595. XXX_sizecache int32 `json:"-"`
  10596. }
  10597. func (m *GuildBattleCP) Reset() { *m = GuildBattleCP{} }
  10598. func (m *GuildBattleCP) String() string { return proto.CompactTextString(m) }
  10599. func (*GuildBattleCP) ProtoMessage() {}
  10600. func (*GuildBattleCP) Descriptor() ([]byte, []int) {
  10601. return fileDescriptor_116e343673f7ffaf, []int{177}
  10602. }
  10603. func (m *GuildBattleCP) XXX_Unmarshal(b []byte) error {
  10604. return xxx_messageInfo_GuildBattleCP.Unmarshal(m, b)
  10605. }
  10606. func (m *GuildBattleCP) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  10607. return xxx_messageInfo_GuildBattleCP.Marshal(b, m, deterministic)
  10608. }
  10609. func (m *GuildBattleCP) XXX_Merge(src proto.Message) {
  10610. xxx_messageInfo_GuildBattleCP.Merge(m, src)
  10611. }
  10612. func (m *GuildBattleCP) XXX_Size() int {
  10613. return xxx_messageInfo_GuildBattleCP.Size(m)
  10614. }
  10615. func (m *GuildBattleCP) XXX_DiscardUnknown() {
  10616. xxx_messageInfo_GuildBattleCP.DiscardUnknown(m)
  10617. }
  10618. var xxx_messageInfo_GuildBattleCP proto.InternalMessageInfo
  10619. func (m *GuildBattleCP) GetBrief() *GuildBrief {
  10620. if m != nil {
  10621. return m.Brief
  10622. }
  10623. return nil
  10624. }
  10625. func (m *GuildBattleCP) GetMemCount() int32 {
  10626. if m != nil {
  10627. return m.MemCount
  10628. }
  10629. return 0
  10630. }
  10631. func (m *GuildBattleCP) GetCpNum() uint32 {
  10632. if m != nil {
  10633. return m.CpNum
  10634. }
  10635. return 0
  10636. }
  10637. func (m *GuildBattleCP) GetRank() int32 {
  10638. if m != nil {
  10639. return m.Rank
  10640. }
  10641. return 0
  10642. }
  10643. type GMNoticeInfo struct {
  10644. NoticeColor string `protobuf:"bytes,1,opt,name=notice_color,json=noticeColor,proto3" json:"notice_color,omitempty"`
  10645. NoticeSpeed uint32 `protobuf:"varint,2,opt,name=notice_speed,json=noticeSpeed,proto3" json:"notice_speed,omitempty"`
  10646. NoticeCount uint32 `protobuf:"varint,3,opt,name=notice_count,json=noticeCount,proto3" json:"notice_count,omitempty"`
  10647. NoticeInterval uint32 `protobuf:"varint,4,opt,name=notice_interval,json=noticeInterval,proto3" json:"notice_interval,omitempty"`
  10648. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  10649. XXX_unrecognized []byte `json:"-"`
  10650. XXX_sizecache int32 `json:"-"`
  10651. }
  10652. func (m *GMNoticeInfo) Reset() { *m = GMNoticeInfo{} }
  10653. func (m *GMNoticeInfo) String() string { return proto.CompactTextString(m) }
  10654. func (*GMNoticeInfo) ProtoMessage() {}
  10655. func (*GMNoticeInfo) Descriptor() ([]byte, []int) {
  10656. return fileDescriptor_116e343673f7ffaf, []int{178}
  10657. }
  10658. func (m *GMNoticeInfo) XXX_Unmarshal(b []byte) error {
  10659. return xxx_messageInfo_GMNoticeInfo.Unmarshal(m, b)
  10660. }
  10661. func (m *GMNoticeInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  10662. return xxx_messageInfo_GMNoticeInfo.Marshal(b, m, deterministic)
  10663. }
  10664. func (m *GMNoticeInfo) XXX_Merge(src proto.Message) {
  10665. xxx_messageInfo_GMNoticeInfo.Merge(m, src)
  10666. }
  10667. func (m *GMNoticeInfo) XXX_Size() int {
  10668. return xxx_messageInfo_GMNoticeInfo.Size(m)
  10669. }
  10670. func (m *GMNoticeInfo) XXX_DiscardUnknown() {
  10671. xxx_messageInfo_GMNoticeInfo.DiscardUnknown(m)
  10672. }
  10673. var xxx_messageInfo_GMNoticeInfo proto.InternalMessageInfo
  10674. func (m *GMNoticeInfo) GetNoticeColor() string {
  10675. if m != nil {
  10676. return m.NoticeColor
  10677. }
  10678. return ""
  10679. }
  10680. func (m *GMNoticeInfo) GetNoticeSpeed() uint32 {
  10681. if m != nil {
  10682. return m.NoticeSpeed
  10683. }
  10684. return 0
  10685. }
  10686. func (m *GMNoticeInfo) GetNoticeCount() uint32 {
  10687. if m != nil {
  10688. return m.NoticeCount
  10689. }
  10690. return 0
  10691. }
  10692. func (m *GMNoticeInfo) GetNoticeInterval() uint32 {
  10693. if m != nil {
  10694. return m.NoticeInterval
  10695. }
  10696. return 0
  10697. }
  10698. type ReconnectUserData struct {
  10699. MapId uint32 `protobuf:"varint,1,opt,name=map_id,json=mapId,proto3" json:"map_id,omitempty"`
  10700. MapLevel uint32 `protobuf:"varint,2,opt,name=map_level,json=mapLevel,proto3" json:"map_level,omitempty"`
  10701. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  10702. XXX_unrecognized []byte `json:"-"`
  10703. XXX_sizecache int32 `json:"-"`
  10704. }
  10705. func (m *ReconnectUserData) Reset() { *m = ReconnectUserData{} }
  10706. func (m *ReconnectUserData) String() string { return proto.CompactTextString(m) }
  10707. func (*ReconnectUserData) ProtoMessage() {}
  10708. func (*ReconnectUserData) Descriptor() ([]byte, []int) {
  10709. return fileDescriptor_116e343673f7ffaf, []int{179}
  10710. }
  10711. func (m *ReconnectUserData) XXX_Unmarshal(b []byte) error {
  10712. return xxx_messageInfo_ReconnectUserData.Unmarshal(m, b)
  10713. }
  10714. func (m *ReconnectUserData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  10715. return xxx_messageInfo_ReconnectUserData.Marshal(b, m, deterministic)
  10716. }
  10717. func (m *ReconnectUserData) XXX_Merge(src proto.Message) {
  10718. xxx_messageInfo_ReconnectUserData.Merge(m, src)
  10719. }
  10720. func (m *ReconnectUserData) XXX_Size() int {
  10721. return xxx_messageInfo_ReconnectUserData.Size(m)
  10722. }
  10723. func (m *ReconnectUserData) XXX_DiscardUnknown() {
  10724. xxx_messageInfo_ReconnectUserData.DiscardUnknown(m)
  10725. }
  10726. var xxx_messageInfo_ReconnectUserData proto.InternalMessageInfo
  10727. func (m *ReconnectUserData) GetMapId() uint32 {
  10728. if m != nil {
  10729. return m.MapId
  10730. }
  10731. return 0
  10732. }
  10733. func (m *ReconnectUserData) GetMapLevel() uint32 {
  10734. if m != nil {
  10735. return m.MapLevel
  10736. }
  10737. return 0
  10738. }
  10739. type EquipSlotCards struct {
  10740. SlotId int32 `protobuf:"varint,1,opt,name=slot_id,json=slotId,proto3" json:"slot_id,omitempty"`
  10741. CardSlotInfo []*KeyValueType `protobuf:"bytes,2,rep,name=card_slot_info,json=cardSlotInfo,proto3" json:"card_slot_info,omitempty"`
  10742. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  10743. XXX_unrecognized []byte `json:"-"`
  10744. XXX_sizecache int32 `json:"-"`
  10745. }
  10746. func (m *EquipSlotCards) Reset() { *m = EquipSlotCards{} }
  10747. func (m *EquipSlotCards) String() string { return proto.CompactTextString(m) }
  10748. func (*EquipSlotCards) ProtoMessage() {}
  10749. func (*EquipSlotCards) Descriptor() ([]byte, []int) {
  10750. return fileDescriptor_116e343673f7ffaf, []int{180}
  10751. }
  10752. func (m *EquipSlotCards) XXX_Unmarshal(b []byte) error {
  10753. return xxx_messageInfo_EquipSlotCards.Unmarshal(m, b)
  10754. }
  10755. func (m *EquipSlotCards) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  10756. return xxx_messageInfo_EquipSlotCards.Marshal(b, m, deterministic)
  10757. }
  10758. func (m *EquipSlotCards) XXX_Merge(src proto.Message) {
  10759. xxx_messageInfo_EquipSlotCards.Merge(m, src)
  10760. }
  10761. func (m *EquipSlotCards) XXX_Size() int {
  10762. return xxx_messageInfo_EquipSlotCards.Size(m)
  10763. }
  10764. func (m *EquipSlotCards) XXX_DiscardUnknown() {
  10765. xxx_messageInfo_EquipSlotCards.DiscardUnknown(m)
  10766. }
  10767. var xxx_messageInfo_EquipSlotCards proto.InternalMessageInfo
  10768. func (m *EquipSlotCards) GetSlotId() int32 {
  10769. if m != nil {
  10770. return m.SlotId
  10771. }
  10772. return 0
  10773. }
  10774. func (m *EquipSlotCards) GetCardSlotInfo() []*KeyValueType {
  10775. if m != nil {
  10776. return m.CardSlotInfo
  10777. }
  10778. return nil
  10779. }
  10780. type BattleRecordInfo struct {
  10781. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  10782. BattleRecordId uint64 `protobuf:"varint,2,opt,name=battle_record_id,json=battleRecordId,proto3" json:"battle_record_id,omitempty"`
  10783. NickName string `protobuf:"bytes,3,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
  10784. ImgId int32 `protobuf:"varint,4,opt,name=img_id,json=imgId,proto3" json:"img_id,omitempty"`
  10785. Gender int32 `protobuf:"varint,5,opt,name=gender,proto3" json:"gender,omitempty"`
  10786. Level int32 `protobuf:"varint,6,opt,name=level,proto3" json:"level,omitempty"`
  10787. ConfigId int32 `protobuf:"varint,7,opt,name=config_id,json=configId,proto3" json:"config_id,omitempty"`
  10788. FightPower int32 `protobuf:"varint,8,opt,name=fight_power,json=fightPower,proto3" json:"fight_power,omitempty"`
  10789. RecordTime uint64 `protobuf:"varint,9,opt,name=record_time,json=recordTime,proto3" json:"record_time,omitempty"`
  10790. BattleTime uint32 `protobuf:"varint,10,opt,name=battle_time,json=battleTime,proto3" json:"battle_time,omitempty"`
  10791. MapLevelId int32 `protobuf:"varint,12,opt,name=map_level_id,json=mapLevelId,proto3" json:"map_level_id,omitempty"`
  10792. RecordIdx int32 `protobuf:"varint,13,opt,name=record_idx,json=recordIdx,proto3" json:"record_idx,omitempty"`
  10793. HeadFrameId int32 `protobuf:"varint,14,opt,name=head_frame_id,json=headFrameId,proto3" json:"head_frame_id,omitempty"`
  10794. BattleVersion int32 `protobuf:"varint,15,opt,name=battle_version,json=battleVersion,proto3" json:"battle_version,omitempty"`
  10795. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  10796. XXX_unrecognized []byte `json:"-"`
  10797. XXX_sizecache int32 `json:"-"`
  10798. }
  10799. func (m *BattleRecordInfo) Reset() { *m = BattleRecordInfo{} }
  10800. func (m *BattleRecordInfo) String() string { return proto.CompactTextString(m) }
  10801. func (*BattleRecordInfo) ProtoMessage() {}
  10802. func (*BattleRecordInfo) Descriptor() ([]byte, []int) {
  10803. return fileDescriptor_116e343673f7ffaf, []int{181}
  10804. }
  10805. func (m *BattleRecordInfo) XXX_Unmarshal(b []byte) error {
  10806. return xxx_messageInfo_BattleRecordInfo.Unmarshal(m, b)
  10807. }
  10808. func (m *BattleRecordInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  10809. return xxx_messageInfo_BattleRecordInfo.Marshal(b, m, deterministic)
  10810. }
  10811. func (m *BattleRecordInfo) XXX_Merge(src proto.Message) {
  10812. xxx_messageInfo_BattleRecordInfo.Merge(m, src)
  10813. }
  10814. func (m *BattleRecordInfo) XXX_Size() int {
  10815. return xxx_messageInfo_BattleRecordInfo.Size(m)
  10816. }
  10817. func (m *BattleRecordInfo) XXX_DiscardUnknown() {
  10818. xxx_messageInfo_BattleRecordInfo.DiscardUnknown(m)
  10819. }
  10820. var xxx_messageInfo_BattleRecordInfo proto.InternalMessageInfo
  10821. func (m *BattleRecordInfo) GetUid() uint64 {
  10822. if m != nil {
  10823. return m.Uid
  10824. }
  10825. return 0
  10826. }
  10827. func (m *BattleRecordInfo) GetBattleRecordId() uint64 {
  10828. if m != nil {
  10829. return m.BattleRecordId
  10830. }
  10831. return 0
  10832. }
  10833. func (m *BattleRecordInfo) GetNickName() string {
  10834. if m != nil {
  10835. return m.NickName
  10836. }
  10837. return ""
  10838. }
  10839. func (m *BattleRecordInfo) GetImgId() int32 {
  10840. if m != nil {
  10841. return m.ImgId
  10842. }
  10843. return 0
  10844. }
  10845. func (m *BattleRecordInfo) GetGender() int32 {
  10846. if m != nil {
  10847. return m.Gender
  10848. }
  10849. return 0
  10850. }
  10851. func (m *BattleRecordInfo) GetLevel() int32 {
  10852. if m != nil {
  10853. return m.Level
  10854. }
  10855. return 0
  10856. }
  10857. func (m *BattleRecordInfo) GetConfigId() int32 {
  10858. if m != nil {
  10859. return m.ConfigId
  10860. }
  10861. return 0
  10862. }
  10863. func (m *BattleRecordInfo) GetFightPower() int32 {
  10864. if m != nil {
  10865. return m.FightPower
  10866. }
  10867. return 0
  10868. }
  10869. func (m *BattleRecordInfo) GetRecordTime() uint64 {
  10870. if m != nil {
  10871. return m.RecordTime
  10872. }
  10873. return 0
  10874. }
  10875. func (m *BattleRecordInfo) GetBattleTime() uint32 {
  10876. if m != nil {
  10877. return m.BattleTime
  10878. }
  10879. return 0
  10880. }
  10881. func (m *BattleRecordInfo) GetMapLevelId() int32 {
  10882. if m != nil {
  10883. return m.MapLevelId
  10884. }
  10885. return 0
  10886. }
  10887. func (m *BattleRecordInfo) GetRecordIdx() int32 {
  10888. if m != nil {
  10889. return m.RecordIdx
  10890. }
  10891. return 0
  10892. }
  10893. func (m *BattleRecordInfo) GetHeadFrameId() int32 {
  10894. if m != nil {
  10895. return m.HeadFrameId
  10896. }
  10897. return 0
  10898. }
  10899. func (m *BattleRecordInfo) GetBattleVersion() int32 {
  10900. if m != nil {
  10901. return m.BattleVersion
  10902. }
  10903. return 0
  10904. }
  10905. // //////////////////////宠物
  10906. // 设置援助信息(玩家自身设置的援助信息存储)
  10907. type AssistSaveData struct {
  10908. PetId uint32 `protobuf:"varint,1,opt,name=pet_id,json=petId,proto3" json:"pet_id,omitempty"`
  10909. PetCfgId int32 `protobuf:"varint,2,opt,name=pet_cfg_id,json=petCfgId,proto3" json:"pet_cfg_id,omitempty"`
  10910. AdvLevel uint32 `protobuf:"varint,3,opt,name=adv_level,json=advLevel,proto3" json:"adv_level,omitempty"`
  10911. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  10912. XXX_unrecognized []byte `json:"-"`
  10913. XXX_sizecache int32 `json:"-"`
  10914. }
  10915. func (m *AssistSaveData) Reset() { *m = AssistSaveData{} }
  10916. func (m *AssistSaveData) String() string { return proto.CompactTextString(m) }
  10917. func (*AssistSaveData) ProtoMessage() {}
  10918. func (*AssistSaveData) Descriptor() ([]byte, []int) {
  10919. return fileDescriptor_116e343673f7ffaf, []int{182}
  10920. }
  10921. func (m *AssistSaveData) XXX_Unmarshal(b []byte) error {
  10922. return xxx_messageInfo_AssistSaveData.Unmarshal(m, b)
  10923. }
  10924. func (m *AssistSaveData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  10925. return xxx_messageInfo_AssistSaveData.Marshal(b, m, deterministic)
  10926. }
  10927. func (m *AssistSaveData) XXX_Merge(src proto.Message) {
  10928. xxx_messageInfo_AssistSaveData.Merge(m, src)
  10929. }
  10930. func (m *AssistSaveData) XXX_Size() int {
  10931. return xxx_messageInfo_AssistSaveData.Size(m)
  10932. }
  10933. func (m *AssistSaveData) XXX_DiscardUnknown() {
  10934. xxx_messageInfo_AssistSaveData.DiscardUnknown(m)
  10935. }
  10936. var xxx_messageInfo_AssistSaveData proto.InternalMessageInfo
  10937. func (m *AssistSaveData) GetPetId() uint32 {
  10938. if m != nil {
  10939. return m.PetId
  10940. }
  10941. return 0
  10942. }
  10943. func (m *AssistSaveData) GetPetCfgId() int32 {
  10944. if m != nil {
  10945. return m.PetCfgId
  10946. }
  10947. return 0
  10948. }
  10949. func (m *AssistSaveData) GetAdvLevel() uint32 {
  10950. if m != nil {
  10951. return m.AdvLevel
  10952. }
  10953. return 0
  10954. }
  10955. // 羁绊数据结构
  10956. type AssistData struct {
  10957. OwnerUid uint64 `protobuf:"varint,1,opt,name=owner_uid,json=ownerUid,proto3" json:"owner_uid,omitempty"`
  10958. OwnerNickName string `protobuf:"bytes,2,opt,name=owner_nick_name,json=ownerNickName,proto3" json:"owner_nick_name,omitempty"`
  10959. PetInfoList []*PetData `protobuf:"bytes,3,rep,name=pet_info_list,json=petInfoList,proto3" json:"pet_info_list,omitempty"`
  10960. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  10961. XXX_unrecognized []byte `json:"-"`
  10962. XXX_sizecache int32 `json:"-"`
  10963. }
  10964. func (m *AssistData) Reset() { *m = AssistData{} }
  10965. func (m *AssistData) String() string { return proto.CompactTextString(m) }
  10966. func (*AssistData) ProtoMessage() {}
  10967. func (*AssistData) Descriptor() ([]byte, []int) {
  10968. return fileDescriptor_116e343673f7ffaf, []int{183}
  10969. }
  10970. func (m *AssistData) XXX_Unmarshal(b []byte) error {
  10971. return xxx_messageInfo_AssistData.Unmarshal(m, b)
  10972. }
  10973. func (m *AssistData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  10974. return xxx_messageInfo_AssistData.Marshal(b, m, deterministic)
  10975. }
  10976. func (m *AssistData) XXX_Merge(src proto.Message) {
  10977. xxx_messageInfo_AssistData.Merge(m, src)
  10978. }
  10979. func (m *AssistData) XXX_Size() int {
  10980. return xxx_messageInfo_AssistData.Size(m)
  10981. }
  10982. func (m *AssistData) XXX_DiscardUnknown() {
  10983. xxx_messageInfo_AssistData.DiscardUnknown(m)
  10984. }
  10985. var xxx_messageInfo_AssistData proto.InternalMessageInfo
  10986. func (m *AssistData) GetOwnerUid() uint64 {
  10987. if m != nil {
  10988. return m.OwnerUid
  10989. }
  10990. return 0
  10991. }
  10992. func (m *AssistData) GetOwnerNickName() string {
  10993. if m != nil {
  10994. return m.OwnerNickName
  10995. }
  10996. return ""
  10997. }
  10998. func (m *AssistData) GetPetInfoList() []*PetData {
  10999. if m != nil {
  11000. return m.PetInfoList
  11001. }
  11002. return nil
  11003. }
  11004. type PetBondPosData struct {
  11005. OwnerUid uint64 `protobuf:"varint,2,opt,name=owner_uid,json=ownerUid,proto3" json:"owner_uid,omitempty"`
  11006. PetId uint32 `protobuf:"varint,3,opt,name=pet_id,json=petId,proto3" json:"pet_id,omitempty"`
  11007. AdvanceLevel uint32 `protobuf:"varint,4,opt,name=advance_level,json=advanceLevel,proto3" json:"advance_level,omitempty"`
  11008. PetCfgId int32 `protobuf:"varint,5,opt,name=pet_cfg_id,json=petCfgId,proto3" json:"pet_cfg_id,omitempty"`
  11009. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  11010. XXX_unrecognized []byte `json:"-"`
  11011. XXX_sizecache int32 `json:"-"`
  11012. }
  11013. func (m *PetBondPosData) Reset() { *m = PetBondPosData{} }
  11014. func (m *PetBondPosData) String() string { return proto.CompactTextString(m) }
  11015. func (*PetBondPosData) ProtoMessage() {}
  11016. func (*PetBondPosData) Descriptor() ([]byte, []int) {
  11017. return fileDescriptor_116e343673f7ffaf, []int{184}
  11018. }
  11019. func (m *PetBondPosData) XXX_Unmarshal(b []byte) error {
  11020. return xxx_messageInfo_PetBondPosData.Unmarshal(m, b)
  11021. }
  11022. func (m *PetBondPosData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  11023. return xxx_messageInfo_PetBondPosData.Marshal(b, m, deterministic)
  11024. }
  11025. func (m *PetBondPosData) XXX_Merge(src proto.Message) {
  11026. xxx_messageInfo_PetBondPosData.Merge(m, src)
  11027. }
  11028. func (m *PetBondPosData) XXX_Size() int {
  11029. return xxx_messageInfo_PetBondPosData.Size(m)
  11030. }
  11031. func (m *PetBondPosData) XXX_DiscardUnknown() {
  11032. xxx_messageInfo_PetBondPosData.DiscardUnknown(m)
  11033. }
  11034. var xxx_messageInfo_PetBondPosData proto.InternalMessageInfo
  11035. func (m *PetBondPosData) GetOwnerUid() uint64 {
  11036. if m != nil {
  11037. return m.OwnerUid
  11038. }
  11039. return 0
  11040. }
  11041. func (m *PetBondPosData) GetPetId() uint32 {
  11042. if m != nil {
  11043. return m.PetId
  11044. }
  11045. return 0
  11046. }
  11047. func (m *PetBondPosData) GetAdvanceLevel() uint32 {
  11048. if m != nil {
  11049. return m.AdvanceLevel
  11050. }
  11051. return 0
  11052. }
  11053. func (m *PetBondPosData) GetPetCfgId() int32 {
  11054. if m != nil {
  11055. return m.PetCfgId
  11056. }
  11057. return 0
  11058. }
  11059. type PetBondData struct {
  11060. BondCfgId int32 `protobuf:"varint,1,opt,name=bond_cfg_id,json=bondCfgId,proto3" json:"bond_cfg_id,omitempty"`
  11061. BondList []*PetBondPosData `protobuf:"bytes,2,rep,name=bond_list,json=bondList,proto3" json:"bond_list,omitempty"`
  11062. PetBondLevel int32 `protobuf:"varint,3,opt,name=pet_bond_level,json=petBondLevel,proto3" json:"pet_bond_level,omitempty"`
  11063. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  11064. XXX_unrecognized []byte `json:"-"`
  11065. XXX_sizecache int32 `json:"-"`
  11066. }
  11067. func (m *PetBondData) Reset() { *m = PetBondData{} }
  11068. func (m *PetBondData) String() string { return proto.CompactTextString(m) }
  11069. func (*PetBondData) ProtoMessage() {}
  11070. func (*PetBondData) Descriptor() ([]byte, []int) {
  11071. return fileDescriptor_116e343673f7ffaf, []int{185}
  11072. }
  11073. func (m *PetBondData) XXX_Unmarshal(b []byte) error {
  11074. return xxx_messageInfo_PetBondData.Unmarshal(m, b)
  11075. }
  11076. func (m *PetBondData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  11077. return xxx_messageInfo_PetBondData.Marshal(b, m, deterministic)
  11078. }
  11079. func (m *PetBondData) XXX_Merge(src proto.Message) {
  11080. xxx_messageInfo_PetBondData.Merge(m, src)
  11081. }
  11082. func (m *PetBondData) XXX_Size() int {
  11083. return xxx_messageInfo_PetBondData.Size(m)
  11084. }
  11085. func (m *PetBondData) XXX_DiscardUnknown() {
  11086. xxx_messageInfo_PetBondData.DiscardUnknown(m)
  11087. }
  11088. var xxx_messageInfo_PetBondData proto.InternalMessageInfo
  11089. func (m *PetBondData) GetBondCfgId() int32 {
  11090. if m != nil {
  11091. return m.BondCfgId
  11092. }
  11093. return 0
  11094. }
  11095. func (m *PetBondData) GetBondList() []*PetBondPosData {
  11096. if m != nil {
  11097. return m.BondList
  11098. }
  11099. return nil
  11100. }
  11101. func (m *PetBondData) GetPetBondLevel() int32 {
  11102. if m != nil {
  11103. return m.PetBondLevel
  11104. }
  11105. return 0
  11106. }
  11107. // 宠物技能
  11108. type PetSkillData struct {
  11109. ConfigId int32 `protobuf:"varint,1,opt,name=config_id,json=configId,proto3" json:"config_id,omitempty"`
  11110. Level int32 `protobuf:"varint,2,opt,name=level,proto3" json:"level,omitempty"`
  11111. Rate int32 `protobuf:"varint,3,opt,name=rate,proto3" json:"rate,omitempty"`
  11112. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  11113. XXX_unrecognized []byte `json:"-"`
  11114. XXX_sizecache int32 `json:"-"`
  11115. }
  11116. func (m *PetSkillData) Reset() { *m = PetSkillData{} }
  11117. func (m *PetSkillData) String() string { return proto.CompactTextString(m) }
  11118. func (*PetSkillData) ProtoMessage() {}
  11119. func (*PetSkillData) Descriptor() ([]byte, []int) {
  11120. return fileDescriptor_116e343673f7ffaf, []int{186}
  11121. }
  11122. func (m *PetSkillData) XXX_Unmarshal(b []byte) error {
  11123. return xxx_messageInfo_PetSkillData.Unmarshal(m, b)
  11124. }
  11125. func (m *PetSkillData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  11126. return xxx_messageInfo_PetSkillData.Marshal(b, m, deterministic)
  11127. }
  11128. func (m *PetSkillData) XXX_Merge(src proto.Message) {
  11129. xxx_messageInfo_PetSkillData.Merge(m, src)
  11130. }
  11131. func (m *PetSkillData) XXX_Size() int {
  11132. return xxx_messageInfo_PetSkillData.Size(m)
  11133. }
  11134. func (m *PetSkillData) XXX_DiscardUnknown() {
  11135. xxx_messageInfo_PetSkillData.DiscardUnknown(m)
  11136. }
  11137. var xxx_messageInfo_PetSkillData proto.InternalMessageInfo
  11138. func (m *PetSkillData) GetConfigId() int32 {
  11139. if m != nil {
  11140. return m.ConfigId
  11141. }
  11142. return 0
  11143. }
  11144. func (m *PetSkillData) GetLevel() int32 {
  11145. if m != nil {
  11146. return m.Level
  11147. }
  11148. return 0
  11149. }
  11150. func (m *PetSkillData) GetRate() int32 {
  11151. if m != nil {
  11152. return m.Rate
  11153. }
  11154. return 0
  11155. }
  11156. type PetData struct {
  11157. Id uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  11158. ConfigId int32 `protobuf:"varint,2,opt,name=config_id,json=configId,proto3" json:"config_id,omitempty"`
  11159. Level int32 `protobuf:"varint,3,opt,name=level,proto3" json:"level,omitempty"`
  11160. AdvanceLevel uint32 `protobuf:"varint,4,opt,name=advance_level,json=advanceLevel,proto3" json:"advance_level,omitempty"`
  11161. SkillList []*PetSkillData `protobuf:"bytes,5,rep,name=skill_list,json=skillList,proto3" json:"skill_list,omitempty"`
  11162. HeroId int32 `protobuf:"varint,6,opt,name=hero_id,json=heroId,proto3" json:"hero_id,omitempty"`
  11163. Param int32 `protobuf:"varint,7,opt,name=param,proto3" json:"param,omitempty"`
  11164. SlotEquipList []*PetSlotDetailData `protobuf:"bytes,8,rep,name=slot_equip_list,json=slotEquipList,proto3" json:"slot_equip_list,omitempty"`
  11165. QiyueHeroId int32 `protobuf:"varint,9,opt,name=qiyue_hero_id,json=qiyueHeroId,proto3" json:"qiyue_hero_id,omitempty"`
  11166. // 有可能没有(老号)
  11167. BattleAttrListOld []*KeyValueType `protobuf:"bytes,50,rep,name=battle_attr_list_old,json=battleAttrListOld,proto3" json:"battle_attr_list_old,omitempty"`
  11168. PetFightPower uint32 `protobuf:"varint,51,opt,name=pet_fight_power,json=petFightPower,proto3" json:"pet_fight_power,omitempty"`
  11169. BattleAttrList []*KeyValueFloat32 `protobuf:"bytes,52,rep,name=battle_attr_list,json=battleAttrList,proto3" json:"battle_attr_list,omitempty"`
  11170. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  11171. XXX_unrecognized []byte `json:"-"`
  11172. XXX_sizecache int32 `json:"-"`
  11173. }
  11174. func (m *PetData) Reset() { *m = PetData{} }
  11175. func (m *PetData) String() string { return proto.CompactTextString(m) }
  11176. func (*PetData) ProtoMessage() {}
  11177. func (*PetData) Descriptor() ([]byte, []int) {
  11178. return fileDescriptor_116e343673f7ffaf, []int{187}
  11179. }
  11180. func (m *PetData) XXX_Unmarshal(b []byte) error {
  11181. return xxx_messageInfo_PetData.Unmarshal(m, b)
  11182. }
  11183. func (m *PetData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  11184. return xxx_messageInfo_PetData.Marshal(b, m, deterministic)
  11185. }
  11186. func (m *PetData) XXX_Merge(src proto.Message) {
  11187. xxx_messageInfo_PetData.Merge(m, src)
  11188. }
  11189. func (m *PetData) XXX_Size() int {
  11190. return xxx_messageInfo_PetData.Size(m)
  11191. }
  11192. func (m *PetData) XXX_DiscardUnknown() {
  11193. xxx_messageInfo_PetData.DiscardUnknown(m)
  11194. }
  11195. var xxx_messageInfo_PetData proto.InternalMessageInfo
  11196. func (m *PetData) GetId() uint32 {
  11197. if m != nil {
  11198. return m.Id
  11199. }
  11200. return 0
  11201. }
  11202. func (m *PetData) GetConfigId() int32 {
  11203. if m != nil {
  11204. return m.ConfigId
  11205. }
  11206. return 0
  11207. }
  11208. func (m *PetData) GetLevel() int32 {
  11209. if m != nil {
  11210. return m.Level
  11211. }
  11212. return 0
  11213. }
  11214. func (m *PetData) GetAdvanceLevel() uint32 {
  11215. if m != nil {
  11216. return m.AdvanceLevel
  11217. }
  11218. return 0
  11219. }
  11220. func (m *PetData) GetSkillList() []*PetSkillData {
  11221. if m != nil {
  11222. return m.SkillList
  11223. }
  11224. return nil
  11225. }
  11226. func (m *PetData) GetHeroId() int32 {
  11227. if m != nil {
  11228. return m.HeroId
  11229. }
  11230. return 0
  11231. }
  11232. func (m *PetData) GetParam() int32 {
  11233. if m != nil {
  11234. return m.Param
  11235. }
  11236. return 0
  11237. }
  11238. func (m *PetData) GetSlotEquipList() []*PetSlotDetailData {
  11239. if m != nil {
  11240. return m.SlotEquipList
  11241. }
  11242. return nil
  11243. }
  11244. func (m *PetData) GetQiyueHeroId() int32 {
  11245. if m != nil {
  11246. return m.QiyueHeroId
  11247. }
  11248. return 0
  11249. }
  11250. func (m *PetData) GetBattleAttrListOld() []*KeyValueType {
  11251. if m != nil {
  11252. return m.BattleAttrListOld
  11253. }
  11254. return nil
  11255. }
  11256. func (m *PetData) GetPetFightPower() uint32 {
  11257. if m != nil {
  11258. return m.PetFightPower
  11259. }
  11260. return 0
  11261. }
  11262. func (m *PetData) GetBattleAttrList() []*KeyValueFloat32 {
  11263. if m != nil {
  11264. return m.BattleAttrList
  11265. }
  11266. return nil
  11267. }
  11268. type AssistIdxData struct {
  11269. PetId uint32 `protobuf:"varint,1,opt,name=pet_id,json=petId,proto3" json:"pet_id,omitempty"`
  11270. EndCdTime uint64 `protobuf:"varint,2,opt,name=end_cd_time,json=endCdTime,proto3" json:"end_cd_time,omitempty"`
  11271. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  11272. XXX_unrecognized []byte `json:"-"`
  11273. XXX_sizecache int32 `json:"-"`
  11274. }
  11275. func (m *AssistIdxData) Reset() { *m = AssistIdxData{} }
  11276. func (m *AssistIdxData) String() string { return proto.CompactTextString(m) }
  11277. func (*AssistIdxData) ProtoMessage() {}
  11278. func (*AssistIdxData) Descriptor() ([]byte, []int) {
  11279. return fileDescriptor_116e343673f7ffaf, []int{188}
  11280. }
  11281. func (m *AssistIdxData) XXX_Unmarshal(b []byte) error {
  11282. return xxx_messageInfo_AssistIdxData.Unmarshal(m, b)
  11283. }
  11284. func (m *AssistIdxData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  11285. return xxx_messageInfo_AssistIdxData.Marshal(b, m, deterministic)
  11286. }
  11287. func (m *AssistIdxData) XXX_Merge(src proto.Message) {
  11288. xxx_messageInfo_AssistIdxData.Merge(m, src)
  11289. }
  11290. func (m *AssistIdxData) XXX_Size() int {
  11291. return xxx_messageInfo_AssistIdxData.Size(m)
  11292. }
  11293. func (m *AssistIdxData) XXX_DiscardUnknown() {
  11294. xxx_messageInfo_AssistIdxData.DiscardUnknown(m)
  11295. }
  11296. var xxx_messageInfo_AssistIdxData proto.InternalMessageInfo
  11297. func (m *AssistIdxData) GetPetId() uint32 {
  11298. if m != nil {
  11299. return m.PetId
  11300. }
  11301. return 0
  11302. }
  11303. func (m *AssistIdxData) GetEndCdTime() uint64 {
  11304. if m != nil {
  11305. return m.EndCdTime
  11306. }
  11307. return 0
  11308. }
  11309. type PetManualST struct {
  11310. PetCfgId int32 `protobuf:"varint,1,opt,name=pet_cfg_id,json=petCfgId,proto3" json:"pet_cfg_id,omitempty"`
  11311. AdvLevel uint32 `protobuf:"varint,2,opt,name=adv_level,json=advLevel,proto3" json:"adv_level,omitempty"`
  11312. RewardState int32 `protobuf:"varint,3,opt,name=reward_state,json=rewardState,proto3" json:"reward_state,omitempty"`
  11313. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  11314. XXX_unrecognized []byte `json:"-"`
  11315. XXX_sizecache int32 `json:"-"`
  11316. }
  11317. func (m *PetManualST) Reset() { *m = PetManualST{} }
  11318. func (m *PetManualST) String() string { return proto.CompactTextString(m) }
  11319. func (*PetManualST) ProtoMessage() {}
  11320. func (*PetManualST) Descriptor() ([]byte, []int) {
  11321. return fileDescriptor_116e343673f7ffaf, []int{189}
  11322. }
  11323. func (m *PetManualST) XXX_Unmarshal(b []byte) error {
  11324. return xxx_messageInfo_PetManualST.Unmarshal(m, b)
  11325. }
  11326. func (m *PetManualST) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  11327. return xxx_messageInfo_PetManualST.Marshal(b, m, deterministic)
  11328. }
  11329. func (m *PetManualST) XXX_Merge(src proto.Message) {
  11330. xxx_messageInfo_PetManualST.Merge(m, src)
  11331. }
  11332. func (m *PetManualST) XXX_Size() int {
  11333. return xxx_messageInfo_PetManualST.Size(m)
  11334. }
  11335. func (m *PetManualST) XXX_DiscardUnknown() {
  11336. xxx_messageInfo_PetManualST.DiscardUnknown(m)
  11337. }
  11338. var xxx_messageInfo_PetManualST proto.InternalMessageInfo
  11339. func (m *PetManualST) GetPetCfgId() int32 {
  11340. if m != nil {
  11341. return m.PetCfgId
  11342. }
  11343. return 0
  11344. }
  11345. func (m *PetManualST) GetAdvLevel() uint32 {
  11346. if m != nil {
  11347. return m.AdvLevel
  11348. }
  11349. return 0
  11350. }
  11351. func (m *PetManualST) GetRewardState() int32 {
  11352. if m != nil {
  11353. return m.RewardState
  11354. }
  11355. return 0
  11356. }
  11357. type RushPet struct {
  11358. TotalScore uint32 `protobuf:"varint,1,opt,name=total_score,json=totalScore,proto3" json:"total_score,omitempty"`
  11359. RushRound int32 `protobuf:"varint,2,opt,name=rush_round,json=rushRound,proto3" json:"rush_round,omitempty"`
  11360. RewardRound int32 `protobuf:"varint,3,opt,name=reward_round,json=rewardRound,proto3" json:"reward_round,omitempty"`
  11361. ScoreRewardFlag int32 `protobuf:"varint,4,opt,name=score_reward_flag,json=scoreRewardFlag,proto3" json:"score_reward_flag,omitempty"`
  11362. RankReward int32 `protobuf:"varint,5,opt,name=rank_reward,json=rankReward,proto3" json:"rank_reward,omitempty"`
  11363. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  11364. XXX_unrecognized []byte `json:"-"`
  11365. XXX_sizecache int32 `json:"-"`
  11366. }
  11367. func (m *RushPet) Reset() { *m = RushPet{} }
  11368. func (m *RushPet) String() string { return proto.CompactTextString(m) }
  11369. func (*RushPet) ProtoMessage() {}
  11370. func (*RushPet) Descriptor() ([]byte, []int) {
  11371. return fileDescriptor_116e343673f7ffaf, []int{190}
  11372. }
  11373. func (m *RushPet) XXX_Unmarshal(b []byte) error {
  11374. return xxx_messageInfo_RushPet.Unmarshal(m, b)
  11375. }
  11376. func (m *RushPet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  11377. return xxx_messageInfo_RushPet.Marshal(b, m, deterministic)
  11378. }
  11379. func (m *RushPet) XXX_Merge(src proto.Message) {
  11380. xxx_messageInfo_RushPet.Merge(m, src)
  11381. }
  11382. func (m *RushPet) XXX_Size() int {
  11383. return xxx_messageInfo_RushPet.Size(m)
  11384. }
  11385. func (m *RushPet) XXX_DiscardUnknown() {
  11386. xxx_messageInfo_RushPet.DiscardUnknown(m)
  11387. }
  11388. var xxx_messageInfo_RushPet proto.InternalMessageInfo
  11389. func (m *RushPet) GetTotalScore() uint32 {
  11390. if m != nil {
  11391. return m.TotalScore
  11392. }
  11393. return 0
  11394. }
  11395. func (m *RushPet) GetRushRound() int32 {
  11396. if m != nil {
  11397. return m.RushRound
  11398. }
  11399. return 0
  11400. }
  11401. func (m *RushPet) GetRewardRound() int32 {
  11402. if m != nil {
  11403. return m.RewardRound
  11404. }
  11405. return 0
  11406. }
  11407. func (m *RushPet) GetScoreRewardFlag() int32 {
  11408. if m != nil {
  11409. return m.ScoreRewardFlag
  11410. }
  11411. return 0
  11412. }
  11413. func (m *RushPet) GetRankReward() int32 {
  11414. if m != nil {
  11415. return m.RankReward
  11416. }
  11417. return 0
  11418. }
  11419. type RolePet struct {
  11420. MaxPetId int32 `protobuf:"varint,1,opt,name=max_pet_id,json=maxPetId,proto3" json:"max_pet_id,omitempty"`
  11421. PetManualList []*KeyValueType `protobuf:"bytes,2,rep,name=pet_manual_list,json=petManualList,proto3" json:"pet_manual_list,omitempty"`
  11422. AssistList []*AssistIdxData `protobuf:"bytes,3,rep,name=assist_list,json=assistList,proto3" json:"assist_list,omitempty"`
  11423. PetList []*PetData `protobuf:"bytes,4,rep,name=pet_list,json=petList,proto3" json:"pet_list,omitempty"`
  11424. BondList []*PetBondData `protobuf:"bytes,5,rep,name=bond_list,json=bondList,proto3" json:"bond_list,omitempty"`
  11425. PetManualRewardList []*PetManualST `protobuf:"bytes,6,rep,name=pet_manual_reward_list,json=petManualRewardList,proto3" json:"pet_manual_reward_list,omitempty"`
  11426. RushPet *RushPet `protobuf:"bytes,7,opt,name=rush_pet,json=rushPet,proto3" json:"rush_pet,omitempty"`
  11427. PetEquipList []*PetEquipData `protobuf:"bytes,8,rep,name=pet_equip_list,json=petEquipList,proto3" json:"pet_equip_list,omitempty"`
  11428. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  11429. XXX_unrecognized []byte `json:"-"`
  11430. XXX_sizecache int32 `json:"-"`
  11431. }
  11432. func (m *RolePet) Reset() { *m = RolePet{} }
  11433. func (m *RolePet) String() string { return proto.CompactTextString(m) }
  11434. func (*RolePet) ProtoMessage() {}
  11435. func (*RolePet) Descriptor() ([]byte, []int) {
  11436. return fileDescriptor_116e343673f7ffaf, []int{191}
  11437. }
  11438. func (m *RolePet) XXX_Unmarshal(b []byte) error {
  11439. return xxx_messageInfo_RolePet.Unmarshal(m, b)
  11440. }
  11441. func (m *RolePet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  11442. return xxx_messageInfo_RolePet.Marshal(b, m, deterministic)
  11443. }
  11444. func (m *RolePet) XXX_Merge(src proto.Message) {
  11445. xxx_messageInfo_RolePet.Merge(m, src)
  11446. }
  11447. func (m *RolePet) XXX_Size() int {
  11448. return xxx_messageInfo_RolePet.Size(m)
  11449. }
  11450. func (m *RolePet) XXX_DiscardUnknown() {
  11451. xxx_messageInfo_RolePet.DiscardUnknown(m)
  11452. }
  11453. var xxx_messageInfo_RolePet proto.InternalMessageInfo
  11454. func (m *RolePet) GetMaxPetId() int32 {
  11455. if m != nil {
  11456. return m.MaxPetId
  11457. }
  11458. return 0
  11459. }
  11460. func (m *RolePet) GetPetManualList() []*KeyValueType {
  11461. if m != nil {
  11462. return m.PetManualList
  11463. }
  11464. return nil
  11465. }
  11466. func (m *RolePet) GetAssistList() []*AssistIdxData {
  11467. if m != nil {
  11468. return m.AssistList
  11469. }
  11470. return nil
  11471. }
  11472. func (m *RolePet) GetPetList() []*PetData {
  11473. if m != nil {
  11474. return m.PetList
  11475. }
  11476. return nil
  11477. }
  11478. func (m *RolePet) GetBondList() []*PetBondData {
  11479. if m != nil {
  11480. return m.BondList
  11481. }
  11482. return nil
  11483. }
  11484. func (m *RolePet) GetPetManualRewardList() []*PetManualST {
  11485. if m != nil {
  11486. return m.PetManualRewardList
  11487. }
  11488. return nil
  11489. }
  11490. func (m *RolePet) GetRushPet() *RushPet {
  11491. if m != nil {
  11492. return m.RushPet
  11493. }
  11494. return nil
  11495. }
  11496. func (m *RolePet) GetPetEquipList() []*PetEquipData {
  11497. if m != nil {
  11498. return m.PetEquipList
  11499. }
  11500. return nil
  11501. }
  11502. type PetAdvAchievementData struct {
  11503. AdvLevel int32 `protobuf:"varint,1,opt,name=adv_level,json=advLevel,proto3" json:"adv_level,omitempty"`
  11504. AchievementTime uint64 `protobuf:"varint,2,opt,name=achievement_time,json=achievementTime,proto3" json:"achievement_time,omitempty"`
  11505. Uid uint64 `protobuf:"varint,3,opt,name=uid,proto3" json:"uid,omitempty"`
  11506. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  11507. XXX_unrecognized []byte `json:"-"`
  11508. XXX_sizecache int32 `json:"-"`
  11509. }
  11510. func (m *PetAdvAchievementData) Reset() { *m = PetAdvAchievementData{} }
  11511. func (m *PetAdvAchievementData) String() string { return proto.CompactTextString(m) }
  11512. func (*PetAdvAchievementData) ProtoMessage() {}
  11513. func (*PetAdvAchievementData) Descriptor() ([]byte, []int) {
  11514. return fileDescriptor_116e343673f7ffaf, []int{192}
  11515. }
  11516. func (m *PetAdvAchievementData) XXX_Unmarshal(b []byte) error {
  11517. return xxx_messageInfo_PetAdvAchievementData.Unmarshal(m, b)
  11518. }
  11519. func (m *PetAdvAchievementData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  11520. return xxx_messageInfo_PetAdvAchievementData.Marshal(b, m, deterministic)
  11521. }
  11522. func (m *PetAdvAchievementData) XXX_Merge(src proto.Message) {
  11523. xxx_messageInfo_PetAdvAchievementData.Merge(m, src)
  11524. }
  11525. func (m *PetAdvAchievementData) XXX_Size() int {
  11526. return xxx_messageInfo_PetAdvAchievementData.Size(m)
  11527. }
  11528. func (m *PetAdvAchievementData) XXX_DiscardUnknown() {
  11529. xxx_messageInfo_PetAdvAchievementData.DiscardUnknown(m)
  11530. }
  11531. var xxx_messageInfo_PetAdvAchievementData proto.InternalMessageInfo
  11532. func (m *PetAdvAchievementData) GetAdvLevel() int32 {
  11533. if m != nil {
  11534. return m.AdvLevel
  11535. }
  11536. return 0
  11537. }
  11538. func (m *PetAdvAchievementData) GetAchievementTime() uint64 {
  11539. if m != nil {
  11540. return m.AchievementTime
  11541. }
  11542. return 0
  11543. }
  11544. func (m *PetAdvAchievementData) GetUid() uint64 {
  11545. if m != nil {
  11546. return m.Uid
  11547. }
  11548. return 0
  11549. }
  11550. type CardCollection struct {
  11551. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  11552. CardLevel int32 `protobuf:"varint,2,opt,name=card_level,json=cardLevel,proto3" json:"card_level,omitempty"`
  11553. LogTime int64 `protobuf:"varint,3,opt,name=log_time,json=logTime,proto3" json:"log_time,omitempty"`
  11554. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  11555. XXX_unrecognized []byte `json:"-"`
  11556. XXX_sizecache int32 `json:"-"`
  11557. }
  11558. func (m *CardCollection) Reset() { *m = CardCollection{} }
  11559. func (m *CardCollection) String() string { return proto.CompactTextString(m) }
  11560. func (*CardCollection) ProtoMessage() {}
  11561. func (*CardCollection) Descriptor() ([]byte, []int) {
  11562. return fileDescriptor_116e343673f7ffaf, []int{193}
  11563. }
  11564. func (m *CardCollection) XXX_Unmarshal(b []byte) error {
  11565. return xxx_messageInfo_CardCollection.Unmarshal(m, b)
  11566. }
  11567. func (m *CardCollection) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  11568. return xxx_messageInfo_CardCollection.Marshal(b, m, deterministic)
  11569. }
  11570. func (m *CardCollection) XXX_Merge(src proto.Message) {
  11571. xxx_messageInfo_CardCollection.Merge(m, src)
  11572. }
  11573. func (m *CardCollection) XXX_Size() int {
  11574. return xxx_messageInfo_CardCollection.Size(m)
  11575. }
  11576. func (m *CardCollection) XXX_DiscardUnknown() {
  11577. xxx_messageInfo_CardCollection.DiscardUnknown(m)
  11578. }
  11579. var xxx_messageInfo_CardCollection proto.InternalMessageInfo
  11580. func (m *CardCollection) GetUid() uint64 {
  11581. if m != nil {
  11582. return m.Uid
  11583. }
  11584. return 0
  11585. }
  11586. func (m *CardCollection) GetCardLevel() int32 {
  11587. if m != nil {
  11588. return m.CardLevel
  11589. }
  11590. return 0
  11591. }
  11592. func (m *CardCollection) GetLogTime() int64 {
  11593. if m != nil {
  11594. return m.LogTime
  11595. }
  11596. return 0
  11597. }
  11598. // //////////////////////拉新(邀请码)
  11599. type InvitationTaskData struct {
  11600. TaskId uint32 `protobuf:"varint,1,opt,name=task_id,json=taskId,proto3" json:"task_id,omitempty"`
  11601. Progress int32 `protobuf:"varint,2,opt,name=progress,proto3" json:"progress,omitempty"`
  11602. RewardedCount int32 `protobuf:"varint,3,opt,name=rewarded_count,json=rewardedCount,proto3" json:"rewarded_count,omitempty"`
  11603. RewardCount int32 `protobuf:"varint,4,opt,name=reward_count,json=rewardCount,proto3" json:"reward_count,omitempty"`
  11604. CompleteMaxCount int32 `protobuf:"varint,5,opt,name=complete_max_count,json=completeMaxCount,proto3" json:"complete_max_count,omitempty"`
  11605. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  11606. XXX_unrecognized []byte `json:"-"`
  11607. XXX_sizecache int32 `json:"-"`
  11608. }
  11609. func (m *InvitationTaskData) Reset() { *m = InvitationTaskData{} }
  11610. func (m *InvitationTaskData) String() string { return proto.CompactTextString(m) }
  11611. func (*InvitationTaskData) ProtoMessage() {}
  11612. func (*InvitationTaskData) Descriptor() ([]byte, []int) {
  11613. return fileDescriptor_116e343673f7ffaf, []int{194}
  11614. }
  11615. func (m *InvitationTaskData) XXX_Unmarshal(b []byte) error {
  11616. return xxx_messageInfo_InvitationTaskData.Unmarshal(m, b)
  11617. }
  11618. func (m *InvitationTaskData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  11619. return xxx_messageInfo_InvitationTaskData.Marshal(b, m, deterministic)
  11620. }
  11621. func (m *InvitationTaskData) XXX_Merge(src proto.Message) {
  11622. xxx_messageInfo_InvitationTaskData.Merge(m, src)
  11623. }
  11624. func (m *InvitationTaskData) XXX_Size() int {
  11625. return xxx_messageInfo_InvitationTaskData.Size(m)
  11626. }
  11627. func (m *InvitationTaskData) XXX_DiscardUnknown() {
  11628. xxx_messageInfo_InvitationTaskData.DiscardUnknown(m)
  11629. }
  11630. var xxx_messageInfo_InvitationTaskData proto.InternalMessageInfo
  11631. func (m *InvitationTaskData) GetTaskId() uint32 {
  11632. if m != nil {
  11633. return m.TaskId
  11634. }
  11635. return 0
  11636. }
  11637. func (m *InvitationTaskData) GetProgress() int32 {
  11638. if m != nil {
  11639. return m.Progress
  11640. }
  11641. return 0
  11642. }
  11643. func (m *InvitationTaskData) GetRewardedCount() int32 {
  11644. if m != nil {
  11645. return m.RewardedCount
  11646. }
  11647. return 0
  11648. }
  11649. func (m *InvitationTaskData) GetRewardCount() int32 {
  11650. if m != nil {
  11651. return m.RewardCount
  11652. }
  11653. return 0
  11654. }
  11655. func (m *InvitationTaskData) GetCompleteMaxCount() int32 {
  11656. if m != nil {
  11657. return m.CompleteMaxCount
  11658. }
  11659. return 0
  11660. }
  11661. // 成员贡献给导师的日志
  11662. type InvitationLogData struct {
  11663. MemberNickName string `protobuf:"bytes,1,opt,name=member_nick_name,json=memberNickName,proto3" json:"member_nick_name,omitempty"`
  11664. ProcessTime uint64 `protobuf:"varint,2,opt,name=process_time,json=processTime,proto3" json:"process_time,omitempty"`
  11665. ResVal uint32 `protobuf:"varint,3,opt,name=res_val,json=resVal,proto3" json:"res_val,omitempty"`
  11666. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  11667. XXX_unrecognized []byte `json:"-"`
  11668. XXX_sizecache int32 `json:"-"`
  11669. }
  11670. func (m *InvitationLogData) Reset() { *m = InvitationLogData{} }
  11671. func (m *InvitationLogData) String() string { return proto.CompactTextString(m) }
  11672. func (*InvitationLogData) ProtoMessage() {}
  11673. func (*InvitationLogData) Descriptor() ([]byte, []int) {
  11674. return fileDescriptor_116e343673f7ffaf, []int{195}
  11675. }
  11676. func (m *InvitationLogData) XXX_Unmarshal(b []byte) error {
  11677. return xxx_messageInfo_InvitationLogData.Unmarshal(m, b)
  11678. }
  11679. func (m *InvitationLogData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  11680. return xxx_messageInfo_InvitationLogData.Marshal(b, m, deterministic)
  11681. }
  11682. func (m *InvitationLogData) XXX_Merge(src proto.Message) {
  11683. xxx_messageInfo_InvitationLogData.Merge(m, src)
  11684. }
  11685. func (m *InvitationLogData) XXX_Size() int {
  11686. return xxx_messageInfo_InvitationLogData.Size(m)
  11687. }
  11688. func (m *InvitationLogData) XXX_DiscardUnknown() {
  11689. xxx_messageInfo_InvitationLogData.DiscardUnknown(m)
  11690. }
  11691. var xxx_messageInfo_InvitationLogData proto.InternalMessageInfo
  11692. func (m *InvitationLogData) GetMemberNickName() string {
  11693. if m != nil {
  11694. return m.MemberNickName
  11695. }
  11696. return ""
  11697. }
  11698. func (m *InvitationLogData) GetProcessTime() uint64 {
  11699. if m != nil {
  11700. return m.ProcessTime
  11701. }
  11702. return 0
  11703. }
  11704. func (m *InvitationLogData) GetResVal() uint32 {
  11705. if m != nil {
  11706. return m.ResVal
  11707. }
  11708. return 0
  11709. }
  11710. type InvitationMemberValData struct {
  11711. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  11712. Level int32 `protobuf:"varint,2,opt,name=level,proto3" json:"level,omitempty"`
  11713. TotalRecharge float32 `protobuf:"fixed32,3,opt,name=total_recharge,json=totalRecharge,proto3" json:"total_recharge,omitempty"`
  11714. ResVal int32 `protobuf:"varint,4,opt,name=res_val,json=resVal,proto3" json:"res_val,omitempty"`
  11715. State bool `protobuf:"varint,5,opt,name=state,proto3" json:"state,omitempty"`
  11716. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  11717. XXX_unrecognized []byte `json:"-"`
  11718. XXX_sizecache int32 `json:"-"`
  11719. }
  11720. func (m *InvitationMemberValData) Reset() { *m = InvitationMemberValData{} }
  11721. func (m *InvitationMemberValData) String() string { return proto.CompactTextString(m) }
  11722. func (*InvitationMemberValData) ProtoMessage() {}
  11723. func (*InvitationMemberValData) Descriptor() ([]byte, []int) {
  11724. return fileDescriptor_116e343673f7ffaf, []int{196}
  11725. }
  11726. func (m *InvitationMemberValData) XXX_Unmarshal(b []byte) error {
  11727. return xxx_messageInfo_InvitationMemberValData.Unmarshal(m, b)
  11728. }
  11729. func (m *InvitationMemberValData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  11730. return xxx_messageInfo_InvitationMemberValData.Marshal(b, m, deterministic)
  11731. }
  11732. func (m *InvitationMemberValData) XXX_Merge(src proto.Message) {
  11733. xxx_messageInfo_InvitationMemberValData.Merge(m, src)
  11734. }
  11735. func (m *InvitationMemberValData) XXX_Size() int {
  11736. return xxx_messageInfo_InvitationMemberValData.Size(m)
  11737. }
  11738. func (m *InvitationMemberValData) XXX_DiscardUnknown() {
  11739. xxx_messageInfo_InvitationMemberValData.DiscardUnknown(m)
  11740. }
  11741. var xxx_messageInfo_InvitationMemberValData proto.InternalMessageInfo
  11742. func (m *InvitationMemberValData) GetUid() uint64 {
  11743. if m != nil {
  11744. return m.Uid
  11745. }
  11746. return 0
  11747. }
  11748. func (m *InvitationMemberValData) GetLevel() int32 {
  11749. if m != nil {
  11750. return m.Level
  11751. }
  11752. return 0
  11753. }
  11754. func (m *InvitationMemberValData) GetTotalRecharge() float32 {
  11755. if m != nil {
  11756. return m.TotalRecharge
  11757. }
  11758. return 0
  11759. }
  11760. func (m *InvitationMemberValData) GetResVal() int32 {
  11761. if m != nil {
  11762. return m.ResVal
  11763. }
  11764. return 0
  11765. }
  11766. func (m *InvitationMemberValData) GetState() bool {
  11767. if m != nil {
  11768. return m.State
  11769. }
  11770. return false
  11771. }
  11772. type RoleInvitation struct {
  11773. ClickNum int32 `protobuf:"varint,1,opt,name=click_num,json=clickNum,proto3" json:"click_num,omitempty"`
  11774. SelfInvitationNumber uint64 `protobuf:"varint,2,opt,name=self_invitation_number,json=selfInvitationNumber,proto3" json:"self_invitation_number,omitempty"`
  11775. MasterUid uint64 `protobuf:"varint,3,opt,name=master_uid,json=masterUid,proto3" json:"master_uid,omitempty"`
  11776. MasterEndTime uint64 `protobuf:"varint,4,opt,name=master_end_time,json=masterEndTime,proto3" json:"master_end_time,omitempty"`
  11777. ClickMemberList []uint64 `protobuf:"varint,5,rep,packed,name=click_member_list,json=clickMemberList,proto3" json:"click_member_list,omitempty"`
  11778. TaskList []*InvitationTaskData `protobuf:"bytes,6,rep,name=task_list,json=taskList,proto3" json:"task_list,omitempty"`
  11779. MemberUidList []*InvitationMemberValData `protobuf:"bytes,7,rep,name=member_uid_list,json=memberUidList,proto3" json:"member_uid_list,omitempty"`
  11780. LogList []*InvitationLogData `protobuf:"bytes,8,rep,name=log_list,json=logList,proto3" json:"log_list,omitempty"`
  11781. ClickReplayMasterList []uint64 `protobuf:"varint,9,rep,packed,name=click_replay_master_list,json=clickReplayMasterList,proto3" json:"click_replay_master_list,omitempty"`
  11782. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  11783. XXX_unrecognized []byte `json:"-"`
  11784. XXX_sizecache int32 `json:"-"`
  11785. }
  11786. func (m *RoleInvitation) Reset() { *m = RoleInvitation{} }
  11787. func (m *RoleInvitation) String() string { return proto.CompactTextString(m) }
  11788. func (*RoleInvitation) ProtoMessage() {}
  11789. func (*RoleInvitation) Descriptor() ([]byte, []int) {
  11790. return fileDescriptor_116e343673f7ffaf, []int{197}
  11791. }
  11792. func (m *RoleInvitation) XXX_Unmarshal(b []byte) error {
  11793. return xxx_messageInfo_RoleInvitation.Unmarshal(m, b)
  11794. }
  11795. func (m *RoleInvitation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  11796. return xxx_messageInfo_RoleInvitation.Marshal(b, m, deterministic)
  11797. }
  11798. func (m *RoleInvitation) XXX_Merge(src proto.Message) {
  11799. xxx_messageInfo_RoleInvitation.Merge(m, src)
  11800. }
  11801. func (m *RoleInvitation) XXX_Size() int {
  11802. return xxx_messageInfo_RoleInvitation.Size(m)
  11803. }
  11804. func (m *RoleInvitation) XXX_DiscardUnknown() {
  11805. xxx_messageInfo_RoleInvitation.DiscardUnknown(m)
  11806. }
  11807. var xxx_messageInfo_RoleInvitation proto.InternalMessageInfo
  11808. func (m *RoleInvitation) GetClickNum() int32 {
  11809. if m != nil {
  11810. return m.ClickNum
  11811. }
  11812. return 0
  11813. }
  11814. func (m *RoleInvitation) GetSelfInvitationNumber() uint64 {
  11815. if m != nil {
  11816. return m.SelfInvitationNumber
  11817. }
  11818. return 0
  11819. }
  11820. func (m *RoleInvitation) GetMasterUid() uint64 {
  11821. if m != nil {
  11822. return m.MasterUid
  11823. }
  11824. return 0
  11825. }
  11826. func (m *RoleInvitation) GetMasterEndTime() uint64 {
  11827. if m != nil {
  11828. return m.MasterEndTime
  11829. }
  11830. return 0
  11831. }
  11832. func (m *RoleInvitation) GetClickMemberList() []uint64 {
  11833. if m != nil {
  11834. return m.ClickMemberList
  11835. }
  11836. return nil
  11837. }
  11838. func (m *RoleInvitation) GetTaskList() []*InvitationTaskData {
  11839. if m != nil {
  11840. return m.TaskList
  11841. }
  11842. return nil
  11843. }
  11844. func (m *RoleInvitation) GetMemberUidList() []*InvitationMemberValData {
  11845. if m != nil {
  11846. return m.MemberUidList
  11847. }
  11848. return nil
  11849. }
  11850. func (m *RoleInvitation) GetLogList() []*InvitationLogData {
  11851. if m != nil {
  11852. return m.LogList
  11853. }
  11854. return nil
  11855. }
  11856. func (m *RoleInvitation) GetClickReplayMasterList() []uint64 {
  11857. if m != nil {
  11858. return m.ClickReplayMasterList
  11859. }
  11860. return nil
  11861. }
  11862. // //////////////////////抽卡
  11863. type DrawData struct {
  11864. DrawType int32 `protobuf:"varint,1,opt,name=draw_type,json=drawType,proto3" json:"draw_type,omitempty"`
  11865. DrawTimes int32 `protobuf:"varint,2,opt,name=draw_times,json=drawTimes,proto3" json:"draw_times,omitempty"`
  11866. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  11867. XXX_unrecognized []byte `json:"-"`
  11868. XXX_sizecache int32 `json:"-"`
  11869. }
  11870. func (m *DrawData) Reset() { *m = DrawData{} }
  11871. func (m *DrawData) String() string { return proto.CompactTextString(m) }
  11872. func (*DrawData) ProtoMessage() {}
  11873. func (*DrawData) Descriptor() ([]byte, []int) {
  11874. return fileDescriptor_116e343673f7ffaf, []int{198}
  11875. }
  11876. func (m *DrawData) XXX_Unmarshal(b []byte) error {
  11877. return xxx_messageInfo_DrawData.Unmarshal(m, b)
  11878. }
  11879. func (m *DrawData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  11880. return xxx_messageInfo_DrawData.Marshal(b, m, deterministic)
  11881. }
  11882. func (m *DrawData) XXX_Merge(src proto.Message) {
  11883. xxx_messageInfo_DrawData.Merge(m, src)
  11884. }
  11885. func (m *DrawData) XXX_Size() int {
  11886. return xxx_messageInfo_DrawData.Size(m)
  11887. }
  11888. func (m *DrawData) XXX_DiscardUnknown() {
  11889. xxx_messageInfo_DrawData.DiscardUnknown(m)
  11890. }
  11891. var xxx_messageInfo_DrawData proto.InternalMessageInfo
  11892. func (m *DrawData) GetDrawType() int32 {
  11893. if m != nil {
  11894. return m.DrawType
  11895. }
  11896. return 0
  11897. }
  11898. func (m *DrawData) GetDrawTimes() int32 {
  11899. if m != nil {
  11900. return m.DrawTimes
  11901. }
  11902. return 0
  11903. }
  11904. type RoleDraw struct {
  11905. DrawSystem []*DrawData `protobuf:"bytes,1,rep,name=draw_system,json=drawSystem,proto3" json:"draw_system,omitempty"`
  11906. // 历史抽卡次数
  11907. CardDrawTotalNum int32 `protobuf:"varint,2,opt,name=card_draw_total_num,json=cardDrawTotalNum,proto3" json:"card_draw_total_num,omitempty"`
  11908. PetDrawTotalNum int32 `protobuf:"varint,3,opt,name=pet_draw_total_num,json=petDrawTotalNum,proto3" json:"pet_draw_total_num,omitempty"`
  11909. SkillEquipDrawTotalNum int32 `protobuf:"varint,4,opt,name=skill_equip_draw_total_num,json=skillEquipDrawTotalNum,proto3" json:"skill_equip_draw_total_num,omitempty"`
  11910. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  11911. XXX_unrecognized []byte `json:"-"`
  11912. XXX_sizecache int32 `json:"-"`
  11913. }
  11914. func (m *RoleDraw) Reset() { *m = RoleDraw{} }
  11915. func (m *RoleDraw) String() string { return proto.CompactTextString(m) }
  11916. func (*RoleDraw) ProtoMessage() {}
  11917. func (*RoleDraw) Descriptor() ([]byte, []int) {
  11918. return fileDescriptor_116e343673f7ffaf, []int{199}
  11919. }
  11920. func (m *RoleDraw) XXX_Unmarshal(b []byte) error {
  11921. return xxx_messageInfo_RoleDraw.Unmarshal(m, b)
  11922. }
  11923. func (m *RoleDraw) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  11924. return xxx_messageInfo_RoleDraw.Marshal(b, m, deterministic)
  11925. }
  11926. func (m *RoleDraw) XXX_Merge(src proto.Message) {
  11927. xxx_messageInfo_RoleDraw.Merge(m, src)
  11928. }
  11929. func (m *RoleDraw) XXX_Size() int {
  11930. return xxx_messageInfo_RoleDraw.Size(m)
  11931. }
  11932. func (m *RoleDraw) XXX_DiscardUnknown() {
  11933. xxx_messageInfo_RoleDraw.DiscardUnknown(m)
  11934. }
  11935. var xxx_messageInfo_RoleDraw proto.InternalMessageInfo
  11936. func (m *RoleDraw) GetDrawSystem() []*DrawData {
  11937. if m != nil {
  11938. return m.DrawSystem
  11939. }
  11940. return nil
  11941. }
  11942. func (m *RoleDraw) GetCardDrawTotalNum() int32 {
  11943. if m != nil {
  11944. return m.CardDrawTotalNum
  11945. }
  11946. return 0
  11947. }
  11948. func (m *RoleDraw) GetPetDrawTotalNum() int32 {
  11949. if m != nil {
  11950. return m.PetDrawTotalNum
  11951. }
  11952. return 0
  11953. }
  11954. func (m *RoleDraw) GetSkillEquipDrawTotalNum() int32 {
  11955. if m != nil {
  11956. return m.SkillEquipDrawTotalNum
  11957. }
  11958. return 0
  11959. }
  11960. // 卢恩商品
  11961. type RuneGoods struct {
  11962. GoodsId int32 `protobuf:"varint,1,opt,name=goods_id,json=goodsId,proto3" json:"goods_id,omitempty"`
  11963. BuyNum int32 `protobuf:"varint,2,opt,name=buy_num,json=buyNum,proto3" json:"buy_num,omitempty"`
  11964. HistoryBuy int32 `protobuf:"varint,3,opt,name=history_buy,json=historyBuy,proto3" json:"history_buy,omitempty"`
  11965. EndTime int64 `protobuf:"varint,4,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
  11966. NextRewardTime int64 `protobuf:"varint,5,opt,name=next_reward_time,json=nextRewardTime,proto3" json:"next_reward_time,omitempty"`
  11967. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  11968. XXX_unrecognized []byte `json:"-"`
  11969. XXX_sizecache int32 `json:"-"`
  11970. }
  11971. func (m *RuneGoods) Reset() { *m = RuneGoods{} }
  11972. func (m *RuneGoods) String() string { return proto.CompactTextString(m) }
  11973. func (*RuneGoods) ProtoMessage() {}
  11974. func (*RuneGoods) Descriptor() ([]byte, []int) {
  11975. return fileDescriptor_116e343673f7ffaf, []int{200}
  11976. }
  11977. func (m *RuneGoods) XXX_Unmarshal(b []byte) error {
  11978. return xxx_messageInfo_RuneGoods.Unmarshal(m, b)
  11979. }
  11980. func (m *RuneGoods) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  11981. return xxx_messageInfo_RuneGoods.Marshal(b, m, deterministic)
  11982. }
  11983. func (m *RuneGoods) XXX_Merge(src proto.Message) {
  11984. xxx_messageInfo_RuneGoods.Merge(m, src)
  11985. }
  11986. func (m *RuneGoods) XXX_Size() int {
  11987. return xxx_messageInfo_RuneGoods.Size(m)
  11988. }
  11989. func (m *RuneGoods) XXX_DiscardUnknown() {
  11990. xxx_messageInfo_RuneGoods.DiscardUnknown(m)
  11991. }
  11992. var xxx_messageInfo_RuneGoods proto.InternalMessageInfo
  11993. func (m *RuneGoods) GetGoodsId() int32 {
  11994. if m != nil {
  11995. return m.GoodsId
  11996. }
  11997. return 0
  11998. }
  11999. func (m *RuneGoods) GetBuyNum() int32 {
  12000. if m != nil {
  12001. return m.BuyNum
  12002. }
  12003. return 0
  12004. }
  12005. func (m *RuneGoods) GetHistoryBuy() int32 {
  12006. if m != nil {
  12007. return m.HistoryBuy
  12008. }
  12009. return 0
  12010. }
  12011. func (m *RuneGoods) GetEndTime() int64 {
  12012. if m != nil {
  12013. return m.EndTime
  12014. }
  12015. return 0
  12016. }
  12017. func (m *RuneGoods) GetNextRewardTime() int64 {
  12018. if m != nil {
  12019. return m.NextRewardTime
  12020. }
  12021. return 0
  12022. }
  12023. // 卢恩商店
  12024. type RuneShop struct {
  12025. ShopId int32 `protobuf:"varint,1,opt,name=shop_id,json=shopId,proto3" json:"shop_id,omitempty"`
  12026. SubShopId int32 `protobuf:"varint,2,opt,name=sub_shop_id,json=subShopId,proto3" json:"sub_shop_id,omitempty"`
  12027. GoodsInfo []*RuneGoods `protobuf:"bytes,3,rep,name=goods_info,json=goodsInfo,proto3" json:"goods_info,omitempty"`
  12028. NextRefresh int64 `protobuf:"varint,4,opt,name=next_refresh,json=nextRefresh,proto3" json:"next_refresh,omitempty"`
  12029. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  12030. XXX_unrecognized []byte `json:"-"`
  12031. XXX_sizecache int32 `json:"-"`
  12032. }
  12033. func (m *RuneShop) Reset() { *m = RuneShop{} }
  12034. func (m *RuneShop) String() string { return proto.CompactTextString(m) }
  12035. func (*RuneShop) ProtoMessage() {}
  12036. func (*RuneShop) Descriptor() ([]byte, []int) {
  12037. return fileDescriptor_116e343673f7ffaf, []int{201}
  12038. }
  12039. func (m *RuneShop) XXX_Unmarshal(b []byte) error {
  12040. return xxx_messageInfo_RuneShop.Unmarshal(m, b)
  12041. }
  12042. func (m *RuneShop) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  12043. return xxx_messageInfo_RuneShop.Marshal(b, m, deterministic)
  12044. }
  12045. func (m *RuneShop) XXX_Merge(src proto.Message) {
  12046. xxx_messageInfo_RuneShop.Merge(m, src)
  12047. }
  12048. func (m *RuneShop) XXX_Size() int {
  12049. return xxx_messageInfo_RuneShop.Size(m)
  12050. }
  12051. func (m *RuneShop) XXX_DiscardUnknown() {
  12052. xxx_messageInfo_RuneShop.DiscardUnknown(m)
  12053. }
  12054. var xxx_messageInfo_RuneShop proto.InternalMessageInfo
  12055. func (m *RuneShop) GetShopId() int32 {
  12056. if m != nil {
  12057. return m.ShopId
  12058. }
  12059. return 0
  12060. }
  12061. func (m *RuneShop) GetSubShopId() int32 {
  12062. if m != nil {
  12063. return m.SubShopId
  12064. }
  12065. return 0
  12066. }
  12067. func (m *RuneShop) GetGoodsInfo() []*RuneGoods {
  12068. if m != nil {
  12069. return m.GoodsInfo
  12070. }
  12071. return nil
  12072. }
  12073. func (m *RuneShop) GetNextRefresh() int64 {
  12074. if m != nil {
  12075. return m.NextRefresh
  12076. }
  12077. return 0
  12078. }
  12079. type RuneExplore struct {
  12080. CurLvl int32 `protobuf:"varint,1,opt,name=curLvl,proto3" json:"curLvl,omitempty"`
  12081. TotalExp int32 `protobuf:"varint,2,opt,name=totalExp,proto3" json:"totalExp,omitempty"`
  12082. MissionExp int32 `protobuf:"varint,3,opt,name=missionExp,proto3" json:"missionExp,omitempty"`
  12083. BUnlock bool `protobuf:"varint,4,opt,name=bUnlock,proto3" json:"bUnlock,omitempty"`
  12084. FullMaxAward bool `protobuf:"varint,5,opt,name=fullMaxAward,proto3" json:"fullMaxAward,omitempty"`
  12085. State []*KeyValueType `protobuf:"bytes,6,rep,name=state,proto3" json:"state,omitempty"`
  12086. AlreadyRune int32 `protobuf:"varint,7,opt,name=alreadyRune,proto3" json:"alreadyRune,omitempty"`
  12087. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  12088. XXX_unrecognized []byte `json:"-"`
  12089. XXX_sizecache int32 `json:"-"`
  12090. }
  12091. func (m *RuneExplore) Reset() { *m = RuneExplore{} }
  12092. func (m *RuneExplore) String() string { return proto.CompactTextString(m) }
  12093. func (*RuneExplore) ProtoMessage() {}
  12094. func (*RuneExplore) Descriptor() ([]byte, []int) {
  12095. return fileDescriptor_116e343673f7ffaf, []int{202}
  12096. }
  12097. func (m *RuneExplore) XXX_Unmarshal(b []byte) error {
  12098. return xxx_messageInfo_RuneExplore.Unmarshal(m, b)
  12099. }
  12100. func (m *RuneExplore) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  12101. return xxx_messageInfo_RuneExplore.Marshal(b, m, deterministic)
  12102. }
  12103. func (m *RuneExplore) XXX_Merge(src proto.Message) {
  12104. xxx_messageInfo_RuneExplore.Merge(m, src)
  12105. }
  12106. func (m *RuneExplore) XXX_Size() int {
  12107. return xxx_messageInfo_RuneExplore.Size(m)
  12108. }
  12109. func (m *RuneExplore) XXX_DiscardUnknown() {
  12110. xxx_messageInfo_RuneExplore.DiscardUnknown(m)
  12111. }
  12112. var xxx_messageInfo_RuneExplore proto.InternalMessageInfo
  12113. func (m *RuneExplore) GetCurLvl() int32 {
  12114. if m != nil {
  12115. return m.CurLvl
  12116. }
  12117. return 0
  12118. }
  12119. func (m *RuneExplore) GetTotalExp() int32 {
  12120. if m != nil {
  12121. return m.TotalExp
  12122. }
  12123. return 0
  12124. }
  12125. func (m *RuneExplore) GetMissionExp() int32 {
  12126. if m != nil {
  12127. return m.MissionExp
  12128. }
  12129. return 0
  12130. }
  12131. func (m *RuneExplore) GetBUnlock() bool {
  12132. if m != nil {
  12133. return m.BUnlock
  12134. }
  12135. return false
  12136. }
  12137. func (m *RuneExplore) GetFullMaxAward() bool {
  12138. if m != nil {
  12139. return m.FullMaxAward
  12140. }
  12141. return false
  12142. }
  12143. func (m *RuneExplore) GetState() []*KeyValueType {
  12144. if m != nil {
  12145. return m.State
  12146. }
  12147. return nil
  12148. }
  12149. func (m *RuneExplore) GetAlreadyRune() int32 {
  12150. if m != nil {
  12151. return m.AlreadyRune
  12152. }
  12153. return 0
  12154. }
  12155. type RuneBaseData struct {
  12156. ResetVersion int32 `protobuf:"varint,1,opt,name=reset_version,json=resetVersion,proto3" json:"reset_version,omitempty"`
  12157. MonthCardModify bool `protobuf:"varint,2,opt,name=month_card_modify,json=monthCardModify,proto3" json:"month_card_modify,omitempty"`
  12158. UsedCreditRecharge int32 `protobuf:"varint,3,opt,name=used_credit_recharge,json=usedCreditRecharge,proto3" json:"used_credit_recharge,omitempty"`
  12159. MaxCreditRecharge int32 `protobuf:"varint,4,opt,name=max_credit_recharge,json=maxCreditRecharge,proto3" json:"max_credit_recharge,omitempty"`
  12160. CreditRechargeLimit bool `protobuf:"varint,5,opt,name=credit_recharge_limit,json=creditRechargeLimit,proto3" json:"credit_recharge_limit,omitempty"`
  12161. PrivilegeData *RuneSpecialPrivilegeData `protobuf:"bytes,6,opt,name=privilege_data,json=privilegeData,proto3" json:"privilege_data,omitempty"`
  12162. IsPassCheck bool `protobuf:"varint,7,opt,name=is_pass_check,json=isPassCheck,proto3" json:"is_pass_check,omitempty"`
  12163. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  12164. XXX_unrecognized []byte `json:"-"`
  12165. XXX_sizecache int32 `json:"-"`
  12166. }
  12167. func (m *RuneBaseData) Reset() { *m = RuneBaseData{} }
  12168. func (m *RuneBaseData) String() string { return proto.CompactTextString(m) }
  12169. func (*RuneBaseData) ProtoMessage() {}
  12170. func (*RuneBaseData) Descriptor() ([]byte, []int) {
  12171. return fileDescriptor_116e343673f7ffaf, []int{203}
  12172. }
  12173. func (m *RuneBaseData) XXX_Unmarshal(b []byte) error {
  12174. return xxx_messageInfo_RuneBaseData.Unmarshal(m, b)
  12175. }
  12176. func (m *RuneBaseData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  12177. return xxx_messageInfo_RuneBaseData.Marshal(b, m, deterministic)
  12178. }
  12179. func (m *RuneBaseData) XXX_Merge(src proto.Message) {
  12180. xxx_messageInfo_RuneBaseData.Merge(m, src)
  12181. }
  12182. func (m *RuneBaseData) XXX_Size() int {
  12183. return xxx_messageInfo_RuneBaseData.Size(m)
  12184. }
  12185. func (m *RuneBaseData) XXX_DiscardUnknown() {
  12186. xxx_messageInfo_RuneBaseData.DiscardUnknown(m)
  12187. }
  12188. var xxx_messageInfo_RuneBaseData proto.InternalMessageInfo
  12189. func (m *RuneBaseData) GetResetVersion() int32 {
  12190. if m != nil {
  12191. return m.ResetVersion
  12192. }
  12193. return 0
  12194. }
  12195. func (m *RuneBaseData) GetMonthCardModify() bool {
  12196. if m != nil {
  12197. return m.MonthCardModify
  12198. }
  12199. return false
  12200. }
  12201. func (m *RuneBaseData) GetUsedCreditRecharge() int32 {
  12202. if m != nil {
  12203. return m.UsedCreditRecharge
  12204. }
  12205. return 0
  12206. }
  12207. func (m *RuneBaseData) GetMaxCreditRecharge() int32 {
  12208. if m != nil {
  12209. return m.MaxCreditRecharge
  12210. }
  12211. return 0
  12212. }
  12213. func (m *RuneBaseData) GetCreditRechargeLimit() bool {
  12214. if m != nil {
  12215. return m.CreditRechargeLimit
  12216. }
  12217. return false
  12218. }
  12219. func (m *RuneBaseData) GetPrivilegeData() *RuneSpecialPrivilegeData {
  12220. if m != nil {
  12221. return m.PrivilegeData
  12222. }
  12223. return nil
  12224. }
  12225. func (m *RuneBaseData) GetIsPassCheck() bool {
  12226. if m != nil {
  12227. return m.IsPassCheck
  12228. }
  12229. return false
  12230. }
  12231. // 特权卡商店
  12232. type RuneSpecialPrivilegeData struct {
  12233. SpecialId int32 `protobuf:"varint,1,opt,name=special_id,json=specialId,proto3" json:"special_id,omitempty"`
  12234. RewardTime uint64 `protobuf:"varint,2,opt,name=reward_time,json=rewardTime,proto3" json:"reward_time,omitempty"`
  12235. ProcessTime uint64 `protobuf:"varint,3,opt,name=process_time,json=processTime,proto3" json:"process_time,omitempty"`
  12236. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  12237. XXX_unrecognized []byte `json:"-"`
  12238. XXX_sizecache int32 `json:"-"`
  12239. }
  12240. func (m *RuneSpecialPrivilegeData) Reset() { *m = RuneSpecialPrivilegeData{} }
  12241. func (m *RuneSpecialPrivilegeData) String() string { return proto.CompactTextString(m) }
  12242. func (*RuneSpecialPrivilegeData) ProtoMessage() {}
  12243. func (*RuneSpecialPrivilegeData) Descriptor() ([]byte, []int) {
  12244. return fileDescriptor_116e343673f7ffaf, []int{204}
  12245. }
  12246. func (m *RuneSpecialPrivilegeData) XXX_Unmarshal(b []byte) error {
  12247. return xxx_messageInfo_RuneSpecialPrivilegeData.Unmarshal(m, b)
  12248. }
  12249. func (m *RuneSpecialPrivilegeData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  12250. return xxx_messageInfo_RuneSpecialPrivilegeData.Marshal(b, m, deterministic)
  12251. }
  12252. func (m *RuneSpecialPrivilegeData) XXX_Merge(src proto.Message) {
  12253. xxx_messageInfo_RuneSpecialPrivilegeData.Merge(m, src)
  12254. }
  12255. func (m *RuneSpecialPrivilegeData) XXX_Size() int {
  12256. return xxx_messageInfo_RuneSpecialPrivilegeData.Size(m)
  12257. }
  12258. func (m *RuneSpecialPrivilegeData) XXX_DiscardUnknown() {
  12259. xxx_messageInfo_RuneSpecialPrivilegeData.DiscardUnknown(m)
  12260. }
  12261. var xxx_messageInfo_RuneSpecialPrivilegeData proto.InternalMessageInfo
  12262. func (m *RuneSpecialPrivilegeData) GetSpecialId() int32 {
  12263. if m != nil {
  12264. return m.SpecialId
  12265. }
  12266. return 0
  12267. }
  12268. func (m *RuneSpecialPrivilegeData) GetRewardTime() uint64 {
  12269. if m != nil {
  12270. return m.RewardTime
  12271. }
  12272. return 0
  12273. }
  12274. func (m *RuneSpecialPrivilegeData) GetProcessTime() uint64 {
  12275. if m != nil {
  12276. return m.ProcessTime
  12277. }
  12278. return 0
  12279. }
  12280. // 卢恩商会
  12281. type RoleRune struct {
  12282. ShopList []*RuneShop `protobuf:"bytes,1,rep,name=shop_list,json=shopList,proto3" json:"shop_list,omitempty"`
  12283. RuneExplore *RuneExplore `protobuf:"bytes,2,opt,name=rune_explore,json=runeExplore,proto3" json:"rune_explore,omitempty"`
  12284. RuneBase *RuneBaseData `protobuf:"bytes,3,opt,name=rune_base,json=runeBase,proto3" json:"rune_base,omitempty"`
  12285. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  12286. XXX_unrecognized []byte `json:"-"`
  12287. XXX_sizecache int32 `json:"-"`
  12288. }
  12289. func (m *RoleRune) Reset() { *m = RoleRune{} }
  12290. func (m *RoleRune) String() string { return proto.CompactTextString(m) }
  12291. func (*RoleRune) ProtoMessage() {}
  12292. func (*RoleRune) Descriptor() ([]byte, []int) {
  12293. return fileDescriptor_116e343673f7ffaf, []int{205}
  12294. }
  12295. func (m *RoleRune) XXX_Unmarshal(b []byte) error {
  12296. return xxx_messageInfo_RoleRune.Unmarshal(m, b)
  12297. }
  12298. func (m *RoleRune) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  12299. return xxx_messageInfo_RoleRune.Marshal(b, m, deterministic)
  12300. }
  12301. func (m *RoleRune) XXX_Merge(src proto.Message) {
  12302. xxx_messageInfo_RoleRune.Merge(m, src)
  12303. }
  12304. func (m *RoleRune) XXX_Size() int {
  12305. return xxx_messageInfo_RoleRune.Size(m)
  12306. }
  12307. func (m *RoleRune) XXX_DiscardUnknown() {
  12308. xxx_messageInfo_RoleRune.DiscardUnknown(m)
  12309. }
  12310. var xxx_messageInfo_RoleRune proto.InternalMessageInfo
  12311. func (m *RoleRune) GetShopList() []*RuneShop {
  12312. if m != nil {
  12313. return m.ShopList
  12314. }
  12315. return nil
  12316. }
  12317. func (m *RoleRune) GetRuneExplore() *RuneExplore {
  12318. if m != nil {
  12319. return m.RuneExplore
  12320. }
  12321. return nil
  12322. }
  12323. func (m *RoleRune) GetRuneBase() *RuneBaseData {
  12324. if m != nil {
  12325. return m.RuneBase
  12326. }
  12327. return nil
  12328. }
  12329. type RushRankTop3 struct {
  12330. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  12331. Data int32 `protobuf:"varint,2,opt,name=data,proto3" json:"data,omitempty"`
  12332. Rank int32 `protobuf:"varint,3,opt,name=rank,proto3" json:"rank,omitempty"`
  12333. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  12334. XXX_unrecognized []byte `json:"-"`
  12335. XXX_sizecache int32 `json:"-"`
  12336. }
  12337. func (m *RushRankTop3) Reset() { *m = RushRankTop3{} }
  12338. func (m *RushRankTop3) String() string { return proto.CompactTextString(m) }
  12339. func (*RushRankTop3) ProtoMessage() {}
  12340. func (*RushRankTop3) Descriptor() ([]byte, []int) {
  12341. return fileDescriptor_116e343673f7ffaf, []int{206}
  12342. }
  12343. func (m *RushRankTop3) XXX_Unmarshal(b []byte) error {
  12344. return xxx_messageInfo_RushRankTop3.Unmarshal(m, b)
  12345. }
  12346. func (m *RushRankTop3) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  12347. return xxx_messageInfo_RushRankTop3.Marshal(b, m, deterministic)
  12348. }
  12349. func (m *RushRankTop3) XXX_Merge(src proto.Message) {
  12350. xxx_messageInfo_RushRankTop3.Merge(m, src)
  12351. }
  12352. func (m *RushRankTop3) XXX_Size() int {
  12353. return xxx_messageInfo_RushRankTop3.Size(m)
  12354. }
  12355. func (m *RushRankTop3) XXX_DiscardUnknown() {
  12356. xxx_messageInfo_RushRankTop3.DiscardUnknown(m)
  12357. }
  12358. var xxx_messageInfo_RushRankTop3 proto.InternalMessageInfo
  12359. func (m *RushRankTop3) GetName() string {
  12360. if m != nil {
  12361. return m.Name
  12362. }
  12363. return ""
  12364. }
  12365. func (m *RushRankTop3) GetData() int32 {
  12366. if m != nil {
  12367. return m.Data
  12368. }
  12369. return 0
  12370. }
  12371. func (m *RushRankTop3) GetRank() int32 {
  12372. if m != nil {
  12373. return m.Rank
  12374. }
  12375. return 0
  12376. }
  12377. type RushActivityData struct {
  12378. RushType int32 `protobuf:"varint,1,opt,name=rush_type,json=rushType,proto3" json:"rush_type,omitempty"`
  12379. InRush bool `protobuf:"varint,2,opt,name=in_rush,json=inRush,proto3" json:"in_rush,omitempty"`
  12380. NextRush uint64 `protobuf:"varint,3,opt,name=next_rush,json=nextRush,proto3" json:"next_rush,omitempty"`
  12381. Stage int32 `protobuf:"varint,4,opt,name=stage,proto3" json:"stage,omitempty"`
  12382. StageEnd uint64 `protobuf:"varint,5,opt,name=stage_end,json=stageEnd,proto3" json:"stage_end,omitempty"`
  12383. RushCount int32 `protobuf:"varint,6,opt,name=rush_count,json=rushCount,proto3" json:"rush_count,omitempty"`
  12384. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  12385. XXX_unrecognized []byte `json:"-"`
  12386. XXX_sizecache int32 `json:"-"`
  12387. }
  12388. func (m *RushActivityData) Reset() { *m = RushActivityData{} }
  12389. func (m *RushActivityData) String() string { return proto.CompactTextString(m) }
  12390. func (*RushActivityData) ProtoMessage() {}
  12391. func (*RushActivityData) Descriptor() ([]byte, []int) {
  12392. return fileDescriptor_116e343673f7ffaf, []int{207}
  12393. }
  12394. func (m *RushActivityData) XXX_Unmarshal(b []byte) error {
  12395. return xxx_messageInfo_RushActivityData.Unmarshal(m, b)
  12396. }
  12397. func (m *RushActivityData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  12398. return xxx_messageInfo_RushActivityData.Marshal(b, m, deterministic)
  12399. }
  12400. func (m *RushActivityData) XXX_Merge(src proto.Message) {
  12401. xxx_messageInfo_RushActivityData.Merge(m, src)
  12402. }
  12403. func (m *RushActivityData) XXX_Size() int {
  12404. return xxx_messageInfo_RushActivityData.Size(m)
  12405. }
  12406. func (m *RushActivityData) XXX_DiscardUnknown() {
  12407. xxx_messageInfo_RushActivityData.DiscardUnknown(m)
  12408. }
  12409. var xxx_messageInfo_RushActivityData proto.InternalMessageInfo
  12410. func (m *RushActivityData) GetRushType() int32 {
  12411. if m != nil {
  12412. return m.RushType
  12413. }
  12414. return 0
  12415. }
  12416. func (m *RushActivityData) GetInRush() bool {
  12417. if m != nil {
  12418. return m.InRush
  12419. }
  12420. return false
  12421. }
  12422. func (m *RushActivityData) GetNextRush() uint64 {
  12423. if m != nil {
  12424. return m.NextRush
  12425. }
  12426. return 0
  12427. }
  12428. func (m *RushActivityData) GetStage() int32 {
  12429. if m != nil {
  12430. return m.Stage
  12431. }
  12432. return 0
  12433. }
  12434. func (m *RushActivityData) GetStageEnd() uint64 {
  12435. if m != nil {
  12436. return m.StageEnd
  12437. }
  12438. return 0
  12439. }
  12440. func (m *RushActivityData) GetRushCount() int32 {
  12441. if m != nil {
  12442. return m.RushCount
  12443. }
  12444. return 0
  12445. }
  12446. // //////////////////////百人道场
  12447. // type
  12448. // =1占领空白领地
  12449. // =2自身击败机器人守卫占领领地的信息
  12450. // =3自身试图占领他人领地的战斗信息
  12451. // =4他人试图占领我方领地的战斗信息
  12452. // =5自身占领领地达到x小时时显示为
  12453. type DaoChang100Log struct {
  12454. Type int32 `protobuf:"varint,1,opt,name=type,proto3" json:"type,omitempty"`
  12455. RecordTime uint64 `protobuf:"varint,2,opt,name=record_time,json=recordTime,proto3" json:"record_time,omitempty"`
  12456. State bool `protobuf:"varint,3,opt,name=state,proto3" json:"state,omitempty"`
  12457. PosIdx int32 `protobuf:"varint,4,opt,name=pos_idx,json=posIdx,proto3" json:"pos_idx,omitempty"`
  12458. TargetPlayerName string `protobuf:"bytes,5,opt,name=target_player_name,json=targetPlayerName,proto3" json:"target_player_name,omitempty"`
  12459. TargetGuildName string `protobuf:"bytes,6,opt,name=target_guild_name,json=targetGuildName,proto3" json:"target_guild_name,omitempty"`
  12460. TargetPlayerUid uint64 `protobuf:"varint,7,opt,name=target_player_uid,json=targetPlayerUid,proto3" json:"target_player_uid,omitempty"`
  12461. RewardTime uint32 `protobuf:"varint,8,opt,name=reward_time,json=rewardTime,proto3" json:"reward_time,omitempty"`
  12462. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  12463. XXX_unrecognized []byte `json:"-"`
  12464. XXX_sizecache int32 `json:"-"`
  12465. }
  12466. func (m *DaoChang100Log) Reset() { *m = DaoChang100Log{} }
  12467. func (m *DaoChang100Log) String() string { return proto.CompactTextString(m) }
  12468. func (*DaoChang100Log) ProtoMessage() {}
  12469. func (*DaoChang100Log) Descriptor() ([]byte, []int) {
  12470. return fileDescriptor_116e343673f7ffaf, []int{208}
  12471. }
  12472. func (m *DaoChang100Log) XXX_Unmarshal(b []byte) error {
  12473. return xxx_messageInfo_DaoChang100Log.Unmarshal(m, b)
  12474. }
  12475. func (m *DaoChang100Log) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  12476. return xxx_messageInfo_DaoChang100Log.Marshal(b, m, deterministic)
  12477. }
  12478. func (m *DaoChang100Log) XXX_Merge(src proto.Message) {
  12479. xxx_messageInfo_DaoChang100Log.Merge(m, src)
  12480. }
  12481. func (m *DaoChang100Log) XXX_Size() int {
  12482. return xxx_messageInfo_DaoChang100Log.Size(m)
  12483. }
  12484. func (m *DaoChang100Log) XXX_DiscardUnknown() {
  12485. xxx_messageInfo_DaoChang100Log.DiscardUnknown(m)
  12486. }
  12487. var xxx_messageInfo_DaoChang100Log proto.InternalMessageInfo
  12488. func (m *DaoChang100Log) GetType() int32 {
  12489. if m != nil {
  12490. return m.Type
  12491. }
  12492. return 0
  12493. }
  12494. func (m *DaoChang100Log) GetRecordTime() uint64 {
  12495. if m != nil {
  12496. return m.RecordTime
  12497. }
  12498. return 0
  12499. }
  12500. func (m *DaoChang100Log) GetState() bool {
  12501. if m != nil {
  12502. return m.State
  12503. }
  12504. return false
  12505. }
  12506. func (m *DaoChang100Log) GetPosIdx() int32 {
  12507. if m != nil {
  12508. return m.PosIdx
  12509. }
  12510. return 0
  12511. }
  12512. func (m *DaoChang100Log) GetTargetPlayerName() string {
  12513. if m != nil {
  12514. return m.TargetPlayerName
  12515. }
  12516. return ""
  12517. }
  12518. func (m *DaoChang100Log) GetTargetGuildName() string {
  12519. if m != nil {
  12520. return m.TargetGuildName
  12521. }
  12522. return ""
  12523. }
  12524. func (m *DaoChang100Log) GetTargetPlayerUid() uint64 {
  12525. if m != nil {
  12526. return m.TargetPlayerUid
  12527. }
  12528. return 0
  12529. }
  12530. func (m *DaoChang100Log) GetRewardTime() uint32 {
  12531. if m != nil {
  12532. return m.RewardTime
  12533. }
  12534. return 0
  12535. }
  12536. // 占位奖励处理(玩家对应数据)
  12537. type DaoChang100PosRewardData struct {
  12538. PosIdx int32 `protobuf:"varint,1,opt,name=pos_idx,json=posIdx,proto3" json:"pos_idx,omitempty"`
  12539. RewardStartTime uint64 `protobuf:"varint,2,opt,name=reward_start_time,json=rewardStartTime,proto3" json:"reward_start_time,omitempty"`
  12540. RewardEndTime uint64 `protobuf:"varint,3,opt,name=reward_end_time,json=rewardEndTime,proto3" json:"reward_end_time,omitempty"`
  12541. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  12542. XXX_unrecognized []byte `json:"-"`
  12543. XXX_sizecache int32 `json:"-"`
  12544. }
  12545. func (m *DaoChang100PosRewardData) Reset() { *m = DaoChang100PosRewardData{} }
  12546. func (m *DaoChang100PosRewardData) String() string { return proto.CompactTextString(m) }
  12547. func (*DaoChang100PosRewardData) ProtoMessage() {}
  12548. func (*DaoChang100PosRewardData) Descriptor() ([]byte, []int) {
  12549. return fileDescriptor_116e343673f7ffaf, []int{209}
  12550. }
  12551. func (m *DaoChang100PosRewardData) XXX_Unmarshal(b []byte) error {
  12552. return xxx_messageInfo_DaoChang100PosRewardData.Unmarshal(m, b)
  12553. }
  12554. func (m *DaoChang100PosRewardData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  12555. return xxx_messageInfo_DaoChang100PosRewardData.Marshal(b, m, deterministic)
  12556. }
  12557. func (m *DaoChang100PosRewardData) XXX_Merge(src proto.Message) {
  12558. xxx_messageInfo_DaoChang100PosRewardData.Merge(m, src)
  12559. }
  12560. func (m *DaoChang100PosRewardData) XXX_Size() int {
  12561. return xxx_messageInfo_DaoChang100PosRewardData.Size(m)
  12562. }
  12563. func (m *DaoChang100PosRewardData) XXX_DiscardUnknown() {
  12564. xxx_messageInfo_DaoChang100PosRewardData.DiscardUnknown(m)
  12565. }
  12566. var xxx_messageInfo_DaoChang100PosRewardData proto.InternalMessageInfo
  12567. func (m *DaoChang100PosRewardData) GetPosIdx() int32 {
  12568. if m != nil {
  12569. return m.PosIdx
  12570. }
  12571. return 0
  12572. }
  12573. func (m *DaoChang100PosRewardData) GetRewardStartTime() uint64 {
  12574. if m != nil {
  12575. return m.RewardStartTime
  12576. }
  12577. return 0
  12578. }
  12579. func (m *DaoChang100PosRewardData) GetRewardEndTime() uint64 {
  12580. if m != nil {
  12581. return m.RewardEndTime
  12582. }
  12583. return 0
  12584. }
  12585. // 占位信息
  12586. type DaoChang100PosIdxData struct {
  12587. PosIdx int32 `protobuf:"varint,1,opt,name=pos_idx,json=posIdx,proto3" json:"pos_idx,omitempty"`
  12588. OwnerStartTime uint64 `protobuf:"varint,2,opt,name=owner_start_time,json=ownerStartTime,proto3" json:"owner_start_time,omitempty"`
  12589. OwnerEndTime uint64 `protobuf:"varint,3,opt,name=owner_end_time,json=ownerEndTime,proto3" json:"owner_end_time,omitempty"`
  12590. OwnerProtectEndTime uint64 `protobuf:"varint,4,opt,name=owner_protect_end_time,json=ownerProtectEndTime,proto3" json:"owner_protect_end_time,omitempty"`
  12591. OwnerBrief *CommonPlayerBriefInfo `protobuf:"bytes,5,opt,name=owner_brief,json=ownerBrief,proto3" json:"owner_brief,omitempty"`
  12592. OwnerRobotId int32 `protobuf:"varint,6,opt,name=owner_robot_id,json=ownerRobotId,proto3" json:"owner_robot_id,omitempty"`
  12593. FightEndTime uint64 `protobuf:"varint,7,opt,name=fight_end_time,json=fightEndTime,proto3" json:"fight_end_time,omitempty"`
  12594. GuildId uint64 `protobuf:"varint,8,opt,name=guild_id,json=guildId,proto3" json:"guild_id,omitempty"`
  12595. GuildName string `protobuf:"bytes,9,opt,name=guild_name,json=guildName,proto3" json:"guild_name,omitempty"`
  12596. RefreshTime uint64 `protobuf:"varint,10,opt,name=refresh_time,json=refreshTime,proto3" json:"refresh_time,omitempty"`
  12597. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  12598. XXX_unrecognized []byte `json:"-"`
  12599. XXX_sizecache int32 `json:"-"`
  12600. }
  12601. func (m *DaoChang100PosIdxData) Reset() { *m = DaoChang100PosIdxData{} }
  12602. func (m *DaoChang100PosIdxData) String() string { return proto.CompactTextString(m) }
  12603. func (*DaoChang100PosIdxData) ProtoMessage() {}
  12604. func (*DaoChang100PosIdxData) Descriptor() ([]byte, []int) {
  12605. return fileDescriptor_116e343673f7ffaf, []int{210}
  12606. }
  12607. func (m *DaoChang100PosIdxData) XXX_Unmarshal(b []byte) error {
  12608. return xxx_messageInfo_DaoChang100PosIdxData.Unmarshal(m, b)
  12609. }
  12610. func (m *DaoChang100PosIdxData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  12611. return xxx_messageInfo_DaoChang100PosIdxData.Marshal(b, m, deterministic)
  12612. }
  12613. func (m *DaoChang100PosIdxData) XXX_Merge(src proto.Message) {
  12614. xxx_messageInfo_DaoChang100PosIdxData.Merge(m, src)
  12615. }
  12616. func (m *DaoChang100PosIdxData) XXX_Size() int {
  12617. return xxx_messageInfo_DaoChang100PosIdxData.Size(m)
  12618. }
  12619. func (m *DaoChang100PosIdxData) XXX_DiscardUnknown() {
  12620. xxx_messageInfo_DaoChang100PosIdxData.DiscardUnknown(m)
  12621. }
  12622. var xxx_messageInfo_DaoChang100PosIdxData proto.InternalMessageInfo
  12623. func (m *DaoChang100PosIdxData) GetPosIdx() int32 {
  12624. if m != nil {
  12625. return m.PosIdx
  12626. }
  12627. return 0
  12628. }
  12629. func (m *DaoChang100PosIdxData) GetOwnerStartTime() uint64 {
  12630. if m != nil {
  12631. return m.OwnerStartTime
  12632. }
  12633. return 0
  12634. }
  12635. func (m *DaoChang100PosIdxData) GetOwnerEndTime() uint64 {
  12636. if m != nil {
  12637. return m.OwnerEndTime
  12638. }
  12639. return 0
  12640. }
  12641. func (m *DaoChang100PosIdxData) GetOwnerProtectEndTime() uint64 {
  12642. if m != nil {
  12643. return m.OwnerProtectEndTime
  12644. }
  12645. return 0
  12646. }
  12647. func (m *DaoChang100PosIdxData) GetOwnerBrief() *CommonPlayerBriefInfo {
  12648. if m != nil {
  12649. return m.OwnerBrief
  12650. }
  12651. return nil
  12652. }
  12653. func (m *DaoChang100PosIdxData) GetOwnerRobotId() int32 {
  12654. if m != nil {
  12655. return m.OwnerRobotId
  12656. }
  12657. return 0
  12658. }
  12659. func (m *DaoChang100PosIdxData) GetFightEndTime() uint64 {
  12660. if m != nil {
  12661. return m.FightEndTime
  12662. }
  12663. return 0
  12664. }
  12665. func (m *DaoChang100PosIdxData) GetGuildId() uint64 {
  12666. if m != nil {
  12667. return m.GuildId
  12668. }
  12669. return 0
  12670. }
  12671. func (m *DaoChang100PosIdxData) GetGuildName() string {
  12672. if m != nil {
  12673. return m.GuildName
  12674. }
  12675. return ""
  12676. }
  12677. func (m *DaoChang100PosIdxData) GetRefreshTime() uint64 {
  12678. if m != nil {
  12679. return m.RefreshTime
  12680. }
  12681. return 0
  12682. }
  12683. type WheelRewardItemInfo struct {
  12684. ItemIdx int32 `protobuf:"varint,1,opt,name=item_idx,json=itemIdx,proto3" json:"item_idx,omitempty"`
  12685. ItemId int32 `protobuf:"varint,2,opt,name=item_id,json=itemId,proto3" json:"item_id,omitempty"`
  12686. ItemNum int32 `protobuf:"varint,3,opt,name=item_num,json=itemNum,proto3" json:"item_num,omitempty"`
  12687. RewardType int32 `protobuf:"varint,4,opt,name=reward_type,json=rewardType,proto3" json:"reward_type,omitempty"`
  12688. HasReward bool `protobuf:"varint,5,opt,name=has_reward,json=hasReward,proto3" json:"has_reward,omitempty"`
  12689. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  12690. XXX_unrecognized []byte `json:"-"`
  12691. XXX_sizecache int32 `json:"-"`
  12692. }
  12693. func (m *WheelRewardItemInfo) Reset() { *m = WheelRewardItemInfo{} }
  12694. func (m *WheelRewardItemInfo) String() string { return proto.CompactTextString(m) }
  12695. func (*WheelRewardItemInfo) ProtoMessage() {}
  12696. func (*WheelRewardItemInfo) Descriptor() ([]byte, []int) {
  12697. return fileDescriptor_116e343673f7ffaf, []int{211}
  12698. }
  12699. func (m *WheelRewardItemInfo) XXX_Unmarshal(b []byte) error {
  12700. return xxx_messageInfo_WheelRewardItemInfo.Unmarshal(m, b)
  12701. }
  12702. func (m *WheelRewardItemInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  12703. return xxx_messageInfo_WheelRewardItemInfo.Marshal(b, m, deterministic)
  12704. }
  12705. func (m *WheelRewardItemInfo) XXX_Merge(src proto.Message) {
  12706. xxx_messageInfo_WheelRewardItemInfo.Merge(m, src)
  12707. }
  12708. func (m *WheelRewardItemInfo) XXX_Size() int {
  12709. return xxx_messageInfo_WheelRewardItemInfo.Size(m)
  12710. }
  12711. func (m *WheelRewardItemInfo) XXX_DiscardUnknown() {
  12712. xxx_messageInfo_WheelRewardItemInfo.DiscardUnknown(m)
  12713. }
  12714. var xxx_messageInfo_WheelRewardItemInfo proto.InternalMessageInfo
  12715. func (m *WheelRewardItemInfo) GetItemIdx() int32 {
  12716. if m != nil {
  12717. return m.ItemIdx
  12718. }
  12719. return 0
  12720. }
  12721. func (m *WheelRewardItemInfo) GetItemId() int32 {
  12722. if m != nil {
  12723. return m.ItemId
  12724. }
  12725. return 0
  12726. }
  12727. func (m *WheelRewardItemInfo) GetItemNum() int32 {
  12728. if m != nil {
  12729. return m.ItemNum
  12730. }
  12731. return 0
  12732. }
  12733. func (m *WheelRewardItemInfo) GetRewardType() int32 {
  12734. if m != nil {
  12735. return m.RewardType
  12736. }
  12737. return 0
  12738. }
  12739. func (m *WheelRewardItemInfo) GetHasReward() bool {
  12740. if m != nil {
  12741. return m.HasReward
  12742. }
  12743. return false
  12744. }
  12745. type WheelLogData struct {
  12746. LogTime uint64 `protobuf:"varint,1,opt,name=log_time,json=logTime,proto3" json:"log_time,omitempty"`
  12747. NickName string `protobuf:"bytes,2,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
  12748. Uid uint64 `protobuf:"varint,3,opt,name=uid,proto3" json:"uid,omitempty"`
  12749. ItemList []*KeyValueType `protobuf:"bytes,4,rep,name=item_list,json=itemList,proto3" json:"item_list,omitempty"`
  12750. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  12751. XXX_unrecognized []byte `json:"-"`
  12752. XXX_sizecache int32 `json:"-"`
  12753. }
  12754. func (m *WheelLogData) Reset() { *m = WheelLogData{} }
  12755. func (m *WheelLogData) String() string { return proto.CompactTextString(m) }
  12756. func (*WheelLogData) ProtoMessage() {}
  12757. func (*WheelLogData) Descriptor() ([]byte, []int) {
  12758. return fileDescriptor_116e343673f7ffaf, []int{212}
  12759. }
  12760. func (m *WheelLogData) XXX_Unmarshal(b []byte) error {
  12761. return xxx_messageInfo_WheelLogData.Unmarshal(m, b)
  12762. }
  12763. func (m *WheelLogData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  12764. return xxx_messageInfo_WheelLogData.Marshal(b, m, deterministic)
  12765. }
  12766. func (m *WheelLogData) XXX_Merge(src proto.Message) {
  12767. xxx_messageInfo_WheelLogData.Merge(m, src)
  12768. }
  12769. func (m *WheelLogData) XXX_Size() int {
  12770. return xxx_messageInfo_WheelLogData.Size(m)
  12771. }
  12772. func (m *WheelLogData) XXX_DiscardUnknown() {
  12773. xxx_messageInfo_WheelLogData.DiscardUnknown(m)
  12774. }
  12775. var xxx_messageInfo_WheelLogData proto.InternalMessageInfo
  12776. func (m *WheelLogData) GetLogTime() uint64 {
  12777. if m != nil {
  12778. return m.LogTime
  12779. }
  12780. return 0
  12781. }
  12782. func (m *WheelLogData) GetNickName() string {
  12783. if m != nil {
  12784. return m.NickName
  12785. }
  12786. return ""
  12787. }
  12788. func (m *WheelLogData) GetUid() uint64 {
  12789. if m != nil {
  12790. return m.Uid
  12791. }
  12792. return 0
  12793. }
  12794. func (m *WheelLogData) GetItemList() []*KeyValueType {
  12795. if m != nil {
  12796. return m.ItemList
  12797. }
  12798. return nil
  12799. }
  12800. type RoleDaoChang100 struct {
  12801. ChallengeCount int32 `protobuf:"varint,1,opt,name=challenge_count,json=challengeCount,proto3" json:"challenge_count,omitempty"`
  12802. ChallengeBuyCount int32 `protobuf:"varint,2,opt,name=challenge_buy_count,json=challengeBuyCount,proto3" json:"challenge_buy_count,omitempty"`
  12803. BuyCount int32 `protobuf:"varint,3,opt,name=buy_count,json=buyCount,proto3" json:"buy_count,omitempty"`
  12804. BaseRewardTime uint64 `protobuf:"varint,4,opt,name=base_reward_time,json=baseRewardTime,proto3" json:"base_reward_time,omitempty"`
  12805. LogState bool `protobuf:"varint,5,opt,name=log_state,json=logState,proto3" json:"log_state,omitempty"`
  12806. LastAttackUid uint64 `protobuf:"varint,6,opt,name=last_attack_uid,json=lastAttackUid,proto3" json:"last_attack_uid,omitempty"`
  12807. TipsDesc string `protobuf:"bytes,7,opt,name=tips_desc,json=tipsDesc,proto3" json:"tips_desc,omitempty"`
  12808. // 道场转盘
  12809. WheelRewardItemList []*WheelRewardItemInfo `protobuf:"bytes,10,rep,name=wheel_reward_item_list,json=wheelRewardItemList,proto3" json:"wheel_reward_item_list,omitempty"`
  12810. WheelOpen bool `protobuf:"varint,11,opt,name=wheel_open,json=wheelOpen,proto3" json:"wheel_open,omitempty"`
  12811. WheelRefreshNum int32 `protobuf:"varint,12,opt,name=wheel_refresh_num,json=wheelRefreshNum,proto3" json:"wheel_refresh_num,omitempty"`
  12812. TemplateIdx int32 `protobuf:"varint,13,opt,name=template_idx,json=templateIdx,proto3" json:"template_idx,omitempty"`
  12813. WheelNum int32 `protobuf:"varint,14,opt,name=wheel_num,json=wheelNum,proto3" json:"wheel_num,omitempty"`
  12814. WheelIdx int32 `protobuf:"varint,15,opt,name=wheel_idx,json=wheelIdx,proto3" json:"wheel_idx,omitempty"`
  12815. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  12816. XXX_unrecognized []byte `json:"-"`
  12817. XXX_sizecache int32 `json:"-"`
  12818. }
  12819. func (m *RoleDaoChang100) Reset() { *m = RoleDaoChang100{} }
  12820. func (m *RoleDaoChang100) String() string { return proto.CompactTextString(m) }
  12821. func (*RoleDaoChang100) ProtoMessage() {}
  12822. func (*RoleDaoChang100) Descriptor() ([]byte, []int) {
  12823. return fileDescriptor_116e343673f7ffaf, []int{213}
  12824. }
  12825. func (m *RoleDaoChang100) XXX_Unmarshal(b []byte) error {
  12826. return xxx_messageInfo_RoleDaoChang100.Unmarshal(m, b)
  12827. }
  12828. func (m *RoleDaoChang100) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  12829. return xxx_messageInfo_RoleDaoChang100.Marshal(b, m, deterministic)
  12830. }
  12831. func (m *RoleDaoChang100) XXX_Merge(src proto.Message) {
  12832. xxx_messageInfo_RoleDaoChang100.Merge(m, src)
  12833. }
  12834. func (m *RoleDaoChang100) XXX_Size() int {
  12835. return xxx_messageInfo_RoleDaoChang100.Size(m)
  12836. }
  12837. func (m *RoleDaoChang100) XXX_DiscardUnknown() {
  12838. xxx_messageInfo_RoleDaoChang100.DiscardUnknown(m)
  12839. }
  12840. var xxx_messageInfo_RoleDaoChang100 proto.InternalMessageInfo
  12841. func (m *RoleDaoChang100) GetChallengeCount() int32 {
  12842. if m != nil {
  12843. return m.ChallengeCount
  12844. }
  12845. return 0
  12846. }
  12847. func (m *RoleDaoChang100) GetChallengeBuyCount() int32 {
  12848. if m != nil {
  12849. return m.ChallengeBuyCount
  12850. }
  12851. return 0
  12852. }
  12853. func (m *RoleDaoChang100) GetBuyCount() int32 {
  12854. if m != nil {
  12855. return m.BuyCount
  12856. }
  12857. return 0
  12858. }
  12859. func (m *RoleDaoChang100) GetBaseRewardTime() uint64 {
  12860. if m != nil {
  12861. return m.BaseRewardTime
  12862. }
  12863. return 0
  12864. }
  12865. func (m *RoleDaoChang100) GetLogState() bool {
  12866. if m != nil {
  12867. return m.LogState
  12868. }
  12869. return false
  12870. }
  12871. func (m *RoleDaoChang100) GetLastAttackUid() uint64 {
  12872. if m != nil {
  12873. return m.LastAttackUid
  12874. }
  12875. return 0
  12876. }
  12877. func (m *RoleDaoChang100) GetTipsDesc() string {
  12878. if m != nil {
  12879. return m.TipsDesc
  12880. }
  12881. return ""
  12882. }
  12883. func (m *RoleDaoChang100) GetWheelRewardItemList() []*WheelRewardItemInfo {
  12884. if m != nil {
  12885. return m.WheelRewardItemList
  12886. }
  12887. return nil
  12888. }
  12889. func (m *RoleDaoChang100) GetWheelOpen() bool {
  12890. if m != nil {
  12891. return m.WheelOpen
  12892. }
  12893. return false
  12894. }
  12895. func (m *RoleDaoChang100) GetWheelRefreshNum() int32 {
  12896. if m != nil {
  12897. return m.WheelRefreshNum
  12898. }
  12899. return 0
  12900. }
  12901. func (m *RoleDaoChang100) GetTemplateIdx() int32 {
  12902. if m != nil {
  12903. return m.TemplateIdx
  12904. }
  12905. return 0
  12906. }
  12907. func (m *RoleDaoChang100) GetWheelNum() int32 {
  12908. if m != nil {
  12909. return m.WheelNum
  12910. }
  12911. return 0
  12912. }
  12913. func (m *RoleDaoChang100) GetWheelIdx() int32 {
  12914. if m != nil {
  12915. return m.WheelIdx
  12916. }
  12917. return 0
  12918. }
  12919. type RoleCheatChat struct {
  12920. TargetId []uint64 `protobuf:"varint,1,rep,packed,name=target_id,json=targetId,proto3" json:"target_id,omitempty"`
  12921. ChatMsgCrc32 uint64 `protobuf:"varint,2,opt,name=chat_msg_crc32,json=chatMsgCrc32,proto3" json:"chat_msg_crc32,omitempty"`
  12922. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  12923. XXX_unrecognized []byte `json:"-"`
  12924. XXX_sizecache int32 `json:"-"`
  12925. }
  12926. func (m *RoleCheatChat) Reset() { *m = RoleCheatChat{} }
  12927. func (m *RoleCheatChat) String() string { return proto.CompactTextString(m) }
  12928. func (*RoleCheatChat) ProtoMessage() {}
  12929. func (*RoleCheatChat) Descriptor() ([]byte, []int) {
  12930. return fileDescriptor_116e343673f7ffaf, []int{214}
  12931. }
  12932. func (m *RoleCheatChat) XXX_Unmarshal(b []byte) error {
  12933. return xxx_messageInfo_RoleCheatChat.Unmarshal(m, b)
  12934. }
  12935. func (m *RoleCheatChat) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  12936. return xxx_messageInfo_RoleCheatChat.Marshal(b, m, deterministic)
  12937. }
  12938. func (m *RoleCheatChat) XXX_Merge(src proto.Message) {
  12939. xxx_messageInfo_RoleCheatChat.Merge(m, src)
  12940. }
  12941. func (m *RoleCheatChat) XXX_Size() int {
  12942. return xxx_messageInfo_RoleCheatChat.Size(m)
  12943. }
  12944. func (m *RoleCheatChat) XXX_DiscardUnknown() {
  12945. xxx_messageInfo_RoleCheatChat.DiscardUnknown(m)
  12946. }
  12947. var xxx_messageInfo_RoleCheatChat proto.InternalMessageInfo
  12948. func (m *RoleCheatChat) GetTargetId() []uint64 {
  12949. if m != nil {
  12950. return m.TargetId
  12951. }
  12952. return nil
  12953. }
  12954. func (m *RoleCheatChat) GetChatMsgCrc32() uint64 {
  12955. if m != nil {
  12956. return m.ChatMsgCrc32
  12957. }
  12958. return 0
  12959. }
  12960. type RoleStatistic struct {
  12961. CheatData []*KeyValueType `protobuf:"bytes,1,rep,name=cheat_data,json=cheatData,proto3" json:"cheat_data,omitempty"`
  12962. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  12963. XXX_unrecognized []byte `json:"-"`
  12964. XXX_sizecache int32 `json:"-"`
  12965. }
  12966. func (m *RoleStatistic) Reset() { *m = RoleStatistic{} }
  12967. func (m *RoleStatistic) String() string { return proto.CompactTextString(m) }
  12968. func (*RoleStatistic) ProtoMessage() {}
  12969. func (*RoleStatistic) Descriptor() ([]byte, []int) {
  12970. return fileDescriptor_116e343673f7ffaf, []int{215}
  12971. }
  12972. func (m *RoleStatistic) XXX_Unmarshal(b []byte) error {
  12973. return xxx_messageInfo_RoleStatistic.Unmarshal(m, b)
  12974. }
  12975. func (m *RoleStatistic) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  12976. return xxx_messageInfo_RoleStatistic.Marshal(b, m, deterministic)
  12977. }
  12978. func (m *RoleStatistic) XXX_Merge(src proto.Message) {
  12979. xxx_messageInfo_RoleStatistic.Merge(m, src)
  12980. }
  12981. func (m *RoleStatistic) XXX_Size() int {
  12982. return xxx_messageInfo_RoleStatistic.Size(m)
  12983. }
  12984. func (m *RoleStatistic) XXX_DiscardUnknown() {
  12985. xxx_messageInfo_RoleStatistic.DiscardUnknown(m)
  12986. }
  12987. var xxx_messageInfo_RoleStatistic proto.InternalMessageInfo
  12988. func (m *RoleStatistic) GetCheatData() []*KeyValueType {
  12989. if m != nil {
  12990. return m.CheatData
  12991. }
  12992. return nil
  12993. }
  12994. type KeepSake struct {
  12995. KeepSakeId int32 `protobuf:"varint,1,opt,name=keep_sake_id,json=keepSakeId,proto3" json:"keep_sake_id,omitempty"`
  12996. KeepSakeLevel int32 `protobuf:"varint,2,opt,name=keep_sake_level,json=keepSakeLevel,proto3" json:"keep_sake_level,omitempty"`
  12997. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  12998. XXX_unrecognized []byte `json:"-"`
  12999. XXX_sizecache int32 `json:"-"`
  13000. }
  13001. func (m *KeepSake) Reset() { *m = KeepSake{} }
  13002. func (m *KeepSake) String() string { return proto.CompactTextString(m) }
  13003. func (*KeepSake) ProtoMessage() {}
  13004. func (*KeepSake) Descriptor() ([]byte, []int) {
  13005. return fileDescriptor_116e343673f7ffaf, []int{216}
  13006. }
  13007. func (m *KeepSake) XXX_Unmarshal(b []byte) error {
  13008. return xxx_messageInfo_KeepSake.Unmarshal(m, b)
  13009. }
  13010. func (m *KeepSake) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13011. return xxx_messageInfo_KeepSake.Marshal(b, m, deterministic)
  13012. }
  13013. func (m *KeepSake) XXX_Merge(src proto.Message) {
  13014. xxx_messageInfo_KeepSake.Merge(m, src)
  13015. }
  13016. func (m *KeepSake) XXX_Size() int {
  13017. return xxx_messageInfo_KeepSake.Size(m)
  13018. }
  13019. func (m *KeepSake) XXX_DiscardUnknown() {
  13020. xxx_messageInfo_KeepSake.DiscardUnknown(m)
  13021. }
  13022. var xxx_messageInfo_KeepSake proto.InternalMessageInfo
  13023. func (m *KeepSake) GetKeepSakeId() int32 {
  13024. if m != nil {
  13025. return m.KeepSakeId
  13026. }
  13027. return 0
  13028. }
  13029. func (m *KeepSake) GetKeepSakeLevel() int32 {
  13030. if m != nil {
  13031. return m.KeepSakeLevel
  13032. }
  13033. return 0
  13034. }
  13035. type RoleKeepSake struct {
  13036. KeepSake []*KeepSake `protobuf:"bytes,1,rep,name=keep_sake,json=keepSake,proto3" json:"keep_sake,omitempty"`
  13037. Material []*KeyValueType `protobuf:"bytes,2,rep,name=material,proto3" json:"material,omitempty"`
  13038. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13039. XXX_unrecognized []byte `json:"-"`
  13040. XXX_sizecache int32 `json:"-"`
  13041. }
  13042. func (m *RoleKeepSake) Reset() { *m = RoleKeepSake{} }
  13043. func (m *RoleKeepSake) String() string { return proto.CompactTextString(m) }
  13044. func (*RoleKeepSake) ProtoMessage() {}
  13045. func (*RoleKeepSake) Descriptor() ([]byte, []int) {
  13046. return fileDescriptor_116e343673f7ffaf, []int{217}
  13047. }
  13048. func (m *RoleKeepSake) XXX_Unmarshal(b []byte) error {
  13049. return xxx_messageInfo_RoleKeepSake.Unmarshal(m, b)
  13050. }
  13051. func (m *RoleKeepSake) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13052. return xxx_messageInfo_RoleKeepSake.Marshal(b, m, deterministic)
  13053. }
  13054. func (m *RoleKeepSake) XXX_Merge(src proto.Message) {
  13055. xxx_messageInfo_RoleKeepSake.Merge(m, src)
  13056. }
  13057. func (m *RoleKeepSake) XXX_Size() int {
  13058. return xxx_messageInfo_RoleKeepSake.Size(m)
  13059. }
  13060. func (m *RoleKeepSake) XXX_DiscardUnknown() {
  13061. xxx_messageInfo_RoleKeepSake.DiscardUnknown(m)
  13062. }
  13063. var xxx_messageInfo_RoleKeepSake proto.InternalMessageInfo
  13064. func (m *RoleKeepSake) GetKeepSake() []*KeepSake {
  13065. if m != nil {
  13066. return m.KeepSake
  13067. }
  13068. return nil
  13069. }
  13070. func (m *RoleKeepSake) GetMaterial() []*KeyValueType {
  13071. if m != nil {
  13072. return m.Material
  13073. }
  13074. return nil
  13075. }
  13076. type KeepSakeCollection struct {
  13077. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  13078. LogTime int64 `protobuf:"varint,3,opt,name=log_time,json=logTime,proto3" json:"log_time,omitempty"`
  13079. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13080. XXX_unrecognized []byte `json:"-"`
  13081. XXX_sizecache int32 `json:"-"`
  13082. }
  13083. func (m *KeepSakeCollection) Reset() { *m = KeepSakeCollection{} }
  13084. func (m *KeepSakeCollection) String() string { return proto.CompactTextString(m) }
  13085. func (*KeepSakeCollection) ProtoMessage() {}
  13086. func (*KeepSakeCollection) Descriptor() ([]byte, []int) {
  13087. return fileDescriptor_116e343673f7ffaf, []int{218}
  13088. }
  13089. func (m *KeepSakeCollection) XXX_Unmarshal(b []byte) error {
  13090. return xxx_messageInfo_KeepSakeCollection.Unmarshal(m, b)
  13091. }
  13092. func (m *KeepSakeCollection) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13093. return xxx_messageInfo_KeepSakeCollection.Marshal(b, m, deterministic)
  13094. }
  13095. func (m *KeepSakeCollection) XXX_Merge(src proto.Message) {
  13096. xxx_messageInfo_KeepSakeCollection.Merge(m, src)
  13097. }
  13098. func (m *KeepSakeCollection) XXX_Size() int {
  13099. return xxx_messageInfo_KeepSakeCollection.Size(m)
  13100. }
  13101. func (m *KeepSakeCollection) XXX_DiscardUnknown() {
  13102. xxx_messageInfo_KeepSakeCollection.DiscardUnknown(m)
  13103. }
  13104. var xxx_messageInfo_KeepSakeCollection proto.InternalMessageInfo
  13105. func (m *KeepSakeCollection) GetUid() uint64 {
  13106. if m != nil {
  13107. return m.Uid
  13108. }
  13109. return 0
  13110. }
  13111. func (m *KeepSakeCollection) GetLogTime() int64 {
  13112. if m != nil {
  13113. return m.LogTime
  13114. }
  13115. return 0
  13116. }
  13117. // 宠物冲榜信息
  13118. type RushInfo struct {
  13119. PetConfigId int32 `protobuf:"varint,1,opt,name=pet_config_id,json=petConfigId,proto3" json:"pet_config_id,omitempty"`
  13120. PetScore int32 `protobuf:"varint,2,opt,name=pet_score,json=petScore,proto3" json:"pet_score,omitempty"`
  13121. PetLevel int32 `protobuf:"varint,3,opt,name=pet_level,json=petLevel,proto3" json:"pet_level,omitempty"`
  13122. TotalSkillLevel int32 `protobuf:"varint,4,opt,name=total_skill_level,json=totalSkillLevel,proto3" json:"total_skill_level,omitempty"`
  13123. QualityScore int32 `protobuf:"varint,5,opt,name=quality_score,json=qualityScore,proto3" json:"quality_score,omitempty"`
  13124. LevelScore int32 `protobuf:"varint,6,opt,name=level_score,json=levelScore,proto3" json:"level_score,omitempty"`
  13125. SkillScore int32 `protobuf:"varint,7,opt,name=skill_score,json=skillScore,proto3" json:"skill_score,omitempty"`
  13126. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13127. XXX_unrecognized []byte `json:"-"`
  13128. XXX_sizecache int32 `json:"-"`
  13129. }
  13130. func (m *RushInfo) Reset() { *m = RushInfo{} }
  13131. func (m *RushInfo) String() string { return proto.CompactTextString(m) }
  13132. func (*RushInfo) ProtoMessage() {}
  13133. func (*RushInfo) Descriptor() ([]byte, []int) {
  13134. return fileDescriptor_116e343673f7ffaf, []int{219}
  13135. }
  13136. func (m *RushInfo) XXX_Unmarshal(b []byte) error {
  13137. return xxx_messageInfo_RushInfo.Unmarshal(m, b)
  13138. }
  13139. func (m *RushInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13140. return xxx_messageInfo_RushInfo.Marshal(b, m, deterministic)
  13141. }
  13142. func (m *RushInfo) XXX_Merge(src proto.Message) {
  13143. xxx_messageInfo_RushInfo.Merge(m, src)
  13144. }
  13145. func (m *RushInfo) XXX_Size() int {
  13146. return xxx_messageInfo_RushInfo.Size(m)
  13147. }
  13148. func (m *RushInfo) XXX_DiscardUnknown() {
  13149. xxx_messageInfo_RushInfo.DiscardUnknown(m)
  13150. }
  13151. var xxx_messageInfo_RushInfo proto.InternalMessageInfo
  13152. func (m *RushInfo) GetPetConfigId() int32 {
  13153. if m != nil {
  13154. return m.PetConfigId
  13155. }
  13156. return 0
  13157. }
  13158. func (m *RushInfo) GetPetScore() int32 {
  13159. if m != nil {
  13160. return m.PetScore
  13161. }
  13162. return 0
  13163. }
  13164. func (m *RushInfo) GetPetLevel() int32 {
  13165. if m != nil {
  13166. return m.PetLevel
  13167. }
  13168. return 0
  13169. }
  13170. func (m *RushInfo) GetTotalSkillLevel() int32 {
  13171. if m != nil {
  13172. return m.TotalSkillLevel
  13173. }
  13174. return 0
  13175. }
  13176. func (m *RushInfo) GetQualityScore() int32 {
  13177. if m != nil {
  13178. return m.QualityScore
  13179. }
  13180. return 0
  13181. }
  13182. func (m *RushInfo) GetLevelScore() int32 {
  13183. if m != nil {
  13184. return m.LevelScore
  13185. }
  13186. return 0
  13187. }
  13188. func (m *RushInfo) GetSkillScore() int32 {
  13189. if m != nil {
  13190. return m.SkillScore
  13191. }
  13192. return 0
  13193. }
  13194. type RushPetInfo struct {
  13195. Info []*RushInfo `protobuf:"bytes,1,rep,name=info,proto3" json:"info,omitempty"`
  13196. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13197. XXX_unrecognized []byte `json:"-"`
  13198. XXX_sizecache int32 `json:"-"`
  13199. }
  13200. func (m *RushPetInfo) Reset() { *m = RushPetInfo{} }
  13201. func (m *RushPetInfo) String() string { return proto.CompactTextString(m) }
  13202. func (*RushPetInfo) ProtoMessage() {}
  13203. func (*RushPetInfo) Descriptor() ([]byte, []int) {
  13204. return fileDescriptor_116e343673f7ffaf, []int{220}
  13205. }
  13206. func (m *RushPetInfo) XXX_Unmarshal(b []byte) error {
  13207. return xxx_messageInfo_RushPetInfo.Unmarshal(m, b)
  13208. }
  13209. func (m *RushPetInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13210. return xxx_messageInfo_RushPetInfo.Marshal(b, m, deterministic)
  13211. }
  13212. func (m *RushPetInfo) XXX_Merge(src proto.Message) {
  13213. xxx_messageInfo_RushPetInfo.Merge(m, src)
  13214. }
  13215. func (m *RushPetInfo) XXX_Size() int {
  13216. return xxx_messageInfo_RushPetInfo.Size(m)
  13217. }
  13218. func (m *RushPetInfo) XXX_DiscardUnknown() {
  13219. xxx_messageInfo_RushPetInfo.DiscardUnknown(m)
  13220. }
  13221. var xxx_messageInfo_RushPetInfo proto.InternalMessageInfo
  13222. func (m *RushPetInfo) GetInfo() []*RushInfo {
  13223. if m != nil {
  13224. return m.Info
  13225. }
  13226. return nil
  13227. }
  13228. type RushPetData struct {
  13229. Rank int32 `protobuf:"varint,1,opt,name=rank,proto3" json:"rank,omitempty"`
  13230. TotalScore int32 `protobuf:"varint,2,opt,name=total_score,json=totalScore,proto3" json:"total_score,omitempty"`
  13231. Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
  13232. PetInfo *RushPetInfo `protobuf:"bytes,4,opt,name=pet_info,json=petInfo,proto3" json:"pet_info,omitempty"`
  13233. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13234. XXX_unrecognized []byte `json:"-"`
  13235. XXX_sizecache int32 `json:"-"`
  13236. }
  13237. func (m *RushPetData) Reset() { *m = RushPetData{} }
  13238. func (m *RushPetData) String() string { return proto.CompactTextString(m) }
  13239. func (*RushPetData) ProtoMessage() {}
  13240. func (*RushPetData) Descriptor() ([]byte, []int) {
  13241. return fileDescriptor_116e343673f7ffaf, []int{221}
  13242. }
  13243. func (m *RushPetData) XXX_Unmarshal(b []byte) error {
  13244. return xxx_messageInfo_RushPetData.Unmarshal(m, b)
  13245. }
  13246. func (m *RushPetData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13247. return xxx_messageInfo_RushPetData.Marshal(b, m, deterministic)
  13248. }
  13249. func (m *RushPetData) XXX_Merge(src proto.Message) {
  13250. xxx_messageInfo_RushPetData.Merge(m, src)
  13251. }
  13252. func (m *RushPetData) XXX_Size() int {
  13253. return xxx_messageInfo_RushPetData.Size(m)
  13254. }
  13255. func (m *RushPetData) XXX_DiscardUnknown() {
  13256. xxx_messageInfo_RushPetData.DiscardUnknown(m)
  13257. }
  13258. var xxx_messageInfo_RushPetData proto.InternalMessageInfo
  13259. func (m *RushPetData) GetRank() int32 {
  13260. if m != nil {
  13261. return m.Rank
  13262. }
  13263. return 0
  13264. }
  13265. func (m *RushPetData) GetTotalScore() int32 {
  13266. if m != nil {
  13267. return m.TotalScore
  13268. }
  13269. return 0
  13270. }
  13271. func (m *RushPetData) GetName() string {
  13272. if m != nil {
  13273. return m.Name
  13274. }
  13275. return ""
  13276. }
  13277. func (m *RushPetData) GetPetInfo() *RushPetInfo {
  13278. if m != nil {
  13279. return m.PetInfo
  13280. }
  13281. return nil
  13282. }
  13283. // //////////////////////跨服数据
  13284. type RoleCross struct {
  13285. Yuanhangtrial *RoleYuanHangTrial `protobuf:"bytes,1,opt,name=yuanhangtrial,proto3" json:"yuanhangtrial,omitempty"`
  13286. Crosstoptower *RoleCrossTopTower `protobuf:"bytes,2,opt,name=crosstoptower,proto3" json:"crosstoptower,omitempty"`
  13287. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13288. XXX_unrecognized []byte `json:"-"`
  13289. XXX_sizecache int32 `json:"-"`
  13290. }
  13291. func (m *RoleCross) Reset() { *m = RoleCross{} }
  13292. func (m *RoleCross) String() string { return proto.CompactTextString(m) }
  13293. func (*RoleCross) ProtoMessage() {}
  13294. func (*RoleCross) Descriptor() ([]byte, []int) {
  13295. return fileDescriptor_116e343673f7ffaf, []int{222}
  13296. }
  13297. func (m *RoleCross) XXX_Unmarshal(b []byte) error {
  13298. return xxx_messageInfo_RoleCross.Unmarshal(m, b)
  13299. }
  13300. func (m *RoleCross) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13301. return xxx_messageInfo_RoleCross.Marshal(b, m, deterministic)
  13302. }
  13303. func (m *RoleCross) XXX_Merge(src proto.Message) {
  13304. xxx_messageInfo_RoleCross.Merge(m, src)
  13305. }
  13306. func (m *RoleCross) XXX_Size() int {
  13307. return xxx_messageInfo_RoleCross.Size(m)
  13308. }
  13309. func (m *RoleCross) XXX_DiscardUnknown() {
  13310. xxx_messageInfo_RoleCross.DiscardUnknown(m)
  13311. }
  13312. var xxx_messageInfo_RoleCross proto.InternalMessageInfo
  13313. func (m *RoleCross) GetYuanhangtrial() *RoleYuanHangTrial {
  13314. if m != nil {
  13315. return m.Yuanhangtrial
  13316. }
  13317. return nil
  13318. }
  13319. func (m *RoleCross) GetCrosstoptower() *RoleCrossTopTower {
  13320. if m != nil {
  13321. return m.Crosstoptower
  13322. }
  13323. return nil
  13324. }
  13325. // //远航试炼
  13326. type RoleYuanHangTrial struct {
  13327. ChallengeNum int32 `protobuf:"varint,1,opt,name=challenge_num,json=challengeNum,proto3" json:"challenge_num,omitempty"`
  13328. TrialNum int32 `protobuf:"varint,2,opt,name=trial_num,json=trialNum,proto3" json:"trial_num,omitempty"`
  13329. RefreshTrialType int32 `protobuf:"varint,3,opt,name=refresh_trial_type,json=refreshTrialType,proto3" json:"refresh_trial_type,omitempty"`
  13330. TrialData *YuanHangTrialData `protobuf:"bytes,4,opt,name=trial_data,json=trialData,proto3" json:"trial_data,omitempty"`
  13331. LogList []*YuanHangTrialLogData `protobuf:"bytes,5,rep,name=log_list,json=logList,proto3" json:"log_list,omitempty"`
  13332. TrialScore int32 `protobuf:"varint,6,opt,name=trial_score,json=trialScore,proto3" json:"trial_score,omitempty"`
  13333. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13334. XXX_unrecognized []byte `json:"-"`
  13335. XXX_sizecache int32 `json:"-"`
  13336. }
  13337. func (m *RoleYuanHangTrial) Reset() { *m = RoleYuanHangTrial{} }
  13338. func (m *RoleYuanHangTrial) String() string { return proto.CompactTextString(m) }
  13339. func (*RoleYuanHangTrial) ProtoMessage() {}
  13340. func (*RoleYuanHangTrial) Descriptor() ([]byte, []int) {
  13341. return fileDescriptor_116e343673f7ffaf, []int{223}
  13342. }
  13343. func (m *RoleYuanHangTrial) XXX_Unmarshal(b []byte) error {
  13344. return xxx_messageInfo_RoleYuanHangTrial.Unmarshal(m, b)
  13345. }
  13346. func (m *RoleYuanHangTrial) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13347. return xxx_messageInfo_RoleYuanHangTrial.Marshal(b, m, deterministic)
  13348. }
  13349. func (m *RoleYuanHangTrial) XXX_Merge(src proto.Message) {
  13350. xxx_messageInfo_RoleYuanHangTrial.Merge(m, src)
  13351. }
  13352. func (m *RoleYuanHangTrial) XXX_Size() int {
  13353. return xxx_messageInfo_RoleYuanHangTrial.Size(m)
  13354. }
  13355. func (m *RoleYuanHangTrial) XXX_DiscardUnknown() {
  13356. xxx_messageInfo_RoleYuanHangTrial.DiscardUnknown(m)
  13357. }
  13358. var xxx_messageInfo_RoleYuanHangTrial proto.InternalMessageInfo
  13359. func (m *RoleYuanHangTrial) GetChallengeNum() int32 {
  13360. if m != nil {
  13361. return m.ChallengeNum
  13362. }
  13363. return 0
  13364. }
  13365. func (m *RoleYuanHangTrial) GetTrialNum() int32 {
  13366. if m != nil {
  13367. return m.TrialNum
  13368. }
  13369. return 0
  13370. }
  13371. func (m *RoleYuanHangTrial) GetRefreshTrialType() int32 {
  13372. if m != nil {
  13373. return m.RefreshTrialType
  13374. }
  13375. return 0
  13376. }
  13377. func (m *RoleYuanHangTrial) GetTrialData() *YuanHangTrialData {
  13378. if m != nil {
  13379. return m.TrialData
  13380. }
  13381. return nil
  13382. }
  13383. func (m *RoleYuanHangTrial) GetLogList() []*YuanHangTrialLogData {
  13384. if m != nil {
  13385. return m.LogList
  13386. }
  13387. return nil
  13388. }
  13389. func (m *RoleYuanHangTrial) GetTrialScore() int32 {
  13390. if m != nil {
  13391. return m.TrialScore
  13392. }
  13393. return 0
  13394. }
  13395. type YuanHangTrialData struct {
  13396. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  13397. Zone int32 `protobuf:"varint,2,opt,name=zone,proto3" json:"zone,omitempty"`
  13398. TrialType int32 `protobuf:"varint,3,opt,name=trial_type,json=trialType,proto3" json:"trial_type,omitempty"`
  13399. EndTimeStamp uint64 `protobuf:"varint,4,opt,name=end_time_stamp,json=endTimeStamp,proto3" json:"end_time_stamp,omitempty"`
  13400. RewardState bool `protobuf:"varint,5,opt,name=reward_state,json=rewardState,proto3" json:"reward_state,omitempty"`
  13401. DirtyStamp uint64 `protobuf:"varint,6,opt,name=dirty_stamp,json=dirtyStamp,proto3" json:"dirty_stamp,omitempty"`
  13402. BeChallengeNum int32 `protobuf:"varint,7,opt,name=be_challenge_num,json=beChallengeNum,proto3" json:"be_challenge_num,omitempty"`
  13403. BeChallengeUidList []uint64 `protobuf:"varint,8,rep,packed,name=be_challenge_uid_list,json=beChallengeUidList,proto3" json:"be_challenge_uid_list,omitempty"`
  13404. FromRealZone int32 `protobuf:"varint,9,opt,name=from_real_zone,json=fromRealZone,proto3" json:"from_real_zone,omitempty"`
  13405. DurationTime int32 `protobuf:"varint,10,opt,name=duration_time,json=durationTime,proto3" json:"duration_time,omitempty"`
  13406. LineNum int32 `protobuf:"varint,11,opt,name=line_num,json=lineNum,proto3" json:"line_num,omitempty"`
  13407. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13408. XXX_unrecognized []byte `json:"-"`
  13409. XXX_sizecache int32 `json:"-"`
  13410. }
  13411. func (m *YuanHangTrialData) Reset() { *m = YuanHangTrialData{} }
  13412. func (m *YuanHangTrialData) String() string { return proto.CompactTextString(m) }
  13413. func (*YuanHangTrialData) ProtoMessage() {}
  13414. func (*YuanHangTrialData) Descriptor() ([]byte, []int) {
  13415. return fileDescriptor_116e343673f7ffaf, []int{224}
  13416. }
  13417. func (m *YuanHangTrialData) XXX_Unmarshal(b []byte) error {
  13418. return xxx_messageInfo_YuanHangTrialData.Unmarshal(m, b)
  13419. }
  13420. func (m *YuanHangTrialData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13421. return xxx_messageInfo_YuanHangTrialData.Marshal(b, m, deterministic)
  13422. }
  13423. func (m *YuanHangTrialData) XXX_Merge(src proto.Message) {
  13424. xxx_messageInfo_YuanHangTrialData.Merge(m, src)
  13425. }
  13426. func (m *YuanHangTrialData) XXX_Size() int {
  13427. return xxx_messageInfo_YuanHangTrialData.Size(m)
  13428. }
  13429. func (m *YuanHangTrialData) XXX_DiscardUnknown() {
  13430. xxx_messageInfo_YuanHangTrialData.DiscardUnknown(m)
  13431. }
  13432. var xxx_messageInfo_YuanHangTrialData proto.InternalMessageInfo
  13433. func (m *YuanHangTrialData) GetUid() uint64 {
  13434. if m != nil {
  13435. return m.Uid
  13436. }
  13437. return 0
  13438. }
  13439. func (m *YuanHangTrialData) GetZone() int32 {
  13440. if m != nil {
  13441. return m.Zone
  13442. }
  13443. return 0
  13444. }
  13445. func (m *YuanHangTrialData) GetTrialType() int32 {
  13446. if m != nil {
  13447. return m.TrialType
  13448. }
  13449. return 0
  13450. }
  13451. func (m *YuanHangTrialData) GetEndTimeStamp() uint64 {
  13452. if m != nil {
  13453. return m.EndTimeStamp
  13454. }
  13455. return 0
  13456. }
  13457. func (m *YuanHangTrialData) GetRewardState() bool {
  13458. if m != nil {
  13459. return m.RewardState
  13460. }
  13461. return false
  13462. }
  13463. func (m *YuanHangTrialData) GetDirtyStamp() uint64 {
  13464. if m != nil {
  13465. return m.DirtyStamp
  13466. }
  13467. return 0
  13468. }
  13469. func (m *YuanHangTrialData) GetBeChallengeNum() int32 {
  13470. if m != nil {
  13471. return m.BeChallengeNum
  13472. }
  13473. return 0
  13474. }
  13475. func (m *YuanHangTrialData) GetBeChallengeUidList() []uint64 {
  13476. if m != nil {
  13477. return m.BeChallengeUidList
  13478. }
  13479. return nil
  13480. }
  13481. func (m *YuanHangTrialData) GetFromRealZone() int32 {
  13482. if m != nil {
  13483. return m.FromRealZone
  13484. }
  13485. return 0
  13486. }
  13487. func (m *YuanHangTrialData) GetDurationTime() int32 {
  13488. if m != nil {
  13489. return m.DurationTime
  13490. }
  13491. return 0
  13492. }
  13493. func (m *YuanHangTrialData) GetLineNum() int32 {
  13494. if m != nil {
  13495. return m.LineNum
  13496. }
  13497. return 0
  13498. }
  13499. // type
  13500. // 1 你被xxx挑战,失去xxx奖励
  13501. // 2 你对xx发起了抢夺,获得了xxx奖励
  13502. // 3 你对xx发起了抢夺,但是自己无法获取到奖励
  13503. type YuanHangTrialLogData struct {
  13504. Type int32 `protobuf:"varint,1,opt,name=type,proto3" json:"type,omitempty"`
  13505. RecordTime uint64 `protobuf:"varint,2,opt,name=record_time,json=recordTime,proto3" json:"record_time,omitempty"`
  13506. State bool `protobuf:"varint,3,opt,name=state,proto3" json:"state,omitempty"`
  13507. TargetPlayerName string `protobuf:"bytes,4,opt,name=target_player_name,json=targetPlayerName,proto3" json:"target_player_name,omitempty"`
  13508. TargetPlayerUid uint64 `protobuf:"varint,5,opt,name=target_player_uid,json=targetPlayerUid,proto3" json:"target_player_uid,omitempty"`
  13509. TargetPlayerZone int32 `protobuf:"varint,6,opt,name=target_player_zone,json=targetPlayerZone,proto3" json:"target_player_zone,omitempty"`
  13510. TrialType int32 `protobuf:"varint,7,opt,name=trial_type,json=trialType,proto3" json:"trial_type,omitempty"`
  13511. ItemList []*KeyValueType `protobuf:"bytes,8,rep,name=item_list,json=itemList,proto3" json:"item_list,omitempty"`
  13512. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13513. XXX_unrecognized []byte `json:"-"`
  13514. XXX_sizecache int32 `json:"-"`
  13515. }
  13516. func (m *YuanHangTrialLogData) Reset() { *m = YuanHangTrialLogData{} }
  13517. func (m *YuanHangTrialLogData) String() string { return proto.CompactTextString(m) }
  13518. func (*YuanHangTrialLogData) ProtoMessage() {}
  13519. func (*YuanHangTrialLogData) Descriptor() ([]byte, []int) {
  13520. return fileDescriptor_116e343673f7ffaf, []int{225}
  13521. }
  13522. func (m *YuanHangTrialLogData) XXX_Unmarshal(b []byte) error {
  13523. return xxx_messageInfo_YuanHangTrialLogData.Unmarshal(m, b)
  13524. }
  13525. func (m *YuanHangTrialLogData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13526. return xxx_messageInfo_YuanHangTrialLogData.Marshal(b, m, deterministic)
  13527. }
  13528. func (m *YuanHangTrialLogData) XXX_Merge(src proto.Message) {
  13529. xxx_messageInfo_YuanHangTrialLogData.Merge(m, src)
  13530. }
  13531. func (m *YuanHangTrialLogData) XXX_Size() int {
  13532. return xxx_messageInfo_YuanHangTrialLogData.Size(m)
  13533. }
  13534. func (m *YuanHangTrialLogData) XXX_DiscardUnknown() {
  13535. xxx_messageInfo_YuanHangTrialLogData.DiscardUnknown(m)
  13536. }
  13537. var xxx_messageInfo_YuanHangTrialLogData proto.InternalMessageInfo
  13538. func (m *YuanHangTrialLogData) GetType() int32 {
  13539. if m != nil {
  13540. return m.Type
  13541. }
  13542. return 0
  13543. }
  13544. func (m *YuanHangTrialLogData) GetRecordTime() uint64 {
  13545. if m != nil {
  13546. return m.RecordTime
  13547. }
  13548. return 0
  13549. }
  13550. func (m *YuanHangTrialLogData) GetState() bool {
  13551. if m != nil {
  13552. return m.State
  13553. }
  13554. return false
  13555. }
  13556. func (m *YuanHangTrialLogData) GetTargetPlayerName() string {
  13557. if m != nil {
  13558. return m.TargetPlayerName
  13559. }
  13560. return ""
  13561. }
  13562. func (m *YuanHangTrialLogData) GetTargetPlayerUid() uint64 {
  13563. if m != nil {
  13564. return m.TargetPlayerUid
  13565. }
  13566. return 0
  13567. }
  13568. func (m *YuanHangTrialLogData) GetTargetPlayerZone() int32 {
  13569. if m != nil {
  13570. return m.TargetPlayerZone
  13571. }
  13572. return 0
  13573. }
  13574. func (m *YuanHangTrialLogData) GetTrialType() int32 {
  13575. if m != nil {
  13576. return m.TrialType
  13577. }
  13578. return 0
  13579. }
  13580. func (m *YuanHangTrialLogData) GetItemList() []*KeyValueType {
  13581. if m != nil {
  13582. return m.ItemList
  13583. }
  13584. return nil
  13585. }
  13586. type CommonRankInfo struct {
  13587. Rank int32 `protobuf:"varint,1,opt,name=rank,proto3" json:"rank,omitempty"`
  13588. BriefInfo *CommonPlayerBriefInfo `protobuf:"bytes,2,opt,name=brief_info,json=briefInfo,proto3" json:"brief_info,omitempty"`
  13589. Score int32 `protobuf:"varint,3,opt,name=score,proto3" json:"score,omitempty"`
  13590. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13591. XXX_unrecognized []byte `json:"-"`
  13592. XXX_sizecache int32 `json:"-"`
  13593. }
  13594. func (m *CommonRankInfo) Reset() { *m = CommonRankInfo{} }
  13595. func (m *CommonRankInfo) String() string { return proto.CompactTextString(m) }
  13596. func (*CommonRankInfo) ProtoMessage() {}
  13597. func (*CommonRankInfo) Descriptor() ([]byte, []int) {
  13598. return fileDescriptor_116e343673f7ffaf, []int{226}
  13599. }
  13600. func (m *CommonRankInfo) XXX_Unmarshal(b []byte) error {
  13601. return xxx_messageInfo_CommonRankInfo.Unmarshal(m, b)
  13602. }
  13603. func (m *CommonRankInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13604. return xxx_messageInfo_CommonRankInfo.Marshal(b, m, deterministic)
  13605. }
  13606. func (m *CommonRankInfo) XXX_Merge(src proto.Message) {
  13607. xxx_messageInfo_CommonRankInfo.Merge(m, src)
  13608. }
  13609. func (m *CommonRankInfo) XXX_Size() int {
  13610. return xxx_messageInfo_CommonRankInfo.Size(m)
  13611. }
  13612. func (m *CommonRankInfo) XXX_DiscardUnknown() {
  13613. xxx_messageInfo_CommonRankInfo.DiscardUnknown(m)
  13614. }
  13615. var xxx_messageInfo_CommonRankInfo proto.InternalMessageInfo
  13616. func (m *CommonRankInfo) GetRank() int32 {
  13617. if m != nil {
  13618. return m.Rank
  13619. }
  13620. return 0
  13621. }
  13622. func (m *CommonRankInfo) GetBriefInfo() *CommonPlayerBriefInfo {
  13623. if m != nil {
  13624. return m.BriefInfo
  13625. }
  13626. return nil
  13627. }
  13628. func (m *CommonRankInfo) GetScore() int32 {
  13629. if m != nil {
  13630. return m.Score
  13631. }
  13632. return 0
  13633. }
  13634. // 巅峰爬塔
  13635. type RoleCrossTopTower struct {
  13636. ValidEndTime uint64 `protobuf:"varint,1,opt,name=valid_end_time,json=validEndTime,proto3" json:"valid_end_time,omitempty"`
  13637. FightList []*TopTowerFightRoleInfo `protobuf:"bytes,2,rep,name=fight_list,json=fightList,proto3" json:"fight_list,omitempty"`
  13638. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13639. XXX_unrecognized []byte `json:"-"`
  13640. XXX_sizecache int32 `json:"-"`
  13641. }
  13642. func (m *RoleCrossTopTower) Reset() { *m = RoleCrossTopTower{} }
  13643. func (m *RoleCrossTopTower) String() string { return proto.CompactTextString(m) }
  13644. func (*RoleCrossTopTower) ProtoMessage() {}
  13645. func (*RoleCrossTopTower) Descriptor() ([]byte, []int) {
  13646. return fileDescriptor_116e343673f7ffaf, []int{227}
  13647. }
  13648. func (m *RoleCrossTopTower) XXX_Unmarshal(b []byte) error {
  13649. return xxx_messageInfo_RoleCrossTopTower.Unmarshal(m, b)
  13650. }
  13651. func (m *RoleCrossTopTower) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13652. return xxx_messageInfo_RoleCrossTopTower.Marshal(b, m, deterministic)
  13653. }
  13654. func (m *RoleCrossTopTower) XXX_Merge(src proto.Message) {
  13655. xxx_messageInfo_RoleCrossTopTower.Merge(m, src)
  13656. }
  13657. func (m *RoleCrossTopTower) XXX_Size() int {
  13658. return xxx_messageInfo_RoleCrossTopTower.Size(m)
  13659. }
  13660. func (m *RoleCrossTopTower) XXX_DiscardUnknown() {
  13661. xxx_messageInfo_RoleCrossTopTower.DiscardUnknown(m)
  13662. }
  13663. var xxx_messageInfo_RoleCrossTopTower proto.InternalMessageInfo
  13664. func (m *RoleCrossTopTower) GetValidEndTime() uint64 {
  13665. if m != nil {
  13666. return m.ValidEndTime
  13667. }
  13668. return 0
  13669. }
  13670. func (m *RoleCrossTopTower) GetFightList() []*TopTowerFightRoleInfo {
  13671. if m != nil {
  13672. return m.FightList
  13673. }
  13674. return nil
  13675. }
  13676. type TopTowerFightRoleInfo struct {
  13677. Idx int32 `protobuf:"varint,1,opt,name=idx,proto3" json:"idx,omitempty"`
  13678. FightInfo *FightRoleInfo `protobuf:"bytes,2,opt,name=fight_info,json=fightInfo,proto3" json:"fight_info,omitempty"`
  13679. RewardState bool `protobuf:"varint,3,opt,name=reward_state,json=rewardState,proto3" json:"reward_state,omitempty"`
  13680. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13681. XXX_unrecognized []byte `json:"-"`
  13682. XXX_sizecache int32 `json:"-"`
  13683. }
  13684. func (m *TopTowerFightRoleInfo) Reset() { *m = TopTowerFightRoleInfo{} }
  13685. func (m *TopTowerFightRoleInfo) String() string { return proto.CompactTextString(m) }
  13686. func (*TopTowerFightRoleInfo) ProtoMessage() {}
  13687. func (*TopTowerFightRoleInfo) Descriptor() ([]byte, []int) {
  13688. return fileDescriptor_116e343673f7ffaf, []int{228}
  13689. }
  13690. func (m *TopTowerFightRoleInfo) XXX_Unmarshal(b []byte) error {
  13691. return xxx_messageInfo_TopTowerFightRoleInfo.Unmarshal(m, b)
  13692. }
  13693. func (m *TopTowerFightRoleInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13694. return xxx_messageInfo_TopTowerFightRoleInfo.Marshal(b, m, deterministic)
  13695. }
  13696. func (m *TopTowerFightRoleInfo) XXX_Merge(src proto.Message) {
  13697. xxx_messageInfo_TopTowerFightRoleInfo.Merge(m, src)
  13698. }
  13699. func (m *TopTowerFightRoleInfo) XXX_Size() int {
  13700. return xxx_messageInfo_TopTowerFightRoleInfo.Size(m)
  13701. }
  13702. func (m *TopTowerFightRoleInfo) XXX_DiscardUnknown() {
  13703. xxx_messageInfo_TopTowerFightRoleInfo.DiscardUnknown(m)
  13704. }
  13705. var xxx_messageInfo_TopTowerFightRoleInfo proto.InternalMessageInfo
  13706. func (m *TopTowerFightRoleInfo) GetIdx() int32 {
  13707. if m != nil {
  13708. return m.Idx
  13709. }
  13710. return 0
  13711. }
  13712. func (m *TopTowerFightRoleInfo) GetFightInfo() *FightRoleInfo {
  13713. if m != nil {
  13714. return m.FightInfo
  13715. }
  13716. return nil
  13717. }
  13718. func (m *TopTowerFightRoleInfo) GetRewardState() bool {
  13719. if m != nil {
  13720. return m.RewardState
  13721. }
  13722. return false
  13723. }
  13724. // AOI服务器线路状态
  13725. type ServerStateInfo struct {
  13726. Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  13727. Sid string `protobuf:"bytes,2,opt,name=sid,proto3" json:"sid,omitempty"`
  13728. StateList []*StateDetailDesc `protobuf:"bytes,3,rep,name=state_list,json=stateList,proto3" json:"state_list,omitempty"`
  13729. MaxLineNum int32 `protobuf:"varint,4,opt,name=max_line_num,json=maxLineNum,proto3" json:"max_line_num,omitempty"`
  13730. MaxSpaceEntityNum int32 `protobuf:"varint,5,opt,name=max_space_entity_num,json=maxSpaceEntityNum,proto3" json:"max_space_entity_num,omitempty"`
  13731. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13732. XXX_unrecognized []byte `json:"-"`
  13733. XXX_sizecache int32 `json:"-"`
  13734. }
  13735. func (m *ServerStateInfo) Reset() { *m = ServerStateInfo{} }
  13736. func (m *ServerStateInfo) String() string { return proto.CompactTextString(m) }
  13737. func (*ServerStateInfo) ProtoMessage() {}
  13738. func (*ServerStateInfo) Descriptor() ([]byte, []int) {
  13739. return fileDescriptor_116e343673f7ffaf, []int{229}
  13740. }
  13741. func (m *ServerStateInfo) XXX_Unmarshal(b []byte) error {
  13742. return xxx_messageInfo_ServerStateInfo.Unmarshal(m, b)
  13743. }
  13744. func (m *ServerStateInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13745. return xxx_messageInfo_ServerStateInfo.Marshal(b, m, deterministic)
  13746. }
  13747. func (m *ServerStateInfo) XXX_Merge(src proto.Message) {
  13748. xxx_messageInfo_ServerStateInfo.Merge(m, src)
  13749. }
  13750. func (m *ServerStateInfo) XXX_Size() int {
  13751. return xxx_messageInfo_ServerStateInfo.Size(m)
  13752. }
  13753. func (m *ServerStateInfo) XXX_DiscardUnknown() {
  13754. xxx_messageInfo_ServerStateInfo.DiscardUnknown(m)
  13755. }
  13756. var xxx_messageInfo_ServerStateInfo proto.InternalMessageInfo
  13757. func (m *ServerStateInfo) GetId() int32 {
  13758. if m != nil {
  13759. return m.Id
  13760. }
  13761. return 0
  13762. }
  13763. func (m *ServerStateInfo) GetSid() string {
  13764. if m != nil {
  13765. return m.Sid
  13766. }
  13767. return ""
  13768. }
  13769. func (m *ServerStateInfo) GetStateList() []*StateDetailDesc {
  13770. if m != nil {
  13771. return m.StateList
  13772. }
  13773. return nil
  13774. }
  13775. func (m *ServerStateInfo) GetMaxLineNum() int32 {
  13776. if m != nil {
  13777. return m.MaxLineNum
  13778. }
  13779. return 0
  13780. }
  13781. func (m *ServerStateInfo) GetMaxSpaceEntityNum() int32 {
  13782. if m != nil {
  13783. return m.MaxSpaceEntityNum
  13784. }
  13785. return 0
  13786. }
  13787. type StateDetailDesc struct {
  13788. Line int32 `protobuf:"varint,2,opt,name=line,proto3" json:"line,omitempty"`
  13789. CurNum int32 `protobuf:"varint,3,opt,name=cur_num,json=curNum,proto3" json:"cur_num,omitempty"`
  13790. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13791. XXX_unrecognized []byte `json:"-"`
  13792. XXX_sizecache int32 `json:"-"`
  13793. }
  13794. func (m *StateDetailDesc) Reset() { *m = StateDetailDesc{} }
  13795. func (m *StateDetailDesc) String() string { return proto.CompactTextString(m) }
  13796. func (*StateDetailDesc) ProtoMessage() {}
  13797. func (*StateDetailDesc) Descriptor() ([]byte, []int) {
  13798. return fileDescriptor_116e343673f7ffaf, []int{230}
  13799. }
  13800. func (m *StateDetailDesc) XXX_Unmarshal(b []byte) error {
  13801. return xxx_messageInfo_StateDetailDesc.Unmarshal(m, b)
  13802. }
  13803. func (m *StateDetailDesc) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13804. return xxx_messageInfo_StateDetailDesc.Marshal(b, m, deterministic)
  13805. }
  13806. func (m *StateDetailDesc) XXX_Merge(src proto.Message) {
  13807. xxx_messageInfo_StateDetailDesc.Merge(m, src)
  13808. }
  13809. func (m *StateDetailDesc) XXX_Size() int {
  13810. return xxx_messageInfo_StateDetailDesc.Size(m)
  13811. }
  13812. func (m *StateDetailDesc) XXX_DiscardUnknown() {
  13813. xxx_messageInfo_StateDetailDesc.DiscardUnknown(m)
  13814. }
  13815. var xxx_messageInfo_StateDetailDesc proto.InternalMessageInfo
  13816. func (m *StateDetailDesc) GetLine() int32 {
  13817. if m != nil {
  13818. return m.Line
  13819. }
  13820. return 0
  13821. }
  13822. func (m *StateDetailDesc) GetCurNum() int32 {
  13823. if m != nil {
  13824. return m.CurNum
  13825. }
  13826. return 0
  13827. }
  13828. type RoleRush struct {
  13829. RushSkill *RushSkill `protobuf:"bytes,1,opt,name=rush_skill,json=rushSkill,proto3" json:"rush_skill,omitempty"`
  13830. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13831. XXX_unrecognized []byte `json:"-"`
  13832. XXX_sizecache int32 `json:"-"`
  13833. }
  13834. func (m *RoleRush) Reset() { *m = RoleRush{} }
  13835. func (m *RoleRush) String() string { return proto.CompactTextString(m) }
  13836. func (*RoleRush) ProtoMessage() {}
  13837. func (*RoleRush) Descriptor() ([]byte, []int) {
  13838. return fileDescriptor_116e343673f7ffaf, []int{231}
  13839. }
  13840. func (m *RoleRush) XXX_Unmarshal(b []byte) error {
  13841. return xxx_messageInfo_RoleRush.Unmarshal(m, b)
  13842. }
  13843. func (m *RoleRush) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13844. return xxx_messageInfo_RoleRush.Marshal(b, m, deterministic)
  13845. }
  13846. func (m *RoleRush) XXX_Merge(src proto.Message) {
  13847. xxx_messageInfo_RoleRush.Merge(m, src)
  13848. }
  13849. func (m *RoleRush) XXX_Size() int {
  13850. return xxx_messageInfo_RoleRush.Size(m)
  13851. }
  13852. func (m *RoleRush) XXX_DiscardUnknown() {
  13853. xxx_messageInfo_RoleRush.DiscardUnknown(m)
  13854. }
  13855. var xxx_messageInfo_RoleRush proto.InternalMessageInfo
  13856. func (m *RoleRush) GetRushSkill() *RushSkill {
  13857. if m != nil {
  13858. return m.RushSkill
  13859. }
  13860. return nil
  13861. }
  13862. type RushSkill struct {
  13863. TotalScore uint32 `protobuf:"varint,1,opt,name=total_score,json=totalScore,proto3" json:"total_score,omitempty"`
  13864. RushRound int32 `protobuf:"varint,2,opt,name=rush_round,json=rushRound,proto3" json:"rush_round,omitempty"`
  13865. RewardRound int32 `protobuf:"varint,3,opt,name=reward_round,json=rewardRound,proto3" json:"reward_round,omitempty"`
  13866. ScoreRewardFlag int32 `protobuf:"varint,4,opt,name=score_reward_flag,json=scoreRewardFlag,proto3" json:"score_reward_flag,omitempty"`
  13867. RankReward int32 `protobuf:"varint,5,opt,name=rank_reward,json=rankReward,proto3" json:"rank_reward,omitempty"`
  13868. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13869. XXX_unrecognized []byte `json:"-"`
  13870. XXX_sizecache int32 `json:"-"`
  13871. }
  13872. func (m *RushSkill) Reset() { *m = RushSkill{} }
  13873. func (m *RushSkill) String() string { return proto.CompactTextString(m) }
  13874. func (*RushSkill) ProtoMessage() {}
  13875. func (*RushSkill) Descriptor() ([]byte, []int) {
  13876. return fileDescriptor_116e343673f7ffaf, []int{232}
  13877. }
  13878. func (m *RushSkill) XXX_Unmarshal(b []byte) error {
  13879. return xxx_messageInfo_RushSkill.Unmarshal(m, b)
  13880. }
  13881. func (m *RushSkill) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13882. return xxx_messageInfo_RushSkill.Marshal(b, m, deterministic)
  13883. }
  13884. func (m *RushSkill) XXX_Merge(src proto.Message) {
  13885. xxx_messageInfo_RushSkill.Merge(m, src)
  13886. }
  13887. func (m *RushSkill) XXX_Size() int {
  13888. return xxx_messageInfo_RushSkill.Size(m)
  13889. }
  13890. func (m *RushSkill) XXX_DiscardUnknown() {
  13891. xxx_messageInfo_RushSkill.DiscardUnknown(m)
  13892. }
  13893. var xxx_messageInfo_RushSkill proto.InternalMessageInfo
  13894. func (m *RushSkill) GetTotalScore() uint32 {
  13895. if m != nil {
  13896. return m.TotalScore
  13897. }
  13898. return 0
  13899. }
  13900. func (m *RushSkill) GetRushRound() int32 {
  13901. if m != nil {
  13902. return m.RushRound
  13903. }
  13904. return 0
  13905. }
  13906. func (m *RushSkill) GetRewardRound() int32 {
  13907. if m != nil {
  13908. return m.RewardRound
  13909. }
  13910. return 0
  13911. }
  13912. func (m *RushSkill) GetScoreRewardFlag() int32 {
  13913. if m != nil {
  13914. return m.ScoreRewardFlag
  13915. }
  13916. return 0
  13917. }
  13918. func (m *RushSkill) GetRankReward() int32 {
  13919. if m != nil {
  13920. return m.RankReward
  13921. }
  13922. return 0
  13923. }
  13924. type HeadData struct {
  13925. HeadId int32 `protobuf:"varint,1,opt,name=head_id,json=headId,proto3" json:"head_id,omitempty"`
  13926. State int32 `protobuf:"varint,2,opt,name=state,proto3" json:"state,omitempty"`
  13927. EndTime int64 `protobuf:"varint,3,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
  13928. TaskData *TaskData `protobuf:"bytes,4,opt,name=task_data,json=taskData,proto3" json:"task_data,omitempty"`
  13929. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13930. XXX_unrecognized []byte `json:"-"`
  13931. XXX_sizecache int32 `json:"-"`
  13932. }
  13933. func (m *HeadData) Reset() { *m = HeadData{} }
  13934. func (m *HeadData) String() string { return proto.CompactTextString(m) }
  13935. func (*HeadData) ProtoMessage() {}
  13936. func (*HeadData) Descriptor() ([]byte, []int) {
  13937. return fileDescriptor_116e343673f7ffaf, []int{233}
  13938. }
  13939. func (m *HeadData) XXX_Unmarshal(b []byte) error {
  13940. return xxx_messageInfo_HeadData.Unmarshal(m, b)
  13941. }
  13942. func (m *HeadData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13943. return xxx_messageInfo_HeadData.Marshal(b, m, deterministic)
  13944. }
  13945. func (m *HeadData) XXX_Merge(src proto.Message) {
  13946. xxx_messageInfo_HeadData.Merge(m, src)
  13947. }
  13948. func (m *HeadData) XXX_Size() int {
  13949. return xxx_messageInfo_HeadData.Size(m)
  13950. }
  13951. func (m *HeadData) XXX_DiscardUnknown() {
  13952. xxx_messageInfo_HeadData.DiscardUnknown(m)
  13953. }
  13954. var xxx_messageInfo_HeadData proto.InternalMessageInfo
  13955. func (m *HeadData) GetHeadId() int32 {
  13956. if m != nil {
  13957. return m.HeadId
  13958. }
  13959. return 0
  13960. }
  13961. func (m *HeadData) GetState() int32 {
  13962. if m != nil {
  13963. return m.State
  13964. }
  13965. return 0
  13966. }
  13967. func (m *HeadData) GetEndTime() int64 {
  13968. if m != nil {
  13969. return m.EndTime
  13970. }
  13971. return 0
  13972. }
  13973. func (m *HeadData) GetTaskData() *TaskData {
  13974. if m != nil {
  13975. return m.TaskData
  13976. }
  13977. return nil
  13978. }
  13979. type RoleHead struct {
  13980. Heads []*HeadData `protobuf:"bytes,1,rep,name=heads,proto3" json:"heads,omitempty"`
  13981. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13982. XXX_unrecognized []byte `json:"-"`
  13983. XXX_sizecache int32 `json:"-"`
  13984. }
  13985. func (m *RoleHead) Reset() { *m = RoleHead{} }
  13986. func (m *RoleHead) String() string { return proto.CompactTextString(m) }
  13987. func (*RoleHead) ProtoMessage() {}
  13988. func (*RoleHead) Descriptor() ([]byte, []int) {
  13989. return fileDescriptor_116e343673f7ffaf, []int{234}
  13990. }
  13991. func (m *RoleHead) XXX_Unmarshal(b []byte) error {
  13992. return xxx_messageInfo_RoleHead.Unmarshal(m, b)
  13993. }
  13994. func (m *RoleHead) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13995. return xxx_messageInfo_RoleHead.Marshal(b, m, deterministic)
  13996. }
  13997. func (m *RoleHead) XXX_Merge(src proto.Message) {
  13998. xxx_messageInfo_RoleHead.Merge(m, src)
  13999. }
  14000. func (m *RoleHead) XXX_Size() int {
  14001. return xxx_messageInfo_RoleHead.Size(m)
  14002. }
  14003. func (m *RoleHead) XXX_DiscardUnknown() {
  14004. xxx_messageInfo_RoleHead.DiscardUnknown(m)
  14005. }
  14006. var xxx_messageInfo_RoleHead proto.InternalMessageInfo
  14007. func (m *RoleHead) GetHeads() []*HeadData {
  14008. if m != nil {
  14009. return m.Heads
  14010. }
  14011. return nil
  14012. }
  14013. type RoleWish struct {
  14014. Slots []*WishSlot `protobuf:"bytes,1,rep,name=slots,proto3" json:"slots,omitempty"`
  14015. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  14016. XXX_unrecognized []byte `json:"-"`
  14017. XXX_sizecache int32 `json:"-"`
  14018. }
  14019. func (m *RoleWish) Reset() { *m = RoleWish{} }
  14020. func (m *RoleWish) String() string { return proto.CompactTextString(m) }
  14021. func (*RoleWish) ProtoMessage() {}
  14022. func (*RoleWish) Descriptor() ([]byte, []int) {
  14023. return fileDescriptor_116e343673f7ffaf, []int{235}
  14024. }
  14025. func (m *RoleWish) XXX_Unmarshal(b []byte) error {
  14026. return xxx_messageInfo_RoleWish.Unmarshal(m, b)
  14027. }
  14028. func (m *RoleWish) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  14029. return xxx_messageInfo_RoleWish.Marshal(b, m, deterministic)
  14030. }
  14031. func (m *RoleWish) XXX_Merge(src proto.Message) {
  14032. xxx_messageInfo_RoleWish.Merge(m, src)
  14033. }
  14034. func (m *RoleWish) XXX_Size() int {
  14035. return xxx_messageInfo_RoleWish.Size(m)
  14036. }
  14037. func (m *RoleWish) XXX_DiscardUnknown() {
  14038. xxx_messageInfo_RoleWish.DiscardUnknown(m)
  14039. }
  14040. var xxx_messageInfo_RoleWish proto.InternalMessageInfo
  14041. func (m *RoleWish) GetSlots() []*WishSlot {
  14042. if m != nil {
  14043. return m.Slots
  14044. }
  14045. return nil
  14046. }
  14047. // 许愿槽位信息
  14048. type WishSlot struct {
  14049. Item *KeyValueType `protobuf:"bytes,1,opt,name=item,proto3" json:"item,omitempty"`
  14050. SrcItem int32 `protobuf:"varint,2,opt,name=src_item,json=srcItem,proto3" json:"src_item,omitempty"`
  14051. EndTime int64 `protobuf:"varint,3,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
  14052. IsOpen bool `protobuf:"varint,4,opt,name=isOpen,proto3" json:"isOpen,omitempty"`
  14053. IsLucky bool `protobuf:"varint,5,opt,name=isLucky,proto3" json:"isLucky,omitempty"`
  14054. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  14055. XXX_unrecognized []byte `json:"-"`
  14056. XXX_sizecache int32 `json:"-"`
  14057. }
  14058. func (m *WishSlot) Reset() { *m = WishSlot{} }
  14059. func (m *WishSlot) String() string { return proto.CompactTextString(m) }
  14060. func (*WishSlot) ProtoMessage() {}
  14061. func (*WishSlot) Descriptor() ([]byte, []int) {
  14062. return fileDescriptor_116e343673f7ffaf, []int{236}
  14063. }
  14064. func (m *WishSlot) XXX_Unmarshal(b []byte) error {
  14065. return xxx_messageInfo_WishSlot.Unmarshal(m, b)
  14066. }
  14067. func (m *WishSlot) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  14068. return xxx_messageInfo_WishSlot.Marshal(b, m, deterministic)
  14069. }
  14070. func (m *WishSlot) XXX_Merge(src proto.Message) {
  14071. xxx_messageInfo_WishSlot.Merge(m, src)
  14072. }
  14073. func (m *WishSlot) XXX_Size() int {
  14074. return xxx_messageInfo_WishSlot.Size(m)
  14075. }
  14076. func (m *WishSlot) XXX_DiscardUnknown() {
  14077. xxx_messageInfo_WishSlot.DiscardUnknown(m)
  14078. }
  14079. var xxx_messageInfo_WishSlot proto.InternalMessageInfo
  14080. func (m *WishSlot) GetItem() *KeyValueType {
  14081. if m != nil {
  14082. return m.Item
  14083. }
  14084. return nil
  14085. }
  14086. func (m *WishSlot) GetSrcItem() int32 {
  14087. if m != nil {
  14088. return m.SrcItem
  14089. }
  14090. return 0
  14091. }
  14092. func (m *WishSlot) GetEndTime() int64 {
  14093. if m != nil {
  14094. return m.EndTime
  14095. }
  14096. return 0
  14097. }
  14098. func (m *WishSlot) GetIsOpen() bool {
  14099. if m != nil {
  14100. return m.IsOpen
  14101. }
  14102. return false
  14103. }
  14104. func (m *WishSlot) GetIsLucky() bool {
  14105. if m != nil {
  14106. return m.IsLucky
  14107. }
  14108. return false
  14109. }
  14110. // //////////////////////
  14111. // bt服务器功能结构
  14112. type RoleBT struct {
  14113. BoliData *BTBoliData `protobuf:"bytes,1,opt,name=boli_data,json=boliData,proto3" json:"boli_data,omitempty"`
  14114. BaseData *BTBaseData `protobuf:"bytes,2,opt,name=base_data,json=baseData,proto3" json:"base_data,omitempty"`
  14115. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  14116. XXX_unrecognized []byte `json:"-"`
  14117. XXX_sizecache int32 `json:"-"`
  14118. }
  14119. func (m *RoleBT) Reset() { *m = RoleBT{} }
  14120. func (m *RoleBT) String() string { return proto.CompactTextString(m) }
  14121. func (*RoleBT) ProtoMessage() {}
  14122. func (*RoleBT) Descriptor() ([]byte, []int) {
  14123. return fileDescriptor_116e343673f7ffaf, []int{237}
  14124. }
  14125. func (m *RoleBT) XXX_Unmarshal(b []byte) error {
  14126. return xxx_messageInfo_RoleBT.Unmarshal(m, b)
  14127. }
  14128. func (m *RoleBT) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  14129. return xxx_messageInfo_RoleBT.Marshal(b, m, deterministic)
  14130. }
  14131. func (m *RoleBT) XXX_Merge(src proto.Message) {
  14132. xxx_messageInfo_RoleBT.Merge(m, src)
  14133. }
  14134. func (m *RoleBT) XXX_Size() int {
  14135. return xxx_messageInfo_RoleBT.Size(m)
  14136. }
  14137. func (m *RoleBT) XXX_DiscardUnknown() {
  14138. xxx_messageInfo_RoleBT.DiscardUnknown(m)
  14139. }
  14140. var xxx_messageInfo_RoleBT proto.InternalMessageInfo
  14141. func (m *RoleBT) GetBoliData() *BTBoliData {
  14142. if m != nil {
  14143. return m.BoliData
  14144. }
  14145. return nil
  14146. }
  14147. func (m *RoleBT) GetBaseData() *BTBaseData {
  14148. if m != nil {
  14149. return m.BaseData
  14150. }
  14151. return nil
  14152. }
  14153. // bt波利商城
  14154. type BTBoliData struct {
  14155. Level int32 `protobuf:"varint,1,opt,name=level,proto3" json:"level,omitempty"`
  14156. DayRewardList []*KeyValueType `protobuf:"bytes,2,rep,name=day_reward_list,json=dayRewardList,proto3" json:"day_reward_list,omitempty"`
  14157. BuyInfoList []*BuyInfo `protobuf:"bytes,3,rep,name=buy_info_list,json=buyInfoList,proto3" json:"buy_info_list,omitempty"`
  14158. RewardTime uint64 `protobuf:"varint,4,opt,name=reward_time,json=rewardTime,proto3" json:"reward_time,omitempty"`
  14159. ShowTimeStamp uint64 `protobuf:"varint,5,opt,name=show_time_stamp,json=showTimeStamp,proto3" json:"show_time_stamp,omitempty"`
  14160. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  14161. XXX_unrecognized []byte `json:"-"`
  14162. XXX_sizecache int32 `json:"-"`
  14163. }
  14164. func (m *BTBoliData) Reset() { *m = BTBoliData{} }
  14165. func (m *BTBoliData) String() string { return proto.CompactTextString(m) }
  14166. func (*BTBoliData) ProtoMessage() {}
  14167. func (*BTBoliData) Descriptor() ([]byte, []int) {
  14168. return fileDescriptor_116e343673f7ffaf, []int{238}
  14169. }
  14170. func (m *BTBoliData) XXX_Unmarshal(b []byte) error {
  14171. return xxx_messageInfo_BTBoliData.Unmarshal(m, b)
  14172. }
  14173. func (m *BTBoliData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  14174. return xxx_messageInfo_BTBoliData.Marshal(b, m, deterministic)
  14175. }
  14176. func (m *BTBoliData) XXX_Merge(src proto.Message) {
  14177. xxx_messageInfo_BTBoliData.Merge(m, src)
  14178. }
  14179. func (m *BTBoliData) XXX_Size() int {
  14180. return xxx_messageInfo_BTBoliData.Size(m)
  14181. }
  14182. func (m *BTBoliData) XXX_DiscardUnknown() {
  14183. xxx_messageInfo_BTBoliData.DiscardUnknown(m)
  14184. }
  14185. var xxx_messageInfo_BTBoliData proto.InternalMessageInfo
  14186. func (m *BTBoliData) GetLevel() int32 {
  14187. if m != nil {
  14188. return m.Level
  14189. }
  14190. return 0
  14191. }
  14192. func (m *BTBoliData) GetDayRewardList() []*KeyValueType {
  14193. if m != nil {
  14194. return m.DayRewardList
  14195. }
  14196. return nil
  14197. }
  14198. func (m *BTBoliData) GetBuyInfoList() []*BuyInfo {
  14199. if m != nil {
  14200. return m.BuyInfoList
  14201. }
  14202. return nil
  14203. }
  14204. func (m *BTBoliData) GetRewardTime() uint64 {
  14205. if m != nil {
  14206. return m.RewardTime
  14207. }
  14208. return 0
  14209. }
  14210. func (m *BTBoliData) GetShowTimeStamp() uint64 {
  14211. if m != nil {
  14212. return m.ShowTimeStamp
  14213. }
  14214. return 0
  14215. }
  14216. // bt基础数据
  14217. type BTBaseData struct {
  14218. // bt超值首充
  14219. FirstRechargeTime uint64 `protobuf:"varint,1,opt,name=first_recharge_time,json=firstRechargeTime,proto3" json:"first_recharge_time,omitempty"`
  14220. FirstRechargeRewardState uint32 `protobuf:"varint,2,opt,name=first_recharge_reward_state,json=firstRechargeRewardState,proto3" json:"first_recharge_reward_state,omitempty"`
  14221. // bt百元大礼包
  14222. Recharge100Time uint64 `protobuf:"varint,3,opt,name=recharge100_time,json=recharge100Time,proto3" json:"recharge100_time,omitempty"`
  14223. Recharge100RewardDay int32 `protobuf:"varint,4,opt,name=recharge100_reward_day,json=recharge100RewardDay,proto3" json:"recharge100_reward_day,omitempty"`
  14224. Recharge100RewardState int32 `protobuf:"varint,5,opt,name=recharge100_reward_state,json=recharge100RewardState,proto3" json:"recharge100_reward_state,omitempty"`
  14225. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  14226. XXX_unrecognized []byte `json:"-"`
  14227. XXX_sizecache int32 `json:"-"`
  14228. }
  14229. func (m *BTBaseData) Reset() { *m = BTBaseData{} }
  14230. func (m *BTBaseData) String() string { return proto.CompactTextString(m) }
  14231. func (*BTBaseData) ProtoMessage() {}
  14232. func (*BTBaseData) Descriptor() ([]byte, []int) {
  14233. return fileDescriptor_116e343673f7ffaf, []int{239}
  14234. }
  14235. func (m *BTBaseData) XXX_Unmarshal(b []byte) error {
  14236. return xxx_messageInfo_BTBaseData.Unmarshal(m, b)
  14237. }
  14238. func (m *BTBaseData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  14239. return xxx_messageInfo_BTBaseData.Marshal(b, m, deterministic)
  14240. }
  14241. func (m *BTBaseData) XXX_Merge(src proto.Message) {
  14242. xxx_messageInfo_BTBaseData.Merge(m, src)
  14243. }
  14244. func (m *BTBaseData) XXX_Size() int {
  14245. return xxx_messageInfo_BTBaseData.Size(m)
  14246. }
  14247. func (m *BTBaseData) XXX_DiscardUnknown() {
  14248. xxx_messageInfo_BTBaseData.DiscardUnknown(m)
  14249. }
  14250. var xxx_messageInfo_BTBaseData proto.InternalMessageInfo
  14251. func (m *BTBaseData) GetFirstRechargeTime() uint64 {
  14252. if m != nil {
  14253. return m.FirstRechargeTime
  14254. }
  14255. return 0
  14256. }
  14257. func (m *BTBaseData) GetFirstRechargeRewardState() uint32 {
  14258. if m != nil {
  14259. return m.FirstRechargeRewardState
  14260. }
  14261. return 0
  14262. }
  14263. func (m *BTBaseData) GetRecharge100Time() uint64 {
  14264. if m != nil {
  14265. return m.Recharge100Time
  14266. }
  14267. return 0
  14268. }
  14269. func (m *BTBaseData) GetRecharge100RewardDay() int32 {
  14270. if m != nil {
  14271. return m.Recharge100RewardDay
  14272. }
  14273. return 0
  14274. }
  14275. func (m *BTBaseData) GetRecharge100RewardState() int32 {
  14276. if m != nil {
  14277. return m.Recharge100RewardState
  14278. }
  14279. return 0
  14280. }
  14281. type Role struct {
  14282. Id uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  14283. RoleBase *RoleBase `protobuf:"bytes,2,opt,name=role_base,json=roleBase,proto3" json:"role_base,omitempty"`
  14284. RoleHero *RoleHero `protobuf:"bytes,3,opt,name=role_hero,json=roleHero,proto3" json:"role_hero,omitempty"`
  14285. RoleBag *RoleBag `protobuf:"bytes,4,opt,name=role_bag,json=roleBag,proto3" json:"role_bag,omitempty"`
  14286. RoleEquip *RoleEquip `protobuf:"bytes,5,opt,name=role_equip,json=roleEquip,proto3" json:"role_equip,omitempty"`
  14287. RoleChip *RoleChip `protobuf:"bytes,6,opt,name=role_chip,json=roleChip,proto3" json:"role_chip,omitempty"`
  14288. RoleMap *RoleMap `protobuf:"bytes,7,opt,name=role_map,json=roleMap,proto3" json:"role_map,omitempty"`
  14289. RoleCard *RoleCard `protobuf:"bytes,9,opt,name=role_card,json=roleCard,proto3" json:"role_card,omitempty"`
  14290. RoleFashion *RoleFashion `protobuf:"bytes,10,opt,name=role_fashion,json=roleFashion,proto3" json:"role_fashion,omitempty"`
  14291. RoleBattle *RoleBattle `protobuf:"bytes,11,opt,name=role_battle,json=roleBattle,proto3" json:"role_battle,omitempty"`
  14292. RoleTask *RoleTask `protobuf:"bytes,12,opt,name=role_task,json=roleTask,proto3" json:"role_task,omitempty"`
  14293. RoleChat *RoleChat `protobuf:"bytes,13,opt,name=role_chat,json=roleChat,proto3" json:"role_chat,omitempty"`
  14294. RoleRed *RoleRed `protobuf:"bytes,14,opt,name=role_red,json=roleRed,proto3" json:"role_red,omitempty"`
  14295. RoleMail *RoleMail `protobuf:"bytes,15,opt,name=role_mail,json=roleMail,proto3" json:"role_mail,omitempty"`
  14296. RoleCompetition *RoleCompetition `protobuf:"bytes,16,opt,name=role_competition,json=roleCompetition,proto3" json:"role_competition,omitempty"`
  14297. RoleShop *RoleShop `protobuf:"bytes,17,opt,name=role_shop,json=roleShop,proto3" json:"role_shop,omitempty"`
  14298. RoleActivity *RoleActivity `protobuf:"bytes,18,opt,name=role_activity,json=roleActivity,proto3" json:"role_activity,omitempty"`
  14299. RoleTower *RoleTower `protobuf:"bytes,19,opt,name=role_tower,json=roleTower,proto3" json:"role_tower,omitempty"`
  14300. RoleGuild *RoleGuild `protobuf:"bytes,20,opt,name=role_guild,json=roleGuild,proto3" json:"role_guild,omitempty"`
  14301. RoleDraw *RoleDraw `protobuf:"bytes,21,opt,name=role_draw,json=roleDraw,proto3" json:"role_draw,omitempty"`
  14302. RoleRune *RoleRune `protobuf:"bytes,22,opt,name=role_rune,json=roleRune,proto3" json:"role_rune,omitempty"`
  14303. RoleDaochang100 *RoleDaoChang100 `protobuf:"bytes,23,opt,name=role_daochang100,json=roleDaochang100,proto3" json:"role_daochang100,omitempty"`
  14304. RoleStatistic *RoleStatistic `protobuf:"bytes,24,opt,name=role_statistic,json=roleStatistic,proto3" json:"role_statistic,omitempty"`
  14305. RoleKeepSake *RoleKeepSake `protobuf:"bytes,25,opt,name=role_keep_sake,json=roleKeepSake,proto3" json:"role_keep_sake,omitempty"`
  14306. RoleCross *RoleCross `protobuf:"bytes,26,opt,name=role_cross,json=roleCross,proto3" json:"role_cross,omitempty"`
  14307. RoleRush *RoleRush `protobuf:"bytes,27,opt,name=role_rush,json=roleRush,proto3" json:"role_rush,omitempty"`
  14308. RoleSkillEquip *RoleSkillEquip `protobuf:"bytes,28,opt,name=role_skill_equip,json=roleSkillEquip,proto3" json:"role_skill_equip,omitempty"`
  14309. RoleHead *RoleHead `protobuf:"bytes,29,opt,name=role_head,json=roleHead,proto3" json:"role_head,omitempty"`
  14310. RoleWish *RoleWish `protobuf:"bytes,30,opt,name=role_wish,json=roleWish,proto3" json:"role_wish,omitempty"`
  14311. RoleBt *RoleBT `protobuf:"bytes,31,opt,name=role_bt,json=roleBt,proto3" json:"role_bt,omitempty"`
  14312. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  14313. XXX_unrecognized []byte `json:"-"`
  14314. XXX_sizecache int32 `json:"-"`
  14315. }
  14316. func (m *Role) Reset() { *m = Role{} }
  14317. func (m *Role) String() string { return proto.CompactTextString(m) }
  14318. func (*Role) ProtoMessage() {}
  14319. func (*Role) Descriptor() ([]byte, []int) {
  14320. return fileDescriptor_116e343673f7ffaf, []int{240}
  14321. }
  14322. func (m *Role) XXX_Unmarshal(b []byte) error {
  14323. return xxx_messageInfo_Role.Unmarshal(m, b)
  14324. }
  14325. func (m *Role) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  14326. return xxx_messageInfo_Role.Marshal(b, m, deterministic)
  14327. }
  14328. func (m *Role) XXX_Merge(src proto.Message) {
  14329. xxx_messageInfo_Role.Merge(m, src)
  14330. }
  14331. func (m *Role) XXX_Size() int {
  14332. return xxx_messageInfo_Role.Size(m)
  14333. }
  14334. func (m *Role) XXX_DiscardUnknown() {
  14335. xxx_messageInfo_Role.DiscardUnknown(m)
  14336. }
  14337. var xxx_messageInfo_Role proto.InternalMessageInfo
  14338. func (m *Role) GetId() uint64 {
  14339. if m != nil {
  14340. return m.Id
  14341. }
  14342. return 0
  14343. }
  14344. func (m *Role) GetRoleBase() *RoleBase {
  14345. if m != nil {
  14346. return m.RoleBase
  14347. }
  14348. return nil
  14349. }
  14350. func (m *Role) GetRoleHero() *RoleHero {
  14351. if m != nil {
  14352. return m.RoleHero
  14353. }
  14354. return nil
  14355. }
  14356. func (m *Role) GetRoleBag() *RoleBag {
  14357. if m != nil {
  14358. return m.RoleBag
  14359. }
  14360. return nil
  14361. }
  14362. func (m *Role) GetRoleEquip() *RoleEquip {
  14363. if m != nil {
  14364. return m.RoleEquip
  14365. }
  14366. return nil
  14367. }
  14368. func (m *Role) GetRoleChip() *RoleChip {
  14369. if m != nil {
  14370. return m.RoleChip
  14371. }
  14372. return nil
  14373. }
  14374. func (m *Role) GetRoleMap() *RoleMap {
  14375. if m != nil {
  14376. return m.RoleMap
  14377. }
  14378. return nil
  14379. }
  14380. func (m *Role) GetRoleCard() *RoleCard {
  14381. if m != nil {
  14382. return m.RoleCard
  14383. }
  14384. return nil
  14385. }
  14386. func (m *Role) GetRoleFashion() *RoleFashion {
  14387. if m != nil {
  14388. return m.RoleFashion
  14389. }
  14390. return nil
  14391. }
  14392. func (m *Role) GetRoleBattle() *RoleBattle {
  14393. if m != nil {
  14394. return m.RoleBattle
  14395. }
  14396. return nil
  14397. }
  14398. func (m *Role) GetRoleTask() *RoleTask {
  14399. if m != nil {
  14400. return m.RoleTask
  14401. }
  14402. return nil
  14403. }
  14404. func (m *Role) GetRoleChat() *RoleChat {
  14405. if m != nil {
  14406. return m.RoleChat
  14407. }
  14408. return nil
  14409. }
  14410. func (m *Role) GetRoleRed() *RoleRed {
  14411. if m != nil {
  14412. return m.RoleRed
  14413. }
  14414. return nil
  14415. }
  14416. func (m *Role) GetRoleMail() *RoleMail {
  14417. if m != nil {
  14418. return m.RoleMail
  14419. }
  14420. return nil
  14421. }
  14422. func (m *Role) GetRoleCompetition() *RoleCompetition {
  14423. if m != nil {
  14424. return m.RoleCompetition
  14425. }
  14426. return nil
  14427. }
  14428. func (m *Role) GetRoleShop() *RoleShop {
  14429. if m != nil {
  14430. return m.RoleShop
  14431. }
  14432. return nil
  14433. }
  14434. func (m *Role) GetRoleActivity() *RoleActivity {
  14435. if m != nil {
  14436. return m.RoleActivity
  14437. }
  14438. return nil
  14439. }
  14440. func (m *Role) GetRoleTower() *RoleTower {
  14441. if m != nil {
  14442. return m.RoleTower
  14443. }
  14444. return nil
  14445. }
  14446. func (m *Role) GetRoleGuild() *RoleGuild {
  14447. if m != nil {
  14448. return m.RoleGuild
  14449. }
  14450. return nil
  14451. }
  14452. func (m *Role) GetRoleDraw() *RoleDraw {
  14453. if m != nil {
  14454. return m.RoleDraw
  14455. }
  14456. return nil
  14457. }
  14458. func (m *Role) GetRoleRune() *RoleRune {
  14459. if m != nil {
  14460. return m.RoleRune
  14461. }
  14462. return nil
  14463. }
  14464. func (m *Role) GetRoleDaochang100() *RoleDaoChang100 {
  14465. if m != nil {
  14466. return m.RoleDaochang100
  14467. }
  14468. return nil
  14469. }
  14470. func (m *Role) GetRoleStatistic() *RoleStatistic {
  14471. if m != nil {
  14472. return m.RoleStatistic
  14473. }
  14474. return nil
  14475. }
  14476. func (m *Role) GetRoleKeepSake() *RoleKeepSake {
  14477. if m != nil {
  14478. return m.RoleKeepSake
  14479. }
  14480. return nil
  14481. }
  14482. func (m *Role) GetRoleCross() *RoleCross {
  14483. if m != nil {
  14484. return m.RoleCross
  14485. }
  14486. return nil
  14487. }
  14488. func (m *Role) GetRoleRush() *RoleRush {
  14489. if m != nil {
  14490. return m.RoleRush
  14491. }
  14492. return nil
  14493. }
  14494. func (m *Role) GetRoleSkillEquip() *RoleSkillEquip {
  14495. if m != nil {
  14496. return m.RoleSkillEquip
  14497. }
  14498. return nil
  14499. }
  14500. func (m *Role) GetRoleHead() *RoleHead {
  14501. if m != nil {
  14502. return m.RoleHead
  14503. }
  14504. return nil
  14505. }
  14506. func (m *Role) GetRoleWish() *RoleWish {
  14507. if m != nil {
  14508. return m.RoleWish
  14509. }
  14510. return nil
  14511. }
  14512. func (m *Role) GetRoleBt() *RoleBT {
  14513. if m != nil {
  14514. return m.RoleBt
  14515. }
  14516. return nil
  14517. }
  14518. func init() {
  14519. proto.RegisterType((*AccountRole)(nil), "serverproto.AccountRole")
  14520. proto.RegisterType((*ReconnectInfo)(nil), "serverproto.ReconnectInfo")
  14521. proto.RegisterType((*UserConnectInfo)(nil), "serverproto.UserConnectInfo")
  14522. proto.RegisterType((*KeyValueType)(nil), "serverproto.KeyValueType")
  14523. proto.RegisterType((*KeyValueTypeList)(nil), "serverproto.KeyValueTypeList")
  14524. proto.RegisterType((*KeyValueType64)(nil), "serverproto.KeyValueType64")
  14525. proto.RegisterType((*KeyValueType64Str)(nil), "serverproto.KeyValueType64Str")
  14526. proto.RegisterType((*KeyValueFloat32)(nil), "serverproto.KeyValueFloat32")
  14527. proto.RegisterType((*UKeyValueType)(nil), "serverproto.UKeyValueType")
  14528. proto.RegisterType((*SlotDetailData)(nil), "serverproto.SlotDetailData")
  14529. proto.RegisterType((*SlotData)(nil), "serverproto.SlotData")
  14530. proto.RegisterType((*PetEquipData)(nil), "serverproto.PetEquipData")
  14531. proto.RegisterType((*PetSlotDetailData)(nil), "serverproto.PetSlotDetailData")
  14532. proto.RegisterType((*SkillData)(nil), "serverproto.SkillData")
  14533. proto.RegisterType((*ChangeJob)(nil), "serverproto.ChangeJob")
  14534. proto.RegisterType((*PetQiyueSlotInfo)(nil), "serverproto.PetQiyueSlotInfo")
  14535. proto.RegisterType((*PetQiyueInfo)(nil), "serverproto.PetQiyueInfo")
  14536. proto.RegisterType((*PetQiyueAttr)(nil), "serverproto.PetQiyueAttr")
  14537. proto.RegisterType((*HeroData)(nil), "serverproto.HeroData")
  14538. proto.RegisterType((*FashionData)(nil), "serverproto.FashionData")
  14539. proto.RegisterType((*FashionAttr)(nil), "serverproto.FashionAttr")
  14540. proto.RegisterType((*HeadFrameData)(nil), "serverproto.HeadFrameData")
  14541. proto.RegisterType((*HeadInfo)(nil), "serverproto.HeadInfo")
  14542. proto.RegisterType((*RoleData)(nil), "serverproto.RoleData")
  14543. proto.RegisterType((*RoleBase)(nil), "serverproto.RoleBase")
  14544. proto.RegisterType((*SkillEquipSlotDetailData)(nil), "serverproto.SkillEquipSlotDetailData")
  14545. proto.RegisterType((*SkillEquipSlotData)(nil), "serverproto.SkillEquipSlotData")
  14546. proto.RegisterType((*SkillEquipData)(nil), "serverproto.SkillEquipData")
  14547. proto.RegisterType((*SkillEquipChangeData)(nil), "serverproto.SkillEquipChangeData")
  14548. proto.RegisterType((*RoleSkillEquip)(nil), "serverproto.RoleSkillEquip")
  14549. proto.RegisterType((*EquipData)(nil), "serverproto.EquipData")
  14550. proto.RegisterType((*RoleEquip)(nil), "serverproto.RoleEquip")
  14551. proto.RegisterType((*ItemData)(nil), "serverproto.ItemData")
  14552. proto.RegisterType((*ChipData)(nil), "serverproto.ChipData")
  14553. proto.RegisterType((*RoleBag)(nil), "serverproto.RoleBag")
  14554. proto.RegisterType((*RoleHero)(nil), "serverproto.RoleHero")
  14555. proto.RegisterType((*RoleChip)(nil), "serverproto.RoleChip")
  14556. proto.RegisterType((*JobSkillData)(nil), "serverproto.JobSkillData")
  14557. proto.RegisterType((*RoleSkillSlot)(nil), "serverproto.RoleSkillSlot")
  14558. proto.RegisterType((*RoleSkill)(nil), "serverproto.RoleSkill")
  14559. proto.RegisterType((*CardData)(nil), "serverproto.CardData")
  14560. proto.RegisterType((*CardHandBook)(nil), "serverproto.CardHandBook")
  14561. proto.RegisterType((*CardCollect)(nil), "serverproto.CardCollect")
  14562. proto.RegisterType((*RoleCard)(nil), "serverproto.RoleCard")
  14563. proto.RegisterType((*RoleFashionData)(nil), "serverproto.RoleFashionData")
  14564. proto.RegisterType((*RoleFashion)(nil), "serverproto.RoleFashion")
  14565. proto.RegisterType((*RoleMap)(nil), "serverproto.RoleMap")
  14566. proto.RegisterType((*Position)(nil), "serverproto.Position")
  14567. proto.RegisterType((*Vector3)(nil), "serverproto.Vector3")
  14568. proto.RegisterType((*Player)(nil), "serverproto.Player")
  14569. proto.RegisterType((*PlayerShowInfo)(nil), "serverproto.PlayerShowInfo")
  14570. proto.RegisterType((*OtherPlayerDetailInfo)(nil), "serverproto.OtherPlayerDetailInfo")
  14571. proto.RegisterType((*UnitPosAndDir)(nil), "serverproto.UnitPosAndDir")
  14572. proto.RegisterType((*QuickBattleData)(nil), "serverproto.QuickBattleData")
  14573. proto.RegisterType((*BattleEvilBossData)(nil), "serverproto.BattleEvilBossData")
  14574. proto.RegisterType((*BattleEvilData)(nil), "serverproto.BattleEvilData")
  14575. proto.RegisterType((*BattleExpeditionActor)(nil), "serverproto.BattleExpeditionActor")
  14576. proto.RegisterType((*BattleExpeditionReward)(nil), "serverproto.BattleExpeditionReward")
  14577. proto.RegisterType((*ExpeditionRankInfo)(nil), "serverproto.ExpeditionRankInfo")
  14578. proto.RegisterType((*BattleExpedition)(nil), "serverproto.BattleExpedition")
  14579. proto.RegisterType((*RushMap)(nil), "serverproto.RushMap")
  14580. proto.RegisterType((*RoleBattle)(nil), "serverproto.RoleBattle")
  14581. proto.RegisterType((*ActorPosition)(nil), "serverproto.ActorPosition")
  14582. proto.RegisterType((*RankPlayerInfo)(nil), "serverproto.RankPlayerInfo")
  14583. proto.RegisterType((*WorldBossContentInfo)(nil), "serverproto.WorldBossContentInfo")
  14584. proto.RegisterType((*PointNameInfo)(nil), "serverproto.PointNameInfo")
  14585. proto.RegisterType((*WorldBossRandPointInfo)(nil), "serverproto.WorldBossRandPointInfo")
  14586. proto.RegisterType((*TaskProgressType)(nil), "serverproto.TaskProgressType")
  14587. proto.RegisterType((*TaskData)(nil), "serverproto.TaskData")
  14588. proto.RegisterType((*HeadCond)(nil), "serverproto.HeadCond")
  14589. proto.RegisterType((*RoleHeadCond)(nil), "serverproto.RoleHeadCond")
  14590. proto.RegisterType((*HeroCond)(nil), "serverproto.HeroCond")
  14591. proto.RegisterType((*RoleHeroCond)(nil), "serverproto.RoleHeroCond")
  14592. proto.RegisterType((*RoleTask)(nil), "serverproto.RoleTask")
  14593. proto.RegisterType((*SlotFightPower)(nil), "serverproto.SlotFightPower")
  14594. proto.RegisterType((*FightPowerData)(nil), "serverproto.FightPowerData")
  14595. proto.RegisterType((*RushArena)(nil), "serverproto.RushArena")
  14596. proto.RegisterType((*ArenaInfo)(nil), "serverproto.ArenaInfo")
  14597. proto.RegisterType((*ArenaRankInfo)(nil), "serverproto.ArenaRankInfo")
  14598. proto.RegisterType((*RoleArena)(nil), "serverproto.RoleArena")
  14599. proto.RegisterType((*MailContent)(nil), "serverproto.MailContent")
  14600. proto.RegisterType((*RoleMail)(nil), "serverproto.RoleMail")
  14601. proto.RegisterType((*RoleRed)(nil), "serverproto.RoleRed")
  14602. proto.RegisterType((*CompetitionRewardInfo)(nil), "serverproto.CompetitionRewardInfo")
  14603. proto.RegisterType((*CompetitionInfo)(nil), "serverproto.CompetitionInfo")
  14604. proto.RegisterType((*DivineInfo)(nil), "serverproto.DivineInfo")
  14605. proto.RegisterType((*DaySupplyData)(nil), "serverproto.DaySupplyData")
  14606. proto.RegisterType((*FansVoteData)(nil), "serverproto.FansVoteData")
  14607. proto.RegisterType((*FansBoxData)(nil), "serverproto.FansBoxData")
  14608. proto.RegisterType((*FansRankData)(nil), "serverproto.FansRankData")
  14609. proto.RegisterType((*FansVoteDetail)(nil), "serverproto.FansVoteDetail")
  14610. proto.RegisterType((*IdolFansInfo)(nil), "serverproto.IdolFansInfo")
  14611. proto.RegisterType((*IdolInfo)(nil), "serverproto.IdolInfo")
  14612. proto.RegisterType((*PlayerShowData)(nil), "serverproto.PlayerShowData")
  14613. proto.RegisterType((*IdolSeasonData)(nil), "serverproto.IdolSeasonData")
  14614. proto.RegisterType((*FansVoteRewardData)(nil), "serverproto.FansVoteRewardData")
  14615. proto.RegisterType((*RoleCompetition)(nil), "serverproto.RoleCompetition")
  14616. proto.RegisterType((*RoleFriend)(nil), "serverproto.RoleFriend")
  14617. proto.RegisterType((*RoleSocial)(nil), "serverproto.RoleSocial")
  14618. proto.RegisterType((*FightRoleInfo)(nil), "serverproto.FightRoleInfo")
  14619. proto.RegisterType((*ChatMessageInfo)(nil), "serverproto.ChatMessageInfo")
  14620. proto.RegisterType((*ChatPlayerBriefInfo)(nil), "serverproto.ChatPlayerBriefInfo")
  14621. proto.RegisterType((*CommonPlayerBriefInfo)(nil), "serverproto.CommonPlayerBriefInfo")
  14622. proto.RegisterType((*PlayerStateInfo)(nil), "serverproto.PlayerStateInfo")
  14623. proto.RegisterType((*SystemMessage)(nil), "serverproto.SystemMessage")
  14624. proto.RegisterType((*MessageContentInfo)(nil), "serverproto.MessageContentInfo")
  14625. proto.RegisterType((*RoleChat)(nil), "serverproto.RoleChat")
  14626. proto.RegisterType((*BuyInfo)(nil), "serverproto.BuyInfo")
  14627. proto.RegisterType((*SpecialShop)(nil), "serverproto.SpecialShop")
  14628. proto.RegisterType((*ShopBuyInfo)(nil), "serverproto.ShopBuyInfo")
  14629. proto.RegisterType((*ShopItem)(nil), "serverproto.ShopItem")
  14630. proto.RegisterType((*ShopData)(nil), "serverproto.ShopData")
  14631. proto.RegisterType((*ShopList)(nil), "serverproto.ShopList")
  14632. proto.RegisterType((*ViewRoleInfo)(nil), "serverproto.ViewRoleInfo")
  14633. proto.RegisterType((*ShopCost)(nil), "serverproto.ShopCost")
  14634. proto.RegisterType((*RoleShop)(nil), "serverproto.RoleShop")
  14635. proto.RegisterType((*CurRoundSign)(nil), "serverproto.CurRoundSign")
  14636. proto.RegisterType((*SignUp)(nil), "serverproto.SignUp")
  14637. proto.RegisterType((*RoleActivity)(nil), "serverproto.RoleActivity")
  14638. proto.RegisterType((*ActivitiesDetailData)(nil), "serverproto.ActivitiesDetailData")
  14639. proto.RegisterType((*ActivityBTROCoin)(nil), "serverproto.ActivityBTROCoin")
  14640. proto.RegisterType((*ActivitySignIn)(nil), "serverproto.ActivitySignIn")
  14641. proto.RegisterType((*ActivityWheelData)(nil), "serverproto.ActivityWheelData")
  14642. proto.RegisterType((*ExchangeData)(nil), "serverproto.ExchangeData")
  14643. proto.RegisterType((*ExchangeInfo)(nil), "serverproto.ExchangeInfo")
  14644. proto.RegisterType((*ActivitiesData)(nil), "serverproto.ActivitiesData")
  14645. proto.RegisterType((*ActivitiesFortnightDays)(nil), "serverproto.ActivitiesFortnightDays")
  14646. proto.RegisterType((*ActivitiesUnlockRechargeData)(nil), "serverproto.ActivitiesUnlockRechargeData")
  14647. proto.RegisterType((*ActivitiesCollectionData)(nil), "serverproto.ActivitiesCollectionData")
  14648. proto.RegisterType((*ActivitiesLikabilityData)(nil), "serverproto.ActivitiesLikabilityData")
  14649. proto.RegisterType((*FriendTowerInfo)(nil), "serverproto.FriendTowerInfo")
  14650. proto.RegisterType((*RushTower)(nil), "serverproto.RushTower")
  14651. proto.RegisterType((*RoleTower)(nil), "serverproto.RoleTower")
  14652. proto.RegisterType((*RefusedApply)(nil), "serverproto.RefusedApply")
  14653. proto.RegisterType((*DayApply)(nil), "serverproto.DayApply")
  14654. proto.RegisterType((*TowerBriefInfo)(nil), "serverproto.TowerBriefInfo")
  14655. proto.RegisterType((*RecommendGuild)(nil), "serverproto.RecommendGuild")
  14656. proto.RegisterType((*RecommendSet)(nil), "serverproto.RecommendSet")
  14657. proto.RegisterType((*MemberBrief)(nil), "serverproto.MemberBrief")
  14658. proto.RegisterType((*GuildNotifyData)(nil), "serverproto.GuildNotifyData")
  14659. proto.RegisterType((*MemberInfo)(nil), "serverproto.MemberInfo")
  14660. proto.RegisterType((*GuildBossLogDetial)(nil), "serverproto.GuildBossLogDetial")
  14661. proto.RegisterType((*GuildBossData)(nil), "serverproto.GuildBossData")
  14662. proto.RegisterType((*GuildLog)(nil), "serverproto.GuildLog")
  14663. proto.RegisterType((*GuildLogSet)(nil), "serverproto.GuildLogSet")
  14664. proto.RegisterType((*GuildMember)(nil), "serverproto.GuildMember")
  14665. proto.RegisterType((*MemberData)(nil), "serverproto.MemberData")
  14666. proto.RegisterType((*GuildBrief)(nil), "serverproto.GuildBrief")
  14667. proto.RegisterType((*GuildBase)(nil), "serverproto.GuildBase")
  14668. proto.RegisterType((*DemonDamage)(nil), "serverproto.DemonDamage")
  14669. proto.RegisterType((*GuildDemon)(nil), "serverproto.GuildDemon")
  14670. proto.RegisterType((*GuildActiveInfo)(nil), "serverproto.GuildActiveInfo")
  14671. proto.RegisterType((*RoleApplyInfo)(nil), "serverproto.RoleApplyInfo")
  14672. proto.RegisterType((*GuildBossTickTime)(nil), "serverproto.GuildBossTickTime")
  14673. proto.RegisterType((*GuildBattle)(nil), "serverproto.GuildBattle")
  14674. proto.RegisterType((*GuildDemonReward)(nil), "serverproto.GuildDemonReward")
  14675. proto.RegisterType((*DemonInfo)(nil), "serverproto.DemonInfo")
  14676. proto.RegisterType((*RoleGuild)(nil), "serverproto.RoleGuild")
  14677. proto.RegisterType((*GuildIdex)(nil), "serverproto.GuildIdex")
  14678. proto.RegisterType((*RushRoundData)(nil), "serverproto.RushRoundData")
  14679. proto.RegisterType((*RushData)(nil), "serverproto.RushData")
  14680. proto.RegisterType((*GuildFightLog)(nil), "serverproto.GuildFightLog")
  14681. proto.RegisterType((*GuildFight)(nil), "serverproto.GuildFight")
  14682. proto.RegisterType((*GuildBossInfo)(nil), "serverproto.GuildBossInfo")
  14683. proto.RegisterType((*GuildBoss)(nil), "serverproto.GuildBoss")
  14684. proto.RegisterType((*RoleApplayData)(nil), "serverproto.RoleApplayData")
  14685. proto.RegisterType((*GuildApplayData)(nil), "serverproto.GuildApplayData")
  14686. proto.RegisterType((*GuildBattleSelfData)(nil), "serverproto.GuildBattleSelfData")
  14687. proto.RegisterType((*GuildPosIdxData)(nil), "serverproto.GuildPosIdxData")
  14688. proto.RegisterType((*GuildBattleLog)(nil), "serverproto.GuildBattleLog")
  14689. proto.RegisterType((*GuildBattleBaseData)(nil), "serverproto.GuildBattleBaseData")
  14690. proto.RegisterType((*GuildBattleBase)(nil), "serverproto.GuildBattleBase")
  14691. proto.RegisterType((*CountTableData)(nil), "serverproto.CountTableData")
  14692. proto.RegisterType((*GuildCountPartTable)(nil), "serverproto.GuildCountPartTable")
  14693. proto.RegisterType((*GuildBattleDetail)(nil), "serverproto.GuildBattleDetail")
  14694. proto.RegisterType((*GuildBattleMvp)(nil), "serverproto.GuildBattleMvp")
  14695. proto.RegisterType((*GuildBattleRank)(nil), "serverproto.GuildBattleRank")
  14696. proto.RegisterType((*GuildBattleCP)(nil), "serverproto.GuildBattleCP")
  14697. proto.RegisterType((*GMNoticeInfo)(nil), "serverproto.GMNoticeInfo")
  14698. proto.RegisterType((*ReconnectUserData)(nil), "serverproto.ReconnectUserData")
  14699. proto.RegisterType((*EquipSlotCards)(nil), "serverproto.EquipSlotCards")
  14700. proto.RegisterType((*BattleRecordInfo)(nil), "serverproto.BattleRecordInfo")
  14701. proto.RegisterType((*AssistSaveData)(nil), "serverproto.AssistSaveData")
  14702. proto.RegisterType((*AssistData)(nil), "serverproto.AssistData")
  14703. proto.RegisterType((*PetBondPosData)(nil), "serverproto.PetBondPosData")
  14704. proto.RegisterType((*PetBondData)(nil), "serverproto.PetBondData")
  14705. proto.RegisterType((*PetSkillData)(nil), "serverproto.PetSkillData")
  14706. proto.RegisterType((*PetData)(nil), "serverproto.PetData")
  14707. proto.RegisterType((*AssistIdxData)(nil), "serverproto.AssistIdxData")
  14708. proto.RegisterType((*PetManualST)(nil), "serverproto.PetManualST")
  14709. proto.RegisterType((*RushPet)(nil), "serverproto.RushPet")
  14710. proto.RegisterType((*RolePet)(nil), "serverproto.RolePet")
  14711. proto.RegisterType((*PetAdvAchievementData)(nil), "serverproto.PetAdvAchievementData")
  14712. proto.RegisterType((*CardCollection)(nil), "serverproto.CardCollection")
  14713. proto.RegisterType((*InvitationTaskData)(nil), "serverproto.InvitationTaskData")
  14714. proto.RegisterType((*InvitationLogData)(nil), "serverproto.InvitationLogData")
  14715. proto.RegisterType((*InvitationMemberValData)(nil), "serverproto.InvitationMemberValData")
  14716. proto.RegisterType((*RoleInvitation)(nil), "serverproto.RoleInvitation")
  14717. proto.RegisterType((*DrawData)(nil), "serverproto.DrawData")
  14718. proto.RegisterType((*RoleDraw)(nil), "serverproto.RoleDraw")
  14719. proto.RegisterType((*RuneGoods)(nil), "serverproto.RuneGoods")
  14720. proto.RegisterType((*RuneShop)(nil), "serverproto.RuneShop")
  14721. proto.RegisterType((*RuneExplore)(nil), "serverproto.RuneExplore")
  14722. proto.RegisterType((*RuneBaseData)(nil), "serverproto.RuneBaseData")
  14723. proto.RegisterType((*RuneSpecialPrivilegeData)(nil), "serverproto.RuneSpecialPrivilegeData")
  14724. proto.RegisterType((*RoleRune)(nil), "serverproto.RoleRune")
  14725. proto.RegisterType((*RushRankTop3)(nil), "serverproto.RushRankTop3")
  14726. proto.RegisterType((*RushActivityData)(nil), "serverproto.RushActivityData")
  14727. proto.RegisterType((*DaoChang100Log)(nil), "serverproto.DaoChang100Log")
  14728. proto.RegisterType((*DaoChang100PosRewardData)(nil), "serverproto.DaoChang100PosRewardData")
  14729. proto.RegisterType((*DaoChang100PosIdxData)(nil), "serverproto.DaoChang100PosIdxData")
  14730. proto.RegisterType((*WheelRewardItemInfo)(nil), "serverproto.WheelRewardItemInfo")
  14731. proto.RegisterType((*WheelLogData)(nil), "serverproto.WheelLogData")
  14732. proto.RegisterType((*RoleDaoChang100)(nil), "serverproto.RoleDaoChang100")
  14733. proto.RegisterType((*RoleCheatChat)(nil), "serverproto.RoleCheatChat")
  14734. proto.RegisterType((*RoleStatistic)(nil), "serverproto.RoleStatistic")
  14735. proto.RegisterType((*KeepSake)(nil), "serverproto.KeepSake")
  14736. proto.RegisterType((*RoleKeepSake)(nil), "serverproto.RoleKeepSake")
  14737. proto.RegisterType((*KeepSakeCollection)(nil), "serverproto.KeepSakeCollection")
  14738. proto.RegisterType((*RushInfo)(nil), "serverproto.RushInfo")
  14739. proto.RegisterType((*RushPetInfo)(nil), "serverproto.RushPetInfo")
  14740. proto.RegisterType((*RushPetData)(nil), "serverproto.RushPetData")
  14741. proto.RegisterType((*RoleCross)(nil), "serverproto.RoleCross")
  14742. proto.RegisterType((*RoleYuanHangTrial)(nil), "serverproto.RoleYuanHangTrial")
  14743. proto.RegisterType((*YuanHangTrialData)(nil), "serverproto.YuanHangTrialData")
  14744. proto.RegisterType((*YuanHangTrialLogData)(nil), "serverproto.YuanHangTrialLogData")
  14745. proto.RegisterType((*CommonRankInfo)(nil), "serverproto.CommonRankInfo")
  14746. proto.RegisterType((*RoleCrossTopTower)(nil), "serverproto.RoleCrossTopTower")
  14747. proto.RegisterType((*TopTowerFightRoleInfo)(nil), "serverproto.TopTowerFightRoleInfo")
  14748. proto.RegisterType((*ServerStateInfo)(nil), "serverproto.ServerStateInfo")
  14749. proto.RegisterType((*StateDetailDesc)(nil), "serverproto.StateDetailDesc")
  14750. proto.RegisterType((*RoleRush)(nil), "serverproto.RoleRush")
  14751. proto.RegisterType((*RushSkill)(nil), "serverproto.RushSkill")
  14752. proto.RegisterType((*HeadData)(nil), "serverproto.HeadData")
  14753. proto.RegisterType((*RoleHead)(nil), "serverproto.RoleHead")
  14754. proto.RegisterType((*RoleWish)(nil), "serverproto.RoleWish")
  14755. proto.RegisterType((*WishSlot)(nil), "serverproto.WishSlot")
  14756. proto.RegisterType((*RoleBT)(nil), "serverproto.RoleBT")
  14757. proto.RegisterType((*BTBoliData)(nil), "serverproto.BTBoliData")
  14758. proto.RegisterType((*BTBaseData)(nil), "serverproto.BTBaseData")
  14759. proto.RegisterType((*Role)(nil), "serverproto.Role")
  14760. }
  14761. func init() {
  14762. proto.RegisterFile("user.proto", fileDescriptor_116e343673f7ffaf)
  14763. }
  14764. var fileDescriptor_116e343673f7ffaf = []byte{
  14765. // 14651 bytes of a gzipped FileDescriptorProto
  14766. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0xbd, 0x5d, 0x8c, 0x24, 0xe7,
  14767. 0x7a, 0x10, 0xac, 0x9e, 0xee, 0x9e, 0xee, 0x7e, 0xfa, 0x6f, 0xa6, 0x76, 0x67, 0x3c, 0xeb, 0xf5,
  14768. 0xfa, 0xa7, 0x8e, 0xed, 0xb3, 0xf6, 0xf1, 0xf1, 0xcf, 0xac, 0xbd, 0x67, 0x7d, 0xfe, 0xac, 0xdd,
  14769. 0xd9, 0xdd, 0xb3, 0xe3, 0xb3, 0x6b, 0xcf, 0xa9, 0xd9, 0xb5, 0xf3, 0xf9, 0x4b, 0xd4, 0x5f, 0x75,
  14770. 0xd7, 0x3b, 0xd3, 0xe5, 0xe9, 0xae, 0x6a, 0x57, 0x55, 0xcf, 0xce, 0x9c, 0x24, 0x5f, 0x08, 0x22,
  14771. 0x04, 0x25, 0x24, 0x44, 0x08, 0x11, 0x24, 0x94, 0x88, 0x28, 0x41, 0x08, 0x72, 0x11, 0x01, 0x12,
  14772. 0x10, 0xc8, 0x05, 0x24, 0x42, 0x44, 0x02, 0x89, 0x88, 0x8b, 0x20, 0x71, 0x81, 0x94, 0xdc, 0x10,
  14773. 0x29, 0xe2, 0x06, 0x89, 0x48, 0x90, 0x1b, 0xf4, 0xfc, 0xbc, 0x55, 0x6f, 0x55, 0x57, 0xcf, 0xac,
  14774. 0x9d, 0xa3, 0x00, 0x57, 0xdd, 0xf5, 0xbc, 0xff, 0x7f, 0xcf, 0xfb, 0xfc, 0xbf, 0x00, 0xf3, 0x58,
  14775. 0x45, 0xaf, 0xcf, 0xa2, 0x30, 0x09, 0xad, 0x76, 0xac, 0xa2, 0x63, 0x15, 0xd1, 0x87, 0xfd, 0xcf,
  14776. 0x2a, 0xd0, 0xbe, 0x39, 0x1a, 0x85, 0xf3, 0x20, 0x71, 0xc2, 0x89, 0xb2, 0x9e, 0x82, 0x46, 0x38,
  14777. 0x53, 0xc1, 0xc0, 0xf7, 0xb6, 0x2a, 0xcf, 0x57, 0xae, 0xb6, 0x9c, 0x55, 0xfc, 0xdc, 0xf5, 0xac,
  14778. 0xa7, 0xa1, 0x39, 0x9b, 0xb8, 0xc9, 0x41, 0x18, 0x4d, 0xb7, 0x56, 0x28, 0x25, 0xfd, 0xb6, 0xd6,
  14779. 0xa0, 0x3a, 0xf7, 0xbd, 0xad, 0xea, 0xf3, 0x95, 0xab, 0x35, 0x07, 0xff, 0x5a, 0x2f, 0x41, 0x6f,
  14780. 0x36, 0x0e, 0x03, 0x35, 0x48, 0xcb, 0xd4, 0x9e, 0xaf, 0x5c, 0xad, 0x3b, 0x5d, 0x82, 0xee, 0xe9,
  14781. 0x82, 0x5f, 0x82, 0x6e, 0xa4, 0x0e, 0xfd, 0x38, 0x51, 0xd1, 0x20, 0xf1, 0xa7, 0x6a, 0xab, 0x4e,
  14782. 0x55, 0x74, 0x34, 0xf0, 0xa1, 0x3f, 0x55, 0xd6, 0x26, 0xac, 0x7e, 0x12, 0x06, 0x6a, 0xd7, 0xdb,
  14783. 0x5a, 0xa5, 0x3a, 0xe4, 0xcb, 0x7e, 0x15, 0xba, 0x8e, 0x1a, 0x85, 0x41, 0xa0, 0x46, 0xc9, 0x6e,
  14784. 0x70, 0x10, 0x5a, 0x97, 0xa0, 0x39, 0x3b, 0x9e, 0x0d, 0x82, 0xd0, 0x53, 0xd2, 0xf9, 0xc6, 0xec,
  14785. 0x78, 0xf6, 0x41, 0xe8, 0x29, 0xfb, 0x43, 0xe8, 0x3f, 0x8a, 0x55, 0xb4, 0x63, 0xe4, 0xbe, 0x02,
  14786. 0x30, 0x09, 0x0f, 0xfd, 0x91, 0x99, 0xbf, 0x45, 0x10, 0x2c, 0x81, 0xc9, 0xd8, 0xa3, 0x41, 0x9c,
  14787. 0xb8, 0xd3, 0x19, 0x8d, 0xb8, 0xea, 0xb4, 0x10, 0xb2, 0x8f, 0x00, 0xfb, 0x3a, 0x74, 0xbe, 0xab,
  14788. 0x4e, 0x3f, 0x72, 0x27, 0x73, 0xf5, 0xf0, 0x74, 0xa6, 0x70, 0x0a, 0x8e, 0xd4, 0x29, 0x55, 0x53,
  14789. 0x77, 0xf0, 0xaf, 0x75, 0x11, 0xea, 0xc7, 0x98, 0x4c, 0x65, 0xeb, 0x0e, 0x7f, 0xd8, 0x3b, 0xb0,
  14790. 0x66, 0x96, 0xbb, 0xef, 0xc7, 0x49, 0x49, 0xd9, 0x2b, 0x00, 0x94, 0x7d, 0x30, 0xf1, 0xe3, 0x64,
  14791. 0x6b, 0xe5, 0xf9, 0xea, 0xd5, 0xba, 0xd3, 0x22, 0x08, 0x16, 0xb0, 0xff, 0x61, 0x05, 0x7a, 0x66,
  14792. 0x2d, 0xd7, 0xdf, 0x36, 0xeb, 0xa8, 0x9d, 0xd1, 0x3e, 0x4e, 0x26, 0xfd, 0xd9, 0xa6, 0xd5, 0xaa,
  14793. 0x3b, 0xf2, 0x95, 0xc2, 0xaf, 0xc9, 0x42, 0xc9, 0x17, 0xee, 0x87, 0x38, 0x89, 0x06, 0xc7, 0xee,
  14794. 0x84, 0xd6, 0xa6, 0xe5, 0xac, 0xc6, 0x49, 0xf4, 0x91, 0x3b, 0x49, 0x0b, 0xbc, 0x4d, 0xab, 0x52,
  14795. 0x93, 0x02, 0x6f, 0xa7, 0xf0, 0x77, 0xb6, 0x1a, 0xcf, 0x57, 0xae, 0x36, 0x05, 0xfe, 0x8e, 0xfd,
  14796. 0x6d, 0x58, 0xcf, 0x77, 0x79, 0x3f, 0x89, 0x4a, 0x7a, 0x6d, 0xb4, 0xb7, 0x62, 0xb6, 0x67, 0xef,
  14797. 0x43, 0x5f, 0x97, 0xbf, 0x3b, 0x09, 0xdd, 0xe4, 0xda, 0xf6, 0x79, 0x73, 0xbe, 0xa2, 0xc7, 0xbc,
  14798. 0x05, 0x0d, 0xfa, 0x73, 0xfd, 0x6d, 0x1a, 0x74, 0xc5, 0xd1, 0x9f, 0xf6, 0xd7, 0xa0, 0xfb, 0x68,
  14799. 0xd9, 0x32, 0x76, 0x4b, 0xaa, 0xec, 0xea, 0x65, 0x1c, 0x41, 0x6f, 0x7f, 0x12, 0x26, 0xb7, 0x55,
  14800. 0xe2, 0xfa, 0x93, 0xdb, 0x6e, 0xe2, 0x62, 0xbe, 0x89, 0x3a, 0x56, 0x13, 0xe9, 0x0e, 0x7f, 0xe0,
  14801. 0x96, 0x54, 0x9f, 0xcd, 0xfd, 0x19, 0x9e, 0x27, 0x5e, 0x87, 0x06, 0x7d, 0xef, 0x7a, 0xd6, 0xf3,
  14802. 0xd0, 0x19, 0xb9, 0x91, 0x37, 0xf0, 0x3d, 0x5e, 0xe5, 0x2a, 0xad, 0x32, 0x20, 0x6c, 0xd7, 0xa3,
  14803. 0x65, 0xfe, 0x11, 0x68, 0x52, 0x23, 0x58, 0xfd, 0x53, 0xd0, 0x18, 0xab, 0x28, 0xd4, 0xe7, 0xb2,
  14804. 0xee, 0xac, 0xe2, 0xe7, 0xae, 0x67, 0xdd, 0x80, 0x56, 0x3c, 0x09, 0x93, 0x6c, 0xa7, 0xb4, 0xb7,
  14805. 0x2f, 0xbf, 0x6e, 0x9c, 0xf0, 0xd7, 0xf3, 0xfd, 0x74, 0x9a, 0x98, 0x9b, 0xaa, 0x3f, 0x81, 0xce,
  14806. 0x9e, 0x4a, 0xee, 0x60, 0x77, 0xa8, 0x89, 0x1e, 0xac, 0x48, 0xed, 0x5d, 0x67, 0xc5, 0xa7, 0x0e,
  14807. 0x72, 0xdf, 0x47, 0x07, 0x87, 0x59, 0xff, 0x81, 0x60, 0x3b, 0x07, 0x87, 0xbb, 0x5e, 0x36, 0xe6,
  14808. 0xaa, 0x39, 0xe6, 0xb4, 0xdc, 0x4c, 0x25, 0x58, 0xae, 0x46, 0x35, 0x72, 0xb9, 0x3d, 0x95, 0xec,
  14809. 0x7a, 0xb6, 0x07, 0xeb, 0x7b, 0x2a, 0x29, 0x4c, 0xe0, 0x1a, 0x54, 0x7d, 0xef, 0x44, 0xaf, 0xa6,
  14810. 0xef, 0x9d, 0x2c, 0x4c, 0x5e, 0x37, 0x9b, 0x3c, 0x1b, 0xba, 0x71, 0x82, 0xf8, 0x25, 0x3f, 0x7b,
  14811. 0x6d, 0x02, 0xca, 0xf4, 0xbd, 0x05, 0xad, 0xfd, 0x23, 0x7f, 0x32, 0x29, 0x0c, 0xae, 0x4e, 0x83,
  14812. 0xbb, 0x08, 0xf5, 0x59, 0xe8, 0x07, 0x89, 0x3e, 0x1d, 0xf4, 0x61, 0xff, 0xff, 0xd0, 0xda, 0x19,
  14813. 0xbb, 0xc1, 0xa1, 0x7a, 0x3f, 0x1c, 0x5a, 0xdb, 0xd0, 0x4a, 0xdc, 0xf8, 0x88, 0xeb, 0xaf, 0xd0,
  14814. 0xcc, 0x6e, 0xe4, 0x66, 0xf6, 0xa1, 0x1b, 0x1f, 0xf1, 0x9c, 0x62, 0x3e, 0x3a, 0xca, 0xc6, 0x32,
  14815. 0xad, 0xe4, 0x96, 0xe9, 0x45, 0xe8, 0x7d, 0x1a, 0x0e, 0x07, 0x07, 0xf3, 0x78, 0x8c, 0x28, 0x25,
  14816. 0x51, 0x34, 0x67, 0x5d, 0xa7, 0xf3, 0x69, 0x38, 0xbc, 0x3b, 0x8f, 0xc7, 0xfb, 0x08, 0xb3, 0x87,
  14817. 0xb0, 0xb6, 0xa7, 0x92, 0xef, 0xf9, 0xa7, 0x73, 0x85, 0xb3, 0xa3, 0xb1, 0x1a, 0x2d, 0x70, 0x36,
  14818. 0x39, 0x0d, 0xfc, 0xde, 0xf5, 0x4e, 0xac, 0x0d, 0x58, 0x95, 0x39, 0x96, 0xcd, 0x39, 0xc3, 0xe9,
  14819. 0xb5, 0x9e, 0x01, 0x40, 0xb0, 0x2c, 0x1b, 0xaf, 0x4d, 0x73, 0xa6, 0x12, 0x5a, 0x34, 0x7b, 0x42,
  14820. 0xcb, 0x4e, 0x6d, 0x50, 0xfd, 0x59, 0x25, 0x15, 0xb3, 0x92, 0x3b, 0xd0, 0xff, 0x0c, 0xf3, 0x0c,
  14821. 0x8a, 0xbb, 0xeb, 0x4a, 0x6e, 0x0e, 0x8a, 0xdd, 0x75, 0xba, 0x9f, 0xe9, 0x4f, 0x5a, 0x84, 0x69,
  14822. 0xd6, 0xda, 0xcd, 0x24, 0x89, 0x96, 0xb5, 0x76, 0x17, 0xd6, 0x86, 0x6e, 0x92, 0x4c, 0xd4, 0xc0,
  14823. 0x4d, 0x92, 0xc8, 0x6c, 0xee, 0x99, 0x5c, 0x73, 0x05, 0x14, 0xe0, 0xf4, 0xb8, 0x14, 0x56, 0x4d,
  14824. 0xcd, 0xfd, 0xd7, 0x55, 0x68, 0xde, 0x53, 0x51, 0x58, 0xba, 0xe6, 0x97, 0xa1, 0x35, 0x0a, 0x83,
  14825. 0x03, 0xdf, 0xd8, 0xcd, 0x4d, 0x06, 0xec, 0x7a, 0xd6, 0x73, 0xd0, 0x3e, 0xf0, 0x0f, 0xc7, 0xc9,
  14826. 0x60, 0x16, 0x3e, 0x56, 0x91, 0xcc, 0x1a, 0x10, 0x68, 0x0f, 0x21, 0x58, 0xda, 0x8f, 0x07, 0xdc,
  14827. 0x1e, 0xed, 0xe9, 0xa6, 0xd3, 0xf4, 0xe3, 0x5b, 0xf4, 0x8d, 0x08, 0x7b, 0xe8, 0xc6, 0x6a, 0xc0,
  14828. 0xc7, 0xa1, 0x4e, 0x85, 0x5b, 0x08, 0xb9, 0x4f, 0x47, 0xe2, 0x4b, 0xd0, 0x75, 0xbd, 0x63, 0x37,
  14829. 0x18, 0xe9, 0x1c, 0x7c, 0x93, 0x75, 0x04, 0xc8, 0x99, 0x5e, 0x82, 0x5e, 0x9c, 0x44, 0x2a, 0x38,
  14830. 0x4c, 0xc6, 0x92, 0xab, 0xc1, 0x77, 0xa6, 0x86, 0x72, 0xb6, 0x57, 0xa0, 0x86, 0x4b, 0xb2, 0xd5,
  14831. 0x7c, 0xbe, 0xb2, 0xb0, 0x23, 0x35, 0xba, 0x70, 0x28, 0x8b, 0xf5, 0x1a, 0xd4, 0x63, 0x3c, 0x01,
  14832. 0x5b, 0x2d, 0xca, 0xbb, 0x99, 0xcb, 0x8b, 0xd7, 0x3d, 0x9d, 0x0f, 0x87, 0x33, 0x59, 0xd7, 0xa1,
  14833. 0x95, 0x4d, 0x3e, 0xd0, 0xe4, 0x5f, 0x2a, 0x9d, 0x7c, 0xc4, 0x94, 0x4e, 0xd3, 0x95, 0x39, 0xc7,
  14834. 0xb1, 0x53, 0x39, 0x3e, 0x4f, 0x6d, 0x1e, 0x3b, 0x42, 0xf6, 0x10, 0x80, 0x47, 0x55, 0x96, 0x56,
  14835. 0x16, 0xbe, 0x43, 0x0b, 0xdf, 0x66, 0x20, 0x21, 0x04, 0xeb, 0x65, 0xe8, 0x63, 0xa2, 0xb9, 0x00,
  14836. 0x5d, 0xba, 0x13, 0xba, 0x33, 0x95, 0xdc, 0xcd, 0xd6, 0xe0, 0x9b, 0xd0, 0xf9, 0x6c, 0xee, 0x4e,
  14837. 0xfc, 0xe4, 0x94, 0x7b, 0xd9, 0x3b, 0xaf, 0x97, 0x6d, 0xc9, 0x4e, 0x1d, 0x7d, 0x0b, 0x36, 0x22,
  14838. 0x35, 0x8b, 0x54, 0x1c, 0x0f, 0x68, 0xc4, 0x03, 0xa4, 0x16, 0xf0, 0xa6, 0xe9, 0x53, 0x9f, 0x2d,
  14839. 0x49, 0xa4, 0x49, 0xd9, 0x3b, 0x9e, 0xe1, 0x2d, 0xb7, 0x0b, 0x6b, 0x9c, 0x95, 0x11, 0x11, 0x4d,
  14840. 0xfc, 0x1a, 0x4d, 0xe6, 0x73, 0xf9, 0x89, 0xc7, 0x4c, 0x84, 0x4a, 0xd3, 0x25, 0xe8, 0xc5, 0x39,
  14841. 0x98, 0xf5, 0x1e, 0xf4, 0x70, 0x8c, 0x7c, 0xa8, 0x3c, 0x37, 0x71, 0xb7, 0xd6, 0xa9, 0xa2, 0x4b,
  14842. 0xa5, 0xe7, 0x89, 0xce, 0x52, 0x67, 0x26, 0x5f, 0xb4, 0x9d, 0xdf, 0x87, 0x8b, 0xc5, 0x33, 0x32,
  14843. 0x08, 0x27, 0xde, 0xd6, 0xf6, 0x79, 0x93, 0xb0, 0x9e, 0x3f, 0x24, 0x1f, 0x4e, 0xca, 0xcf, 0xdb,
  14844. 0xb5, 0x2f, 0x70, 0xde, 0x7e, 0x0c, 0xda, 0x77, 0xdd, 0x78, 0xec, 0x87, 0x81, 0xc6, 0xe1, 0xea,
  14845. 0x54, 0x69, 0x1c, 0xae, 0x4e, 0x95, 0x65, 0x41, 0x6d, 0xec, 0xfa, 0x91, 0x1c, 0x37, 0xfa, 0x8f,
  14846. 0x47, 0x0d, 0x7f, 0x07, 0xee, 0xb1, 0x9b, 0xb8, 0xe9, 0x51, 0x43, 0xd0, 0x4d, 0x82, 0xe0, 0x76,
  14847. 0x38, 0xe0, 0x5a, 0x07, 0xf3, 0x19, 0x77, 0xae, 0x46, 0xf8, 0xbd, 0x2b, 0xe0, 0x47, 0x33, 0x6a,
  14848. 0xfd, 0x51, 0xda, 0x3a, 0xe1, 0x96, 0x2d, 0x68, 0x7c, 0x1a, 0x0e, 0x71, 0xc8, 0x1a, 0x51, 0xca,
  14849. 0x27, 0x12, 0x25, 0x38, 0xce, 0xdd, 0x14, 0x2b, 0xf3, 0x57, 0x76, 0xb9, 0x57, 0x4d, 0x1a, 0xed,
  14850. 0xff, 0x85, 0xee, 0x3d, 0xe5, 0x7a, 0x77, 0x23, 0x77, 0xca, 0x33, 0x6f, 0x43, 0x77, 0xac, 0x5c,
  14851. 0x6f, 0x70, 0x80, 0x90, 0xec, 0x0a, 0x6e, 0x8f, 0x75, 0x2e, 0xde, 0xc2, 0x46, 0x1e, 0x22, 0x66,
  14852. 0x99, 0x68, 0xec, 0xa6, 0xb9, 0x90, 0x9a, 0xb5, 0x7f, 0xbe, 0x82, 0x18, 0xca, 0xf5, 0x08, 0xf7,
  14853. 0xbe, 0x00, 0x1d, 0x2a, 0x74, 0xac, 0xa2, 0xd8, 0x0f, 0x03, 0xb3, 0xde, 0x8f, 0x18, 0x84, 0x68,
  14854. 0x87, 0xb2, 0x18, 0x94, 0x60, 0x13, 0x01, 0xb4, 0xa3, 0x6f, 0xe5, 0x1a, 0x4d, 0x2f, 0xc2, 0xf6,
  14855. 0xf6, 0xd3, 0xb9, 0x55, 0xcc, 0x8d, 0xc6, 0xe8, 0x10, 0x4d, 0xe2, 0x7f, 0xaf, 0x42, 0x13, 0x71,
  14856. 0x01, 0x8d, 0xf4, 0x12, 0x34, 0x09, 0x8f, 0xa9, 0x93, 0x99, 0x9e, 0x43, 0xfc, 0xbe, 0x73, 0x32,
  14857. 0xc3, 0xab, 0x0d, 0x6f, 0x30, 0x4c, 0x91, 0x49, 0xfc, 0x34, 0x1c, 0x62, 0xc2, 0x65, 0x68, 0x61,
  14858. 0x82, 0x49, 0x09, 0x34, 0x3f, 0x0d, 0x87, 0xf7, 0x35, 0x01, 0x44, 0x17, 0x22, 0x16, 0x63, 0xca,
  14859. 0x92, 0x2e, 0x48, 0x2c, 0xb7, 0x8d, 0x23, 0x8b, 0x42, 0x3e, 0x0b, 0xf5, 0x12, 0x6c, 0xa6, 0x11,
  14860. 0xb9, 0x43, 0x55, 0x50, 0xff, 0x0a, 0x58, 0x9a, 0x49, 0x4f, 0x13, 0x4b, 0x6f, 0xc2, 0xea, 0x28,
  14861. 0x9a, 0xfb, 0xb1, 0x12, 0xe4, 0x29, 0x5f, 0x88, 0xa4, 0xa6, 0xee, 0xc9, 0x40, 0xd2, 0x9a, 0x8c,
  14862. 0xa4, 0xa6, 0xee, 0xc9, 0x0e, 0x27, 0xd3, 0xbd, 0xed, 0x22, 0x31, 0x46, 0xb8, 0x92, 0xee, 0x6d,
  14863. 0xd7, 0xe3, 0x65, 0x9d, 0xb8, 0x71, 0x32, 0x40, 0xc6, 0x20, 0xe0, 0x65, 0x05, 0xc6, 0x4c, 0x08,
  14864. 0xbe, 0x8f, 0x50, 0x62, 0x52, 0x2e, 0x43, 0x8b, 0x11, 0xc5, 0x30, 0x3c, 0x11, 0x1c, 0xd8, 0x24,
  14865. 0xc0, 0xad, 0xf0, 0xc4, 0xda, 0x81, 0xb5, 0x61, 0x18, 0xc7, 0x83, 0x48, 0x3d, 0x46, 0x8a, 0x8f,
  14866. 0xd6, 0xa9, 0x73, 0xde, 0xa9, 0xed, 0x61, 0x11, 0x87, 0x4a, 0xd0, 0x5a, 0xbf, 0x0a, 0xeb, 0xdc,
  14867. 0x42, 0xa4, 0x62, 0xbc, 0xdd, 0x91, 0x65, 0x23, 0x2c, 0x59, 0x77, 0xfa, 0x94, 0xe0, 0x20, 0x7c,
  14868. 0x07, 0xc1, 0x8b, 0x1b, 0xb6, 0xb7, 0xb0, 0x61, 0xed, 0x3f, 0x69, 0xf1, 0xba, 0xdf, 0x72, 0x63,
  14869. 0x65, 0x5c, 0x95, 0x35, 0x7d, 0x55, 0x06, 0xfe, 0xe8, 0x68, 0x10, 0xb8, 0xb2, 0x8f, 0x5b, 0x4e,
  14870. 0x13, 0x01, 0x1f, 0xb8, 0x53, 0x3a, 0xd3, 0x9e, 0x8a, 0x47, 0xb4, 0xd6, 0x2d, 0x87, 0xfe, 0xe3,
  14871. 0xc9, 0x8f, 0xd5, 0x89, 0x2c, 0x31, 0xfe, 0xc5, 0xd3, 0x48, 0x7d, 0x8c, 0x4e, 0xe5, 0x3e, 0xd4,
  14872. 0x9f, 0xb8, 0x27, 0x0e, 0xe7, 0xbe, 0x47, 0x1d, 0xe3, 0x8b, 0xb0, 0x41, 0xdf, 0xbb, 0x1e, 0x56,
  14873. 0x3d, 0x0a, 0xfd, 0x80, 0x16, 0xaf, 0xe6, 0xd0, 0x7f, 0xac, 0x3a, 0x9a, 0x0e, 0x69, 0xcd, 0xba,
  14874. 0x0e, 0xfe, 0xb5, 0xde, 0x86, 0x66, 0xa4, 0x62, 0x9e, 0xc7, 0xd6, 0x79, 0xf3, 0xd8, 0x88, 0x54,
  14875. 0x4c, 0x13, 0xb8, 0x0d, 0xad, 0x28, 0x9c, 0x08, 0xee, 0x85, 0x92, 0xfd, 0xa6, 0x4f, 0x81, 0xd3,
  14876. 0x8c, 0xf4, 0x79, 0xf8, 0x06, 0x74, 0x34, 0x26, 0xa2, 0x62, 0x6d, 0x2a, 0xb6, 0x95, 0x2b, 0x66,
  14877. 0x20, 0x40, 0xa7, 0x7d, 0x60, 0x60, 0xc3, 0x6d, 0x39, 0xba, 0x78, 0xd4, 0x69, 0xa5, 0x16, 0x37,
  14878. 0x38, 0xe3, 0x01, 0x3e, 0xd1, 0x29, 0xb5, 0x97, 0x84, 0xd1, 0x29, 0x2f, 0x5a, 0x95, 0xa8, 0x3d,
  14879. 0xfc, 0xde, 0xf5, 0xac, 0xb7, 0x60, 0x75, 0x44, 0xf3, 0x44, 0xf7, 0xd5, 0x99, 0x63, 0x96, 0x8c,
  14880. 0xd6, 0xb7, 0xa1, 0x3b, 0x75, 0x67, 0x03, 0x37, 0xf0, 0xa7, 0x6e, 0x82, 0x08, 0x66, 0xed, 0xbc,
  14881. 0x92, 0x9d, 0xa9, 0x3b, 0xbb, 0xa9, 0xb3, 0x33, 0x3a, 0x90, 0x6d, 0xbf, 0x4e, 0x4b, 0xd2, 0x18,
  14882. 0xba, 0xbc, 0xe1, 0x5f, 0x82, 0x5e, 0x12, 0x26, 0x2e, 0x6e, 0xc7, 0xd1, 0xd8, 0x8d, 0x0e, 0xd5,
  14883. 0x96, 0x45, 0x3c, 0x57, 0x97, 0xa0, 0x8e, 0x00, 0x11, 0xc3, 0x79, 0xee, 0x69, 0x96, 0xe9, 0x02,
  14884. 0x65, 0x6a, 0x7b, 0xee, 0x69, 0x9a, 0xe5, 0x32, 0xb4, 0x8e, 0xfd, 0x99, 0xe0, 0x8f, 0x8b, 0x7c,
  14885. 0x74, 0x8e, 0xfd, 0x19, 0xe3, 0x8f, 0xd7, 0xc0, 0xa2, 0xf3, 0xa7, 0x2b, 0xe0, 0xbe, 0x6c, 0x50,
  14886. 0x5f, 0xd6, 0x30, 0x45, 0x57, 0x43, 0x9d, 0xfa, 0x32, 0xf4, 0x3f, 0x9b, 0xab, 0x18, 0xfb, 0x2e,
  14887. 0x87, 0x6d, 0x6b, 0x93, 0x2a, 0xec, 0x69, 0x30, 0x1f, 0x28, 0x24, 0xc8, 0x46, 0x91, 0x72, 0x13,
  14888. 0xa5, 0xb3, 0x3d, 0x45, 0x04, 0x5d, 0x87, 0x81, 0x92, 0x49, 0x8f, 0x1e, 0x2f, 0x94, 0x2d, 0x8d,
  14889. 0x0c, 0x03, 0xba, 0x50, 0x6c, 0xe8, 0x8e, 0xc6, 0x6e, 0x32, 0x48, 0x67, 0xe7, 0x12, 0xf5, 0xa8,
  14890. 0x8d, 0xc0, 0x5b, 0x32, 0x43, 0xb9, 0x3c, 0x58, 0xc7, 0xd3, 0x7c, 0x08, 0x75, 0x1e, 0xac, 0xe7,
  14891. 0x55, 0x58, 0xe7, 0x59, 0x0c, 0x83, 0x89, 0x1f, 0xc8, 0xe8, 0x2e, 0xf3, 0xa1, 0xa6, 0x84, 0x0f,
  14892. 0x09, 0x4e, 0xf5, 0xbd, 0x00, 0x1d, 0xc9, 0xc5, 0x32, 0x89, 0x67, 0xb8, 0x49, 0x86, 0x91, 0x54,
  14893. 0xc2, 0xba, 0x0a, 0x6b, 0x92, 0x45, 0x50, 0x8d, 0xef, 0x6d, 0x5d, 0xe1, 0x09, 0x60, 0x38, 0x8f,
  14894. 0x6c, 0xd7, 0xb3, 0xae, 0xc1, 0xa6, 0xe7, 0xfa, 0x93, 0x53, 0xc1, 0x26, 0x86, 0xa8, 0xe3, 0x59,
  14895. 0xaa, 0xf6, 0x02, 0xa5, 0x12, 0x4a, 0x79, 0xa8, 0x85, 0x1e, 0xcb, 0x09, 0xa8, 0xe7, 0x96, 0x12,
  14896. 0x50, 0x6f, 0xc0, 0xc5, 0x61, 0x32, 0xf8, 0xfe, 0x58, 0xe1, 0x01, 0x32, 0xf6, 0xc1, 0x36, 0xed,
  14897. 0x83, 0xf5, 0x61, 0xf2, 0xc9, 0x58, 0x05, 0xb7, 0x8d, 0xdd, 0xf0, 0x55, 0xb8, 0x30, 0x4c, 0x06,
  14898. 0x9f, 0xfa, 0x6e, 0x3e, 0xff, 0x35, 0x6a, 0x61, 0x6d, 0x98, 0xbc, 0xef, 0xbb, 0x66, 0xf6, 0xb7,
  14899. 0x60, 0x43, 0xb2, 0x17, 0x76, 0xe3, 0xdb, 0x34, 0x0c, 0x8b, 0x0a, 0x3c, 0x34, 0xb7, 0xa4, 0xfd,
  14900. 0x93, 0x2b, 0xb0, 0x55, 0xa0, 0xd7, 0x32, 0x2e, 0xf4, 0x45, 0xe8, 0x99, 0x04, 0x5f, 0xca, 0xa7,
  14901. 0x74, 0x32, 0x6a, 0x8e, 0x8e, 0xe2, 0x86, 0x99, 0xab, 0xc8, 0x55, 0x58, 0x59, 0xe6, 0x1d, 0xcd,
  14902. 0x5f, 0x5c, 0x83, 0xcd, 0x1c, 0x25, 0x99, 0xb8, 0x51, 0xee, 0xca, 0xbc, 0x60, 0x90, 0x8b, 0x89,
  14903. 0x1b, 0xf1, 0xee, 0xbf, 0x02, 0xc0, 0xec, 0x17, 0x65, 0x64, 0xe4, 0x4a, 0xec, 0x3e, 0x27, 0xdf,
  14904. 0x90, 0x64, 0xa4, 0x66, 0xe2, 0xad, 0xfa, 0x79, 0x98, 0x90, 0x4a, 0x22, 0xa5, 0x14, 0xdb, 0x9f,
  14905. 0x81, 0xb5, 0x48, 0xb2, 0x2e, 0x17, 0x32, 0xdc, 0x5a, 0x14, 0x32, 0xbc, 0x74, 0x16, 0xfd, 0x5b,
  14906. 0x26, 0x6e, 0xf8, 0x61, 0xe8, 0x65, 0xb9, 0x4a, 0x05, 0x0e, 0x67, 0xf2, 0x67, 0x38, 0x15, 0xc5,
  14907. 0x39, 0x6b, 0xc5, 0x7a, 0xa6, 0xec, 0x10, 0x2e, 0x66, 0xb5, 0x33, 0x0f, 0x4f, 0x6d, 0xdc, 0xc9,
  14908. 0x13, 0xf0, 0x84, 0xc4, 0x2b, 0x84, 0x04, 0x2f, 0x2f, 0x19, 0x40, 0x91, 0x78, 0xd7, 0x84, 0xad,
  14909. 0xeb, 0x71, 0xa7, 0x9a, 0x0e, 0xfe, 0xb5, 0xff, 0x52, 0x05, 0x7a, 0x29, 0x0b, 0x45, 0x19, 0xad,
  14910. 0xaf, 0x80, 0x85, 0x34, 0x46, 0xe9, 0xfe, 0xe9, 0x4f, 0xdd, 0x93, 0x7d, 0x73, 0x0b, 0x15, 0x3a,
  14911. 0xb6, 0x5c, 0x7c, 0xb3, 0xb4, 0x63, 0x34, 0xab, 0x5f, 0x87, 0x56, 0xd6, 0xcb, 0xdc, 0x04, 0x56,
  14912. 0x0a, 0x13, 0xb8, 0x06, 0xd5, 0x60, 0x3e, 0x95, 0x79, 0xc5, 0xbf, 0xf6, 0x2d, 0x68, 0xe1, 0x08,
  14913. 0xb8, 0xf3, 0xef, 0x00, 0x18, 0x3d, 0x61, 0x71, 0x47, 0x9e, 0x61, 0xcc, 0x3a, 0xd1, 0x52, 0x69,
  14914. 0xfb, 0x63, 0x68, 0xee, 0x26, 0x6a, 0x5a, 0x58, 0xcf, 0xda, 0xf9, 0xeb, 0x29, 0xdd, 0x61, 0x29,
  14915. 0x08, 0xfe, 0x2d, 0x48, 0x5c, 0x59, 0x6a, 0x64, 0x48, 0x5c, 0x7f, 0x08, 0x9a, 0x3b, 0xe3, 0xcf,
  14916. 0x39, 0xd0, 0xd2, 0x9a, 0xab, 0xc5, 0x9a, 0x3f, 0x81, 0x06, 0x13, 0x42, 0x87, 0x78, 0x65, 0xfb,
  14917. 0x89, 0x9a, 0x2e, 0x97, 0xf9, 0xe8, 0xc1, 0x3a, 0x4d, 0xcc, 0x47, 0x74, 0xc5, 0x65, 0x68, 0x0d,
  14918. 0xdd, 0x43, 0x21, 0xc8, 0x64, 0x98, 0x43, 0xf7, 0x90, 0x28, 0x31, 0xfb, 0xdb, 0x4c, 0x64, 0x21,
  14919. 0x29, 0x9b, 0x27, 0x78, 0xcb, 0x2a, 0x5f, 0x24, 0x78, 0x75, 0x79, 0x1c, 0x39, 0x96, 0x1f, 0x8d,
  14920. 0xf3, 0x2b, 0x94, 0x2f, 0xaf, 0xe7, 0xc7, 0x69, 0x62, 0x3e, 0x5a, 0x9f, 0x08, 0x3a, 0xef, 0x87,
  14921. 0xc3, 0x4c, 0x0e, 0x26, 0xc4, 0x7a, 0x9c, 0xb8, 0x87, 0x9a, 0x4b, 0x42, 0x62, 0x7d, 0x1f, 0xbf,
  14922. 0xad, 0x3b, 0xb0, 0x3e, 0x0f, 0x26, 0xe1, 0xe8, 0x48, 0xf6, 0xb0, 0xb1, 0x29, 0xcf, 0x40, 0x2b,
  14923. 0x7d, 0x2e, 0x43, 0x6d, 0x50, 0x9b, 0x13, 0xe8, 0xa6, 0x27, 0x83, 0x58, 0x5f, 0x24, 0x6a, 0xa8,
  14924. 0xc2, 0x74, 0xb5, 0x1a, 0xf4, 0xbd, 0xeb, 0x21, 0xbd, 0xce, 0xc5, 0x35, 0x53, 0xc1, 0x5f, 0x78,
  14925. 0x93, 0x79, 0xea, 0xc0, 0x9d, 0x4f, 0x92, 0x41, 0x5a, 0x94, 0x0f, 0x7d, 0x4f, 0xe0, 0xfb, 0x5c,
  14926. 0x83, 0xfd, 0xd3, 0x15, 0xde, 0xc6, 0xf4, 0x8d, 0x5c, 0x36, 0x8d, 0x2f, 0xeb, 0x7f, 0xa5, 0xa4,
  14927. 0xff, 0xe6, 0x94, 0x90, 0x08, 0x2e, 0xed, 0xbc, 0xf5, 0x2e, 0xc0, 0xc2, 0xe0, 0x9f, 0x2e, 0x17,
  14928. 0x9c, 0xe0, 0xd8, 0x1c, 0x26, 0xfb, 0x69, 0xdc, 0xef, 0x42, 0x73, 0xc7, 0x8d, 0xbc, 0x2f, 0x72,
  14929. 0x14, 0x15, 0x74, 0xb0, 0xe8, 0x3d, 0x37, 0xf0, 0x6e, 0x85, 0xe1, 0x11, 0x62, 0x62, 0x11, 0x0e,
  14930. 0x6b, 0x4c, 0xcc, 0x72, 0x61, 0xdc, 0xca, 0x94, 0xc0, 0x68, 0x90, 0x6b, 0x68, 0x21, 0x24, 0xbd,
  14931. 0x30, 0xe4, 0xe6, 0x8f, 0xd4, 0x48, 0x63, 0x49, 0x86, 0x38, 0x6a, 0x64, 0x8f, 0xa1, 0x8d, 0xcd,
  14932. 0xec, 0x84, 0x93, 0x89, 0x1a, 0x25, 0x48, 0x51, 0x50, 0x65, 0x22, 0x24, 0xd1, 0xec, 0x27, 0xc2,
  14933. 0xbe, 0xc7, 0x20, 0xeb, 0x3a, 0x50, 0xed, 0x83, 0x61, 0x18, 0x1e, 0x95, 0x6e, 0x05, 0xb3, 0xdb,
  14934. 0x4e, 0x13, 0xf3, 0xe2, 0x3f, 0xfb, 0x8f, 0x2b, 0xb2, 0x71, 0x91, 0x90, 0xda, 0x96, 0x4a, 0x96,
  14935. 0x6f, 0x5c, 0x99, 0x36, 0xae, 0x80, 0xd6, 0xe1, 0x45, 0xe8, 0x51, 0x99, 0xfc, 0xbd, 0x53, 0x77,
  14936. 0xa8, 0xc7, 0x5a, 0xbc, 0x88, 0xf4, 0x39, 0xe5, 0x1a, 0xf1, 0x88, 0x84, 0xfb, 0xdd, 0x5a, 0xa8,
  14937. 0x5c, 0x46, 0xcc, 0x63, 0xd3, 0xc3, 0xbf, 0x07, 0x17, 0x98, 0x68, 0xa0, 0x2a, 0x82, 0xf9, 0x34,
  14938. 0x13, 0x35, 0x9c, 0xb9, 0xe1, 0xd7, 0xa8, 0x14, 0x56, 0xfb, 0xc1, 0x9c, 0x50, 0x80, 0xfd, 0x9f,
  14939. 0x2b, 0xd0, 0xc7, 0xd1, 0x9a, 0xb2, 0x90, 0x2b, 0x00, 0x9a, 0x75, 0x48, 0x57, 0xb1, 0x25, 0x10,
  14940. 0x91, 0x37, 0x4a, 0xf2, 0xe4, 0x58, 0xaf, 0xa4, 0x2e, 0x71, 0xff, 0x78, 0x82, 0x8b, 0xa3, 0x33,
  14941. 0x3c, 0x56, 0x22, 0x26, 0x69, 0xa6, 0x0c, 0xc6, 0xc7, 0xca, 0x8d, 0xf0, 0xfe, 0x27, 0xf2, 0x8d,
  14942. 0xee, 0x74, 0xe9, 0x77, 0x29, 0x6f, 0x82, 0x19, 0x1c, 0x23, 0xaf, 0xf5, 0x3a, 0xd4, 0x4d, 0xa2,
  14943. 0x61, 0x79, 0x21, 0xce, 0x66, 0xff, 0x72, 0x05, 0xda, 0xc6, 0x00, 0xcd, 0xce, 0xa5, 0x8b, 0x5a,
  14944. 0x4f, 0x3b, 0x47, 0x4b, 0xf3, 0x5e, 0x81, 0x75, 0x2a, 0x13, 0xe7, 0x16, 0xe6, 0x2c, 0xcf, 0x3e,
  14945. 0x7d, 0x05, 0xaa, 0x93, 0xe3, 0x58, 0x96, 0xf4, 0x8c, 0xe5, 0xc0, 0x5c, 0xf6, 0x3f, 0xaa, 0x30,
  14946. 0x12, 0x7f, 0xe0, 0xce, 0x10, 0xdd, 0x20, 0xd7, 0x93, 0x18, 0x82, 0xa0, 0xa9, 0x3b, 0x23, 0x7a,
  14947. 0xfb, 0xcb, 0x50, 0x9d, 0x85, 0x31, 0xcd, 0x76, 0x71, 0x0f, 0xee, 0x85, 0xb1, 0x4f, 0x1c, 0x02,
  14948. 0xe6, 0x40, 0xfc, 0xf3, 0x38, 0x8c, 0x26, 0xb8, 0xf1, 0xe3, 0x58, 0x70, 0xbb, 0xe0, 0x1f, 0x82,
  14949. 0xdf, 0x0a, 0xe3, 0x98, 0x79, 0xed, 0x77, 0xe1, 0x92, 0x99, 0x73, 0xec, 0x4e, 0x26, 0x2a, 0x38,
  14950. 0x54, 0xa6, 0xd8, 0x6a, 0x33, 0x2b, 0xa2, 0x93, 0x69, 0xdb, 0xbc, 0x0d, 0x4d, 0xdd, 0xaa, 0xd5,
  14951. 0x81, 0x0a, 0xcb, 0xf7, 0x57, 0x9c, 0xca, 0x09, 0x7e, 0x9d, 0x8a, 0x12, 0xab, 0x72, 0x8a, 0x5f,
  14952. 0xdf, 0xa7, 0xd6, 0x57, 0x9c, 0xca, 0xf7, 0xed, 0x6b, 0xd0, 0xf8, 0x48, 0x8d, 0x92, 0x30, 0xba,
  14953. 0xf6, 0x39, 0x0a, 0x7d, 0x02, 0xab, 0x7b, 0x13, 0xf7, 0x54, 0x45, 0x5a, 0x59, 0x5b, 0xc9, 0x94,
  14954. 0xb5, 0x4f, 0x3c, 0x29, 0x1b, 0xb0, 0x3a, 0xe7, 0x69, 0x15, 0x79, 0xd9, 0x1c, 0x27, 0xd5, 0xfe,
  14955. 0x07, 0x55, 0xe8, 0x71, 0xe5, 0xfb, 0xe3, 0xf0, 0x31, 0xb1, 0xb1, 0x8b, 0x8d, 0xa4, 0xba, 0xa2,
  14956. 0x15, 0x53, 0x57, 0x94, 0xe3, 0xfd, 0xaa, 0x05, 0xde, 0x6f, 0x13, 0x56, 0x0f, 0x55, 0xe0, 0xa9,
  14957. 0x48, 0xeb, 0x24, 0xf9, 0x0b, 0xbb, 0x81, 0x38, 0xde, 0xf7, 0x44, 0xb0, 0x50, 0xff, 0x34, 0x1c,
  14958. 0xee, 0x16, 0x64, 0x16, 0xab, 0x05, 0x99, 0x45, 0x91, 0x91, 0x6f, 0x7c, 0x1e, 0x46, 0xfe, 0x32,
  14959. 0xb4, 0xdc, 0x51, 0x22, 0x27, 0x99, 0x65, 0x47, 0x4d, 0x06, 0xec, 0x7a, 0xcb, 0x45, 0x47, 0x1b,
  14960. 0xb0, 0xea, 0x4f, 0x09, 0xff, 0x03, 0x77, 0xd3, 0x9f, 0x1e, 0xb2, 0xea, 0x2a, 0x2f, 0x9b, 0x69,
  14961. 0x2f, 0x0a, 0x13, 0x0b, 0x62, 0xae, 0x4e, 0x99, 0x32, 0xe2, 0x20, 0x0a, 0xa7, 0x83, 0xef, 0x87,
  14962. 0x81, 0xd2, 0x3c, 0x33, 0x02, 0x3e, 0x09, 0x03, 0x62, 0xa8, 0x23, 0xe5, 0x4e, 0x38, 0x71, 0x83,
  14963. 0x13, 0x11, 0x80, 0x89, 0xf6, 0x2b, 0xb0, 0xf1, 0x61, 0x32, 0x56, 0x11, 0x2f, 0x18, 0x53, 0xea,
  14964. 0xe5, 0x4b, 0x66, 0xff, 0xeb, 0x0a, 0x74, 0x1f, 0x05, 0x7e, 0xb2, 0x17, 0xc6, 0x37, 0x03, 0xef,
  14965. 0xb6, 0x5f, 0xb6, 0x77, 0x5e, 0x36, 0xf7, 0xce, 0xc5, 0xdc, 0x74, 0xca, 0x26, 0xe5, 0xad, 0xf3,
  14966. 0x32, 0x54, 0x3d, 0x9f, 0x91, 0xd8, 0xd2, 0x7c, 0x9e, 0x1f, 0x59, 0xcf, 0x43, 0xc7, 0x8f, 0x07,
  14967. 0x61, 0x30, 0x38, 0x8c, 0xc2, 0x79, 0xe0, 0x89, 0xa2, 0x05, 0xfc, 0xf8, 0xc3, 0xe0, 0x3b, 0x04,
  14968. 0x31, 0x36, 0x61, 0xdd, 0xd8, 0x84, 0xa4, 0xfc, 0x77, 0x23, 0x77, 0x6a, 0x08, 0x95, 0xe8, 0x7b,
  14969. 0xd7, 0xb3, 0xc7, 0xd0, 0xff, 0xde, 0xdc, 0x1f, 0x1d, 0xb1, 0xae, 0x46, 0xaf, 0x28, 0x92, 0xea,
  14970. 0x48, 0x03, 0xc6, 0xfa, 0x7a, 0x9e, 0xba, 0x27, 0xc8, 0xea, 0xc6, 0x98, 0x88, 0xbc, 0x27, 0x27,
  14971. 0x0a, 0x41, 0xe7, 0xb9, 0xa7, 0x59, 0x62, 0xe4, 0x3e, 0x66, 0x4e, 0x9d, 0x2d, 0x1e, 0x9a, 0x08,
  14972. 0x20, 0xe1, 0xee, 0xbf, 0xab, 0x80, 0xc5, 0xad, 0xdc, 0x39, 0xf6, 0x27, 0x78, 0xe0, 0x35, 0x5f,
  14973. 0x35, 0x0b, 0x63, 0x43, 0x83, 0xb7, 0x3a, 0x0b, 0xe3, 0x5d, 0xef, 0x04, 0x13, 0x08, 0x6b, 0x64,
  14974. 0xea, 0x42, 0xfc, 0xe4, 0x0d, 0xa0, 0x4e, 0x66, 0x7e, 0xa4, 0xcc, 0x76, 0x80, 0x41, 0x24, 0x0c,
  14975. 0x78, 0x19, 0xfa, 0x72, 0xd1, 0xab, 0x63, 0x7f, 0x62, 0x88, 0x57, 0xbb, 0x0c, 0xc6, 0xf6, 0xef,
  14976. 0x9c, 0xcc, 0x10, 0x51, 0x47, 0xea, 0x20, 0x52, 0xf1, 0x38, 0x33, 0xb0, 0xa8, 0x3b, 0x6d, 0x81,
  14977. 0x51, 0x55, 0x5b, 0xd0, 0xd0, 0x04, 0x80, 0x4c, 0x9c, 0x7c, 0xda, 0xbf, 0xbb, 0x02, 0xbd, 0x6c,
  14978. 0x38, 0xe9, 0xad, 0x16, 0x29, 0x25, 0x18, 0x51, 0xdf, 0x6a, 0x91, 0x52, 0x8c, 0x0c, 0x75, 0xf2,
  14979. 0xc4, 0x9f, 0xfa, 0x89, 0xb0, 0x4b, 0x94, 0x7c, 0x1f, 0x01, 0xd6, 0x97, 0xa1, 0x9f, 0x21, 0xc8,
  14980. 0x1c, 0x52, 0x4d, 0xc1, 0x69, 0x3d, 0x34, 0xae, 0x1c, 0xe3, 0x8b, 0x10, 0xc6, 0x0c, 0xdf, 0x84,
  14981. 0x16, 0xcd, 0x1b, 0xe1, 0x58, 0xbe, 0xc2, 0xf2, 0xfa, 0x98, 0xc5, 0x45, 0x70, 0x9a, 0x58, 0x82,
  14982. 0x6e, 0xa6, 0xef, 0xc1, 0x53, 0x5a, 0x8b, 0x54, 0xec, 0xcd, 0xea, 0x79, 0x97, 0xcd, 0x86, 0x94,
  14983. 0xdc, 0xc9, 0xf7, 0xf7, 0x39, 0x68, 0x0b, 0x29, 0x41, 0xd5, 0xb0, 0xec, 0x19, 0x98, 0x4e, 0x20,
  14984. 0x3e, 0xe0, 0x47, 0x60, 0x43, 0xfa, 0x74, 0x32, 0x53, 0x1e, 0xe1, 0xd4, 0x9b, 0xb8, 0xed, 0xcb,
  14985. 0x14, 0xd3, 0x25, 0x78, 0xb2, 0x07, 0x2b, 0xe3, 0x99, 0xcc, 0xd5, 0xca, 0x78, 0x86, 0xdf, 0xb1,
  14986. 0x5e, 0xf1, 0x95, 0x78, 0x66, 0x7b, 0xb0, 0x59, 0xac, 0x5e, 0x84, 0x58, 0x5f, 0x86, 0xbe, 0x4a,
  14987. 0x61, 0xe6, 0x9d, 0xd8, 0xcb, 0xc0, 0x74, 0x80, 0x68, 0xa7, 0xd0, 0x8e, 0x62, 0xfd, 0x34, 0x93,
  14988. 0x5b, 0x6d, 0x86, 0xb1, 0x7a, 0xfa, 0x27, 0x2b, 0x60, 0x19, 0x0d, 0xb8, 0xc1, 0x11, 0x61, 0x0e,
  14989. 0x0b, 0x6a, 0x91, 0x1b, 0x1c, 0x49, 0xbd, 0xf4, 0xdf, 0xba, 0x09, 0x30, 0x8c, 0x7c, 0x75, 0x30,
  14990. 0xf0, 0x83, 0x83, 0x50, 0xd0, 0x83, 0x9d, 0x27, 0xcb, 0xc2, 0xe9, 0x34, 0x0c, 0x18, 0x0d, 0xdd,
  14991. 0xc2, 0xac, 0x24, 0x09, 0x6d, 0x0d, 0xf5, 0x5f, 0x9c, 0x89, 0x78, 0x14, 0x46, 0x5a, 0x53, 0xce,
  14992. 0x1f, 0xf6, 0xef, 0xb7, 0x60, 0xad, 0x38, 0xd4, 0x27, 0x1f, 0xe4, 0xd5, 0x54, 0xef, 0x45, 0x9c,
  14993. 0x98, 0x41, 0x57, 0x8a, 0x66, 0x0b, 0x59, 0x30, 0xda, 0x24, 0x6f, 0xc2, 0x45, 0x5e, 0x51, 0xa3,
  14994. 0x62, 0xcd, 0xb0, 0xd6, 0x1d, 0x8b, 0xd2, 0xb2, 0x1e, 0x7c, 0x30, 0x27, 0x63, 0xa6, 0x6c, 0x3b,
  14995. 0x61, 0x56, 0x5e, 0x9e, 0x4e, 0x0a, 0xc4, 0x4c, 0xaf, 0xc3, 0x85, 0xd1, 0x3c, 0x1a, 0x14, 0x7b,
  14996. 0xcb, 0xc7, 0x72, 0x7d, 0x34, 0x8f, 0xee, 0xe4, 0x3b, 0xfc, 0x36, 0x6c, 0x1e, 0xf8, 0x81, 0x1f,
  14997. 0x8f, 0xcd, 0x22, 0xd4, 0xed, 0x55, 0xea, 0xf6, 0x45, 0x4e, 0xcd, 0x4a, 0x51, 0xe7, 0x3f, 0x84,
  14998. 0x75, 0x73, 0x2d, 0xb9, 0x40, 0x83, 0xf6, 0xf6, 0x97, 0xca, 0xce, 0x49, 0x61, 0xd3, 0x38, 0x7d,
  14999. 0x63, 0xd5, 0xa9, 0xc2, 0xab, 0xb0, 0x86, 0xdd, 0x96, 0xb9, 0xe3, 0x0d, 0xda, 0x94, 0x93, 0x3b,
  15000. 0x8f, 0xb8, 0x16, 0x3e, 0x9a, 0xef, 0x99, 0x47, 0x93, 0x85, 0xf3, 0xf6, 0x99, 0x4d, 0xd2, 0x31,
  15001. 0x30, 0x4e, 0x67, 0xb6, 0x44, 0xc3, 0xf9, 0xc1, 0x41, 0xa6, 0x8d, 0x4e, 0x97, 0xe8, 0xd6, 0xfc,
  15002. 0xe0, 0x80, 0x72, 0xbe, 0x03, 0x4f, 0x49, 0xce, 0x58, 0x21, 0x41, 0x6f, 0x14, 0x68, 0xf3, 0xe4,
  15003. 0x70, 0xf2, 0x3e, 0xa5, 0xa6, 0xc5, 0xbe, 0x07, 0x17, 0xcc, 0x3d, 0x30, 0x9e, 0x99, 0x0a, 0x99,
  15004. 0x27, 0xe9, 0xeb, 0x5a, 0xb6, 0x55, 0xee, 0xcd, 0xb4, 0x0a, 0x5c, 0xaa, 0x44, 0x1c, 0xdf, 0xd5,
  15005. 0xea, 0x7f, 0x84, 0x20, 0x9a, 0xbf, 0x01, 0xe0, 0xc6, 0xb1, 0x1f, 0x27, 0xb4, 0x2d, 0x7a, 0xe7,
  15006. 0xc9, 0xe0, 0x5b, 0x9c, 0x19, 0xb7, 0xcb, 0xb7, 0xa0, 0x3b, 0x54, 0x03, 0xa3, 0xf0, 0xb9, 0xa2,
  15007. 0xff, 0xf6, 0x50, 0xdd, 0x4c, 0x8b, 0xbf, 0x00, 0x1d, 0x29, 0xcb, 0x67, 0x7a, 0x8d, 0x79, 0x08,
  15008. 0x86, 0xd1, 0xea, 0x5a, 0x6f, 0xc1, 0x86, 0x64, 0x39, 0x9c, 0xfb, 0x13, 0x6f, 0xa0, 0x02, 0xcf,
  15009. 0x94, 0xf7, 0x5b, 0x9c, 0xf8, 0x1d, 0x4c, 0xbb, 0x13, 0x78, 0x74, 0x61, 0xdc, 0x03, 0x2b, 0xeb,
  15010. 0xd4, 0x5c, 0x5b, 0xe0, 0x58, 0x25, 0xc2, 0xab, 0xbc, 0xc5, 0x97, 0xd3, 0xd7, 0x7d, 0x7b, 0xe4,
  15011. 0xa7, 0x3a, 0x2d, 0xa9, 0xc6, 0x90, 0xcf, 0x5c, 0xa0, 0x86, 0xfb, 0x9c, 0x90, 0x09, 0x9f, 0xdf,
  15012. 0x84, 0x8b, 0x85, 0x93, 0xc3, 0xd8, 0xe1, 0x22, 0x61, 0x07, 0x2b, 0x77, 0x74, 0xf6, 0x31, 0xc5,
  15013. 0xfa, 0x1a, 0x6c, 0x95, 0x95, 0x18, 0x4c, 0xdd, 0x13, 0x22, 0x8b, 0xba, 0xce, 0xc6, 0x62, 0xa9,
  15014. 0x07, 0xee, 0x89, 0xf5, 0x2d, 0xb8, 0xbc, 0x50, 0x28, 0x93, 0x93, 0x93, 0x4a, 0xa1, 0xe6, 0x6c,
  15015. 0xa9, 0x7c, 0xc1, 0x54, 0x56, 0x8e, 0x67, 0xb6, 0x70, 0xbe, 0x4d, 0x2d, 0x43, 0xcd, 0xb9, 0x98,
  15016. 0x47, 0x4a, 0x7c, 0xe6, 0xec, 0xdf, 0x45, 0x0e, 0x66, 0x1e, 0x8f, 0x91, 0x83, 0x21, 0xf2, 0x64,
  15017. 0x26, 0x03, 0x64, 0x01, 0x22, 0xb2, 0x34, 0x3c, 0x2c, 0x91, 0x37, 0x71, 0x22, 0x4b, 0xb9, 0x9a,
  15018. 0x43, 0xf7, 0x90, 0x13, 0x9f, 0x85, 0x76, 0x34, 0x8f, 0xc7, 0x03, 0x2c, 0x2e, 0x22, 0x93, 0xae,
  15019. 0xd3, 0x8a, 0xb8, 0x5e, 0x93, 0xb2, 0xcc, 0xc8, 0x2b, 0x4d, 0x59, 0x3a, 0x44, 0x5e, 0x65, 0xd7,
  15020. 0x00, 0xe7, 0x48, 0x09, 0x06, 0x42, 0x0c, 0x94, 0xe5, 0x39, 0x68, 0x23, 0x8e, 0xd7, 0x83, 0x62,
  15021. 0xa2, 0x01, 0x10, 0x24, 0x43, 0xf9, 0xab, 0x0d, 0x00, 0x96, 0xa8, 0x91, 0x71, 0xcc, 0x55, 0x20,
  15022. 0x4d, 0xcd, 0xc0, 0x0f, 0x46, 0xa1, 0xd6, 0x8d, 0x33, 0x09, 0xd9, 0x43, 0xf8, 0x2e, 0x81, 0xb5,
  15023. 0x16, 0x15, 0x3b, 0x9e, 0x5d, 0x80, 0x3c, 0x6e, 0xc6, 0x2c, 0x1b, 0xb0, 0x9a, 0x1b, 0x55, 0x7d,
  15024. 0x4a, 0x23, 0x7a, 0x19, 0xfa, 0x48, 0xca, 0x99, 0x95, 0xb3, 0xec, 0xb0, 0x3b, 0x75, 0x4f, 0x8c,
  15025. 0xba, 0xdf, 0x83, 0xce, 0x67, 0x48, 0x05, 0x6a, 0x13, 0x1e, 0xd6, 0x38, 0xe7, 0xf9, 0xd1, 0x02,
  15026. 0x99, 0xe8, 0xb4, 0x3f, 0xcb, 0x00, 0x48, 0xb8, 0xcb, 0xcc, 0x48, 0x37, 0x56, 0xd9, 0x90, 0x85,
  15027. 0x81, 0x3c, 0xbd, 0x57, 0x61, 0xcd, 0xc8, 0x93, 0x59, 0xf1, 0x74, 0x9d, 0x5e, 0x9a, 0x8d, 0x47,
  15028. 0x93, 0xcf, 0xc9, 0x64, 0x43, 0xb3, 0x90, 0x93, 0x69, 0x8b, 0x1b, 0x40, 0x94, 0x0f, 0xdf, 0xa4,
  15029. 0xad, 0x12, 0xd9, 0x75, 0x9e, 0x44, 0x73, 0x9a, 0x98, 0x9b, 0x6e, 0xd0, 0xbb, 0xb9, 0x6b, 0x91,
  15030. 0xca, 0xb3, 0xde, 0xf3, 0xca, 0xd9, 0x97, 0x80, 0x71, 0x6b, 0x52, 0x3d, 0x2f, 0x42, 0x2f, 0x1d,
  15031. 0x0e, 0xcf, 0x70, 0x9b, 0xed, 0x74, 0xf5, 0xda, 0xd0, 0x04, 0xbf, 0x01, 0x4d, 0xbd, 0xf5, 0x88,
  15032. 0x63, 0x29, 0xd2, 0xf9, 0xb2, 0xb9, 0x9d, 0x86, 0xec, 0x46, 0xeb, 0x03, 0xd8, 0xa4, 0xb1, 0x9b,
  15033. 0x97, 0x26, 0xe3, 0x92, 0xee, 0x79, 0x64, 0xd8, 0x85, 0xa9, 0x3b, 0xdb, 0x31, 0xee, 0x55, 0xc2,
  15034. 0x26, 0xdf, 0x86, 0x67, 0xb4, 0xae, 0x30, 0x8c, 0x3c, 0x7d, 0x59, 0xb9, 0xa3, 0x91, 0x6c, 0x8b,
  15035. 0x1e, 0x9f, 0x5b, 0xd1, 0x1a, 0x86, 0x91, 0xc7, 0x03, 0xbf, 0x39, 0x1a, 0xf1, 0x0e, 0x79, 0x33,
  15036. 0x33, 0xb0, 0xc1, 0x32, 0xde, 0x3c, 0x62, 0xa5, 0x69, 0x5f, 0x54, 0x49, 0x69, 0xee, 0xdb, 0x92,
  15037. 0x92, 0x9f, 0x98, 0x31, 0x1e, 0x86, 0x35, 0xd6, 0x16, 0xe9, 0x89, 0xb9, 0x87, 0x24, 0xd8, 0xb3,
  15038. 0xd0, 0xe6, 0x1d, 0xc3, 0x59, 0xd6, 0xf9, 0x4c, 0xd2, 0xee, 0xa5, 0xf4, 0xaf, 0x80, 0x95, 0xdb,
  15039. 0x58, 0x9c, 0xcd, 0x62, 0xbd, 0x81, 0xb1, 0xbb, 0x28, 0x33, 0xe9, 0xe0, 0xf2, 0x3b, 0x8c, 0xf3,
  15040. 0x5f, 0x60, 0x3c, 0x98, 0xdf, 0x66, 0x58, 0xc4, 0xbe, 0x07, 0x5d, 0xba, 0xb8, 0x52, 0x59, 0x43,
  15041. 0x51, 0xf1, 0xf2, 0xa4, 0x02, 0x00, 0xfb, 0x17, 0x2a, 0xd0, 0x43, 0xb2, 0x8f, 0xa9, 0xb6, 0x25,
  15042. 0x9c, 0xfe, 0x17, 0x39, 0xc4, 0x37, 0xa0, 0x4e, 0x84, 0x1f, 0x1d, 0xdd, 0x27, 0xa3, 0x14, 0xb9,
  15043. 0x80, 0xfd, 0x73, 0x55, 0xb8, 0xf8, 0x71, 0x26, 0x91, 0x09, 0x12, 0x15, 0x24, 0xda, 0xae, 0x51,
  15044. 0x2c, 0x20, 0xc5, 0x22, 0x77, 0x44, 0x36, 0xab, 0x06, 0xcb, 0x55, 0xcd, 0xb1, 0x5c, 0x2f, 0x43,
  15045. 0x9f, 0x12, 0xe2, 0x39, 0xb6, 0x46, 0x17, 0xb9, 0x70, 0x54, 0x08, 0xde, 0x27, 0x28, 0x5f, 0xe6,
  15046. 0xd2, 0xd5, 0xfa, 0xe7, 0xec, 0x6a, 0x8a, 0x7b, 0x55, 0x44, 0x57, 0xf9, 0xaa, 0x81, 0x7b, 0x55,
  15047. 0x84, 0xd7, 0x75, 0x81, 0xeb, 0x6b, 0x2c, 0x70, 0x7d, 0x97, 0xa0, 0xc9, 0x44, 0xe9, 0x78, 0x26,
  15048. 0xe4, 0x57, 0x83, 0xbe, 0xef, 0xcd, 0x68, 0xb8, 0xf3, 0x08, 0x13, 0x5a, 0x32, 0xdc, 0x79, 0x74,
  15049. 0x8f, 0x64, 0x61, 0x7e, 0xcc, 0x86, 0x75, 0x74, 0xf6, 0x9b, 0x4e, 0xc3, 0x8f, 0xc9, 0xa2, 0x0e,
  15050. 0x2f, 0xdf, 0x40, 0x9d, 0xe0, 0x71, 0x31, 0xf8, 0x43, 0x3e, 0xd8, 0x7d, 0x4c, 0x70, 0x0c, 0x1e,
  15051. 0xf1, 0xaa, 0x58, 0xb0, 0xc8, 0xe4, 0x10, 0xcd, 0xca, 0x56, 0x73, 0xbd, 0x6c, 0x76, 0x48, 0x18,
  15052. 0xf4, 0x5d, 0xe8, 0x92, 0xdd, 0xdf, 0x07, 0xee, 0x54, 0x69, 0xee, 0x80, 0x24, 0x32, 0x6c, 0x61,
  15053. 0x4f, 0xff, 0xcb, 0xad, 0x6f, 0x17, 0xdd, 0x08, 0xec, 0xdf, 0xae, 0xc0, 0x66, 0xba, 0xb8, 0x8e,
  15054. 0x1b, 0x78, 0x54, 0x35, 0x55, 0x8b, 0x97, 0x90, 0x61, 0x4e, 0xc3, 0x02, 0x48, 0x11, 0x7e, 0x6b,
  15055. 0x53, 0xdc, 0x72, 0xde, 0xba, 0x64, 0xa1, 0xab, 0x65, 0x0b, 0x5d, 0x36, 0xe6, 0x5a, 0xd9, 0x98,
  15056. 0xad, 0x67, 0xa0, 0xe5, 0xc7, 0x1f, 0x1e, 0x1c, 0x4c, 0xfc, 0x80, 0xef, 0x95, 0xa6, 0x93, 0x01,
  15057. 0xec, 0x03, 0x58, 0x7b, 0xe8, 0xc6, 0x47, 0x7b, 0x51, 0x78, 0x18, 0xa9, 0x38, 0xfe, 0x3c, 0xee,
  15058. 0x02, 0xc4, 0x03, 0xa5, 0xd6, 0xc2, 0x75, 0x87, 0x3f, 0x10, 0x4a, 0xcb, 0x2e, 0x17, 0x1d, 0x7f,
  15059. 0xd8, 0xff, 0xbe, 0x02, 0x4d, 0x6d, 0x92, 0x8c, 0xa3, 0x27, 0xe3, 0xe5, 0xf4, 0x9c, 0xaf, 0xe2,
  15060. 0xe7, 0xae, 0x67, 0xbd, 0x0b, 0xcd, 0x99, 0xf4, 0xa4, 0xd4, 0xa0, 0xb7, 0xd8, 0x55, 0x27, 0xcd,
  15061. 0x9e, 0xef, 0x4c, 0x57, 0x77, 0x06, 0x69, 0x5f, 0x95, 0x1a, 0x47, 0xd5, 0x68, 0xf1, 0x5a, 0x04,
  15062. 0xd1, 0x57, 0x3a, 0x75, 0xc4, 0x60, 0x73, 0xc8, 0x5c, 0x9a, 0xa6, 0xe1, 0x0a, 0xc0, 0x38, 0xe3,
  15063. 0x38, 0xf9, 0x40, 0xb4, 0xc6, 0x29, 0xbf, 0xf9, 0x31, 0x9b, 0xca, 0xed, 0x84, 0x41, 0x4e, 0xcc,
  15064. 0x56, 0xc9, 0x89, 0xd9, 0x72, 0x66, 0xda, 0x2b, 0x4f, 0x64, 0xa6, 0x6d, 0xdf, 0x81, 0x0e, 0x6b,
  15065. 0xe5, 0xa4, 0xf2, 0x77, 0x00, 0x46, 0x61, 0xc0, 0x37, 0x5e, 0xbc, 0x44, 0x35, 0xc7, 0x59, 0x1d,
  15066. 0x23, 0x23, 0xf7, 0x2f, 0x0a, 0xb3, 0xfe, 0x95, 0xe9, 0xce, 0xff, 0x4c, 0xfd, 0x93, 0xca, 0x9f,
  15067. 0xa4, 0x7f, 0x9c, 0x35, 0xd7, 0xbf, 0x3f, 0xaa, 0xb1, 0x12, 0x06, 0x5b, 0xf8, 0x42, 0xe6, 0xec,
  15068. 0x6f, 0x93, 0x16, 0x8b, 0xab, 0x93, 0xbe, 0x6f, 0x16, 0x34, 0x8e, 0x62, 0x2d, 0xef, 0x64, 0x19,
  15069. 0xad, 0xeb, 0x62, 0xf7, 0x84, 0x10, 0x91, 0xf8, 0x5d, 0x5a, 0x10, 0xfb, 0xa7, 0x13, 0x4a, 0xb6,
  15070. 0x4f, 0x34, 0xca, 0xeb, 0xa2, 0x1f, 0xa5, 0x72, 0xb5, 0xa5, 0xe5, 0x64, 0xa0, 0xa4, 0x23, 0xa5,
  15071. 0x72, 0x3b, 0xb0, 0xc6, 0xb6, 0x2c, 0x34, 0x3e, 0xa6, 0x8b, 0xeb, 0xe7, 0xf1, 0x49, 0x3d, 0x2a,
  15072. 0x82, 0x63, 0x66, 0xc2, 0xf9, 0x26, 0xf4, 0x1f, 0x2b, 0x75, 0x64, 0xd6, 0xb1, 0x7a, 0x5e, 0x1d,
  15073. 0x5d, 0x2c, 0x91, 0x55, 0xf1, 0xa2, 0x36, 0x89, 0x72, 0x3d, 0x6f, 0xf0, 0x7d, 0x15, 0x9c, 0x0a,
  15074. 0x06, 0xef, 0x10, 0xf4, 0xa6, 0xe7, 0x7d, 0xa2, 0x82, 0x53, 0x6b, 0x1b, 0x36, 0xdc, 0xd1, 0x68,
  15075. 0x3e, 0x9d, 0x4f, 0xdc, 0xc4, 0x3f, 0x56, 0xac, 0x7c, 0x9a, 0x1e, 0x6b, 0x84, 0x7e, 0xc1, 0x4c,
  15076. 0xdc, 0xc1, 0xab, 0xfc, 0x78, 0x86, 0xa8, 0x7a, 0xe2, 0x26, 0x2a, 0x4e, 0xde, 0x19, 0x8c, 0xc3,
  15077. 0xb9, 0xf8, 0x4a, 0xb5, 0x18, 0x55, 0x4b, 0xc2, 0xbd, 0x70, 0xce, 0xee, 0x52, 0xd7, 0x60, 0x93,
  15078. 0x41, 0x03, 0xec, 0x9d, 0x59, 0x80, 0x0d, 0x17, 0x2f, 0x70, 0xea, 0xc7, 0x98, 0x98, 0x16, 0x7a,
  15079. 0x0f, 0x7a, 0xc2, 0xa7, 0x8c, 0x84, 0x16, 0x6d, 0x9f, 0x47, 0x82, 0x75, 0x12, 0xe2, 0x5d, 0x46,
  15080. 0x2c, 0xdf, 0xfa, 0x51, 0x76, 0x88, 0x31, 0x6c, 0xb5, 0x97, 0x1e, 0x88, 0xab, 0xb0, 0x46, 0x09,
  15081. 0xa6, 0x84, 0x7b, 0x85, 0xd9, 0x01, 0x84, 0x1b, 0x55, 0x94, 0x98, 0x85, 0x57, 0x4b, 0xcc, 0xc2,
  15082. 0xed, 0xff, 0x51, 0x81, 0x5e, 0xf6, 0x49, 0xf8, 0xef, 0x15, 0x60, 0x2d, 0x1d, 0x17, 0xe6, 0xb2,
  15083. 0x62, 0x89, 0x41, 0xf0, 0xbb, 0x29, 0xd8, 0xba, 0x0d, 0x7d, 0x52, 0x32, 0x1a, 0x39, 0x97, 0xf9,
  15084. 0xd1, 0x64, 0x8d, 0x38, 0xbd, 0x58, 0x7f, 0x73, 0x2d, 0xaf, 0xc3, 0x05, 0xec, 0xeb, 0x30, 0x0c,
  15085. 0x3c, 0xb3, 0x26, 0x46, 0x95, 0xeb, 0x33, 0x95, 0xdc, 0x0a, 0x03, 0xcf, 0xc8, 0x7f, 0x17, 0xd6,
  15086. 0x5c, 0x24, 0xca, 0xcc, 0xcc, 0xb5, 0xf3, 0x9b, 0xed, 0x53, 0xa1, 0xac, 0x1e, 0xfb, 0x14, 0x5a,
  15087. 0x48, 0x58, 0xdf, 0x8c, 0x54, 0x40, 0xd2, 0x59, 0x22, 0xc1, 0x99, 0x75, 0x13, 0xe9, 0x2c, 0x42,
  15088. 0x98, 0x71, 0xbb, 0x08, 0x75, 0xd3, 0x4a, 0x81, 0x3f, 0xac, 0x4d, 0x58, 0x15, 0x4e, 0x4e, 0x08,
  15089. 0x22, 0xfe, 0x2a, 0xb2, 0x79, 0xb5, 0x05, 0x36, 0xef, 0xd7, 0xea, 0xd0, 0xa2, 0x76, 0xe9, 0x42,
  15090. 0x2e, 0x91, 0xed, 0x56, 0x4a, 0x65, 0xbb, 0x19, 0x87, 0x69, 0x76, 0x46, 0x6e, 0x73, 0xce, 0x82,
  15091. 0x2c, 0xee, 0xfc, 0x34, 0x27, 0x21, 0x6e, 0x0e, 0xe7, 0xa7, 0x9c, 0x98, 0xca, 0x05, 0x6b, 0x72,
  15092. 0x27, 0x6a, 0xae, 0xf8, 0xb1, 0x1f, 0x48, 0x11, 0xb9, 0x67, 0x1e, 0xfb, 0x41, 0xa9, 0x78, 0x76,
  15093. 0xb5, 0x28, 0x9e, 0xc5, 0xd2, 0xe1, 0xc4, 0x93, 0x73, 0xcf, 0xd2, 0xdb, 0x66, 0x38, 0xf1, 0xf8,
  15094. 0x5c, 0x5f, 0x01, 0xc0, 0xaa, 0xe3, 0x24, 0x52, 0xee, 0x91, 0xb6, 0x1d, 0x7e, 0xec, 0x07, 0xfb,
  15095. 0x04, 0xb0, 0xbe, 0x04, 0xdd, 0x03, 0xd7, 0x9f, 0x28, 0x4f, 0xe7, 0x60, 0x02, 0xac, 0xc3, 0x40,
  15096. 0xc9, 0xb4, 0x0d, 0x1b, 0xc4, 0x9b, 0x64, 0x53, 0x34, 0x23, 0x22, 0x31, 0x3b, 0x94, 0x71, 0x92,
  15097. 0x32, 0x34, 0xa2, 0xa9, 0x7b, 0x11, 0x7a, 0xb1, 0x9a, 0x1c, 0x18, 0xa2, 0x4a, 0x16, 0x6b, 0x75,
  15098. 0x10, 0x9a, 0x0a, 0x2a, 0x5f, 0x86, 0xbe, 0x8b, 0x8b, 0x30, 0x88, 0x95, 0x1b, 0xb3, 0x8a, 0x8a,
  15099. 0xf5, 0x45, 0x5d, 0x02, 0xef, 0x13, 0x94, 0x0d, 0xd0, 0xa8, 0x07, 0xb9, 0xcc, 0x84, 0x17, 0xba,
  15100. 0x59, 0x17, 0x6e, 0x66, 0x45, 0x34, 0xdd, 0x27, 0xdc, 0x54, 0x36, 0xb9, 0x6c, 0x4b, 0xdc, 0x63,
  15101. 0xf8, 0xc7, 0x7a, 0x8a, 0x5f, 0x43, 0x26, 0x86, 0x72, 0x9a, 0x33, 0xcd, 0x34, 0xa2, 0xd4, 0xf1,
  15102. 0x30, 0x9b, 0xef, 0x77, 0x64, 0xa3, 0x52, 0x67, 0xc4, 0x2a, 0x75, 0x73, 0x81, 0x5b, 0xa4, 0xde,
  15103. 0xf0, 0x06, 0xe6, 0xfd, 0x7d, 0x0d, 0x36, 0x0b, 0x63, 0x1d, 0x44, 0xca, 0x9b, 0x8f, 0x58, 0x5a,
  15104. 0x85, 0xc8, 0xd3, 0x1c, 0xb2, 0x43, 0x49, 0xf6, 0x8f, 0x41, 0x97, 0x2b, 0xfa, 0xf3, 0x94, 0x57,
  15105. 0xeb, 0x7d, 0x69, 0xbf, 0xcb, 0xd6, 0x29, 0xdc, 0xff, 0xd7, 0xa0, 0xce, 0x23, 0xae, 0x94, 0x8c,
  15106. 0x38, 0x3d, 0x4a, 0x0e, 0x67, 0xb2, 0x7f, 0x63, 0x05, 0xda, 0x0f, 0x5c, 0x7f, 0x22, 0x5c, 0xcd,
  15107. 0xe7, 0xf3, 0x67, 0xb2, 0xa0, 0x66, 0x68, 0x6a, 0xe9, 0xbf, 0xf5, 0xf5, 0x3c, 0xcd, 0x7c, 0xae,
  15108. 0xa1, 0x83, 0x49, 0x4e, 0xe7, 0xc9, 0xbc, 0x7a, 0x91, 0xcc, 0x2b, 0xb0, 0x2e, 0xab, 0x0b, 0xac,
  15109. 0x4b, 0x4a, 0x3c, 0x36, 0x4c, 0x4a, 0xf6, 0x0a, 0x00, 0x6b, 0xed, 0xa8, 0x43, 0x4d, 0x76, 0x74,
  15110. 0x25, 0x08, 0x35, 0x8a, 0x84, 0xae, 0x9f, 0x4c, 0xf8, 0xae, 0x6b, 0x39, 0xfc, 0xc1, 0x96, 0xe5,
  15111. 0x34, 0x25, 0x74, 0x7a, 0x5a, 0x8e, 0xfe, 0x44, 0xfe, 0xb4, 0xc9, 0x56, 0x00, 0xfe, 0xc4, 0x7a,
  15112. 0x07, 0xf9, 0x50, 0x3f, 0x67, 0x05, 0x94, 0xd7, 0xf7, 0x1a, 0x73, 0x8b, 0x1c, 0xaa, 0xcf, 0x06,
  15113. 0x40, 0xc4, 0xad, 0x9f, 0x0c, 0xa8, 0x68, 0x3a, 0xaf, 0xad, 0xa9, 0x7b, 0x82, 0xd9, 0x77, 0x3d,
  15114. 0xeb, 0xab, 0x24, 0xc1, 0x8f, 0x06, 0x87, 0x93, 0x70, 0xe8, 0x4e, 0xd2, 0x7c, 0x3c, 0xcf, 0x6b,
  15115. 0x98, 0xf4, 0x1d, 0x4a, 0xe1, 0xec, 0xf6, 0x1b, 0x6c, 0x97, 0xe0, 0x28, 0xf2, 0x01, 0xf4, 0xe3,
  15116. 0xc1, 0x3c, 0x88, 0x90, 0x38, 0xc2, 0x72, 0xb4, 0x96, 0x4d, 0xa7, 0xe3, 0xc7, 0x8f, 0x08, 0x88,
  15117. 0x45, 0xec, 0x1f, 0x85, 0x8d, 0x9d, 0x70, 0x3a, 0x53, 0x89, 0x21, 0x90, 0xd7, 0x0e, 0xcb, 0xa9,
  15118. 0x55, 0xef, 0x49, 0x8a, 0xdc, 0xc5, 0xa0, 0xf7, 0x04, 0x6b, 0xd7, 0x1a, 0xc1, 0xc0, 0x1b, 0x24,
  15119. 0x62, 0xb7, 0x4f, 0xce, 0xd4, 0xa4, 0x10, 0x0c, 0xbc, 0x87, 0xd3, 0xe2, 0x84, 0x57, 0x0b, 0x13,
  15120. 0x6e, 0xff, 0xcf, 0x15, 0xe8, 0x1b, 0xad, 0x53, 0xbb, 0x2f, 0x41, 0x6f, 0x94, 0x81, 0xb2, 0xfb,
  15121. 0xbc, 0x6b, 0x40, 0xc5, 0x9f, 0x75, 0x1e, 0x65, 0xf2, 0x63, 0x6e, 0x1d, 0x46, 0xf3, 0x48, 0xcb,
  15122. 0x8d, 0xef, 0xa7, 0x22, 0x2f, 0x3c, 0x64, 0xa6, 0xbb, 0xca, 0xc2, 0x49, 0x5b, 0x1c, 0xbe, 0x16,
  15123. 0x8b, 0xe1, 0x7f, 0x6d, 0x76, 0x37, 0x0a, 0xa7, 0x03, 0xea, 0xbb, 0x5c, 0x05, 0xcd, 0x51, 0x38,
  15124. 0xdd, 0xc3, 0x6f, 0xeb, 0x2b, 0x60, 0xa5, 0x89, 0x44, 0x8e, 0x19, 0xbb, 0xb6, 0xaf, 0x73, 0xdd,
  15125. 0xf4, 0xbc, 0xd4, 0x77, 0x03, 0xf1, 0x2c, 0x21, 0x85, 0x55, 0xf1, 0xdd, 0x50, 0x93, 0x03, 0x44,
  15126. 0x18, 0x64, 0x3b, 0xc8, 0x96, 0xc5, 0x98, 0xca, 0x9b, 0xb7, 0xc5, 0x36, 0xee, 0x98, 0xfc, 0x22,
  15127. 0xf4, 0x88, 0x89, 0xc6, 0xd6, 0xf8, 0xf4, 0xf3, 0xfd, 0xd0, 0x41, 0xe8, 0x4e, 0x38, 0x4d, 0x29,
  15128. 0x43, 0xc6, 0xfe, 0x69, 0x2e, 0xb9, 0x23, 0x08, 0xed, 0x4b, 0x2e, 0xfb, 0x3e, 0xc0, 0x6d, 0xff,
  15129. 0xd8, 0x0f, 0x98, 0x6f, 0xc6, 0xf1, 0xcd, 0x23, 0x32, 0x14, 0x8e, 0x85, 0xbd, 0x6d, 0x8e, 0xe6,
  15130. 0xd1, 0x3e, 0x7e, 0xb3, 0xfd, 0x0d, 0xdd, 0x39, 0xb9, 0x3b, 0x94, 0x61, 0x4c, 0x91, 0x7d, 0x04,
  15131. 0xdd, 0xdb, 0xee, 0xe9, 0xfe, 0x7c, 0x36, 0x9b, 0x9c, 0x6a, 0x0f, 0x65, 0x3a, 0xaf, 0x22, 0xab,
  15132. 0xe1, 0x0f, 0x6c, 0x06, 0x97, 0xcc, 0x0f, 0x3c, 0x75, 0x22, 0x6b, 0xd6, 0x54, 0x81, 0xb7, 0x8b,
  15133. 0xdf, 0xe4, 0xe9, 0x11, 0xb9, 0x8f, 0xc5, 0xf6, 0x88, 0xfe, 0xdb, 0xf7, 0xa1, 0x73, 0xd7, 0x0d,
  15134. 0xe2, 0x8f, 0xc2, 0x84, 0x55, 0xe9, 0x65, 0xfc, 0xbd, 0xc6, 0xb0, 0x2b, 0x06, 0x86, 0x2d, 0x47,
  15135. 0x8f, 0x77, 0xa0, 0x8d, 0xb5, 0xdd, 0x0a, 0x4f, 0xb4, 0x9d, 0x6d, 0x41, 0x9a, 0xb4, 0x06, 0xd5,
  15136. 0x61, 0x78, 0xa2, 0x6d, 0xe5, 0x86, 0xe1, 0x49, 0x5a, 0x79, 0x35, 0xab, 0xdc, 0x7e, 0x9f, 0x3b,
  15137. 0x85, 0x4b, 0xb2, 0xa4, 0x9e, 0xb4, 0xf9, 0x15, 0x93, 0x6a, 0x28, 0xab, 0x6b, 0x08, 0xbd, 0x74,
  15138. 0x80, 0x64, 0x1e, 0x51, 0x2e, 0xe3, 0x3a, 0x0e, 0x13, 0x65, 0xee, 0xf4, 0x26, 0x02, 0xb4, 0xa1,
  15139. 0x7e, 0xe2, 0x8f, 0x8e, 0x52, 0x27, 0x1d, 0xae, 0xbc, 0xcd, 0x30, 0x5e, 0x9c, 0x7b, 0xd0, 0xd9,
  15140. 0xf5, 0xc2, 0x09, 0xb6, 0x43, 0x8b, 0x7d, 0x03, 0x5a, 0x07, 0x6e, 0x10, 0x9b, 0xb8, 0xea, 0x72,
  15141. 0xc1, 0x36, 0xc5, 0xec, 0x91, 0xd3, 0xc4, 0xdc, 0x74, 0x62, 0x7f, 0x7d, 0x05, 0x9a, 0x58, 0x95,
  15142. 0xae, 0x86, 0xba, 0x65, 0x58, 0x98, 0x9e, 0xa9, 0x90, 0xa1, 0x3e, 0x6b, 0xbd, 0x3e, 0xdb, 0xdb,
  15143. 0x13, 0xad, 0x27, 0x11, 0x07, 0xc8, 0x4b, 0x83, 0x68, 0xc1, 0x57, 0x60, 0xed, 0xd3, 0x90, 0x28,
  15144. 0x80, 0xf4, 0x68, 0xca, 0xa6, 0xe8, 0x23, 0xdc, 0x38, 0xb1, 0x44, 0xbb, 0x85, 0x27, 0x03, 0x93,
  15145. 0x44, 0x6b, 0x0e, 0xc3, 0x13, 0x3e, 0x08, 0x24, 0x02, 0x8b, 0xe2, 0x64, 0xc0, 0x3b, 0xb1, 0xae,
  15146. 0xfd, 0xb7, 0xa2, 0x38, 0xb9, 0xa5, 0xb7, 0x23, 0x67, 0x50, 0x81, 0x27, 0xb7, 0x48, 0x93, 0x00,
  15147. 0x77, 0x58, 0x37, 0x11, 0x2b, 0xe4, 0x0e, 0xa5, 0x38, 0xb3, 0x57, 0x6d, 0x86, 0x71, 0xf9, 0x2b,
  15148. 0x00, 0x92, 0x05, 0x2b, 0x68, 0xf2, 0x35, 0xc5, 0x90, 0x3b, 0x81, 0x67, 0xff, 0x4c, 0xc5, 0x34,
  15149. 0x55, 0x5a, 0xb2, 0x55, 0xb4, 0xa3, 0xd0, 0xd0, 0x8d, 0x55, 0xa9, 0x50, 0x54, 0xbb, 0x4d, 0xb1,
  15150. 0xa3, 0x10, 0x39, 0x50, 0xe5, 0x6c, 0x7b, 0xab, 0x4f, 0xe4, 0xcc, 0x66, 0xff, 0xdb, 0x15, 0xe8,
  15151. 0xe1, 0xd2, 0x31, 0xbd, 0x42, 0x9d, 0xf9, 0x26, 0xb4, 0x3d, 0x5a, 0xe1, 0xe5, 0x3b, 0x21, 0xdf,
  15152. 0x7d, 0x07, 0x38, 0x3f, 0xa1, 0xc4, 0xeb, 0xb2, 0xfc, 0x4b, 0xed, 0x76, 0xcd, 0x33, 0xc2, 0x8b,
  15153. 0xaf, 0xef, 0x76, 0x63, 0xf1, 0xab, 0xc5, 0xc5, 0x2f, 0x2c, 0x5a, 0xed, 0xec, 0x45, 0xab, 0x9f,
  15154. 0xb3, 0x68, 0xab, 0xe7, 0x2d, 0x5a, 0xa3, 0xb0, 0x68, 0x88, 0x3d, 0xc7, 0x6e, 0x3c, 0xc0, 0x5d,
  15155. 0x25, 0x5d, 0x6c, 0xf2, 0xbd, 0x39, 0x76, 0x11, 0x71, 0x08, 0x37, 0xf2, 0xff, 0x81, 0xa5, 0x0f,
  15156. 0x09, 0x43, 0x96, 0xac, 0xee, 0x0d, 0x68, 0xf9, 0x5e, 0x38, 0x59, 0x6e, 0x71, 0x5f, 0x3c, 0x23,
  15157. 0x98, 0x9b, 0x8e, 0xda, 0xaf, 0xae, 0xb0, 0x95, 0xa7, 0xb9, 0xdb, 0xef, 0x40, 0x1f, 0xb1, 0xb4,
  15158. 0x79, 0x2e, 0x2a, 0x25, 0x8a, 0xa5, 0xc2, 0x9d, 0x4a, 0x5a, 0x73, 0xb3, 0x9a, 0xed, 0x54, 0xaa,
  15159. 0x5f, 0xb8, 0x6a, 0x19, 0x5b, 0x5d, 0xd0, 0xcc, 0x91, 0x79, 0xe1, 0xbe, 0x0b, 0x97, 0x4a, 0xca,
  15160. 0xc4, 0xf3, 0x61, 0x46, 0x8e, 0x6c, 0x2e, 0x94, 0xdb, 0x9f, 0x0f, 0x77, 0x3d, 0xeb, 0x0d, 0x58,
  15161. 0xf5, 0xe8, 0xa6, 0x11, 0x31, 0xcb, 0x53, 0xb9, 0xce, 0x66, 0x97, 0x90, 0x23, 0xd9, 0xac, 0x57,
  15162. 0xa0, 0x86, 0xd3, 0x50, 0xea, 0xa6, 0xa9, 0xb1, 0x8f, 0x43, 0x59, 0xec, 0x11, 0xeb, 0xfe, 0xee,
  15163. 0x46, 0xbe, 0x0a, 0xc8, 0x87, 0x0a, 0x7b, 0x94, 0xee, 0xe6, 0x9a, 0xd3, 0x88, 0xe7, 0x43, 0x7d,
  15164. 0x81, 0x67, 0x38, 0x6f, 0x85, 0xd2, 0x52, 0xb4, 0x46, 0xe4, 0xe6, 0xc4, 0x1d, 0x1d, 0x65, 0x54,
  15165. 0x02, 0x92, 0x9b, 0x08, 0x11, 0x01, 0x19, 0x35, 0xb2, 0x1f, 0x8e, 0x7c, 0x77, 0x62, 0x7d, 0x0d,
  15166. 0xe0, 0x80, 0x9a, 0x23, 0x4f, 0xbb, 0x4a, 0xc9, 0x90, 0xb2, 0x1e, 0x39, 0x46, 0x56, 0xfb, 0x4f,
  15167. 0xab, 0xd0, 0xbd, 0xcb, 0xba, 0xcf, 0x89, 0xd2, 0xfe, 0x77, 0x7e, 0x3c, 0x88, 0xc2, 0x61, 0x98,
  15168. 0x08, 0x75, 0xd6, 0xf0, 0x63, 0x07, 0x3f, 0x7f, 0x10, 0x2c, 0xc2, 0x99, 0xae, 0xb2, 0x39, 0xff,
  15169. 0xfb, 0xda, 0x93, 0xfb, 0xdf, 0x17, 0x4d, 0x1b, 0xeb, 0x9f, 0xc7, 0xb4, 0xf1, 0x1b, 0xd0, 0x4b,
  15170. 0xf1, 0x56, 0x66, 0x57, 0xb2, 0x14, 0x79, 0x75, 0x34, 0xf2, 0xd2, 0xac, 0x27, 0x92, 0xca, 0xa6,
  15171. 0x7c, 0x46, 0x42, 0x16, 0x4c, 0xdd, 0x93, 0x9c, 0xdb, 0x7e, 0xdf, 0x08, 0x01, 0x90, 0x92, 0xfa,
  15172. 0x45, 0x05, 0xe1, 0x9e, 0x62, 0xcf, 0xf9, 0x6e, 0x1a, 0x1a, 0x20, 0xb5, 0x04, 0x27, 0x31, 0x23,
  15173. 0xb1, 0xcc, 0x99, 0x9d, 0x65, 0x87, 0xa1, 0x38, 0xdd, 0xbb, 0xde, 0x72, 0xdf, 0x34, 0x58, 0xe6,
  15174. 0x9b, 0x66, 0x8f, 0xa0, 0xbf, 0x33, 0x76, 0x93, 0x07, 0x2a, 0x8e, 0xdd, 0x43, 0x5e, 0xfe, 0x2d,
  15175. 0x68, 0x4c, 0xf9, 0x53, 0x47, 0x10, 0x92, 0x4f, 0x26, 0x12, 0xf3, 0xb4, 0x6d, 0x13, 0x01, 0x5a,
  15176. 0x2f, 0x83, 0xbb, 0xdc, 0x60, 0xb8, 0x70, 0x97, 0x93, 0x3e, 0xe4, 0x2f, 0xac, 0xc0, 0x05, 0x6c,
  15177. 0xa5, 0xb0, 0x2b, 0xca, 0x69, 0x8a, 0xe5, 0x3e, 0xb7, 0x99, 0x31, 0x69, 0xd5, 0x34, 0x26, 0xcd,
  15178. 0xb1, 0x80, 0xb5, 0x02, 0x0b, 0x98, 0x9a, 0x92, 0xd5, 0x4d, 0x53, 0xb2, 0x05, 0xfb, 0xd3, 0xd5,
  15179. 0x45, 0xfb, 0xd3, 0xcc, 0xf2, 0xb6, 0x91, 0xb3, 0xbc, 0xcd, 0x99, 0xeb, 0x36, 0x0b, 0xe6, 0xba,
  15180. 0xcb, 0x0c, 0x61, 0xed, 0x3f, 0xac, 0x13, 0x4b, 0xb3, 0x78, 0x34, 0x7e, 0x40, 0x93, 0xb0, 0xcc,
  15181. 0x4e, 0xb8, 0x7c, 0xfc, 0xb9, 0x29, 0x5b, 0x3d, 0x3b, 0x0a, 0x48, 0x63, 0xc1, 0xf0, 0x36, 0xe7,
  15182. 0x84, 0x99, 0x28, 0xb9, 0x89, 0x32, 0x27, 0xcc, 0x84, 0x68, 0x1c, 0xd3, 0x9b, 0x93, 0xc5, 0xb4,
  15183. 0x10, 0x66, 0x8e, 0x9c, 0x24, 0x8d, 0x7a, 0xac, 0xb4, 0x2f, 0x1b, 0x68, 0x69, 0xd4, 0x63, 0x95,
  15184. 0xb9, 0xfd, 0x71, 0x06, 0x43, 0x25, 0xd7, 0x22, 0x08, 0x95, 0x7f, 0x1e, 0x3a, 0x99, 0xee, 0x37,
  15185. 0x15, 0xf7, 0x80, 0xd6, 0xb1, 0xb2, 0x88, 0x55, 0x0e, 0x9c, 0xc8, 0x64, 0x7c, 0x4f, 0xa4, 0x3c,
  15186. 0x62, 0x43, 0xc5, 0xfa, 0xef, 0x32, 0x6b, 0xe4, 0x45, 0x4f, 0xf1, 0xfc, 0xaa, 0xf7, 0x0b, 0xab,
  15187. 0xfe, 0x1c, 0xb4, 0xc5, 0xfa, 0x8a, 0xcc, 0x8d, 0xd7, 0xb8, 0x2f, 0x0c, 0x22, 0x6b, 0x64, 0x63,
  15188. 0x5b, 0xac, 0xe7, 0x14, 0x37, 0x8b, 0x1e, 0xc4, 0xcf, 0x96, 0x79, 0x10, 0x97, 0x7b, 0x00, 0x3f,
  15189. 0xb7, 0xc4, 0x03, 0x58, 0x9c, 0xc5, 0x9f, 0xe7, 0x1d, 0x15, 0x4d, 0x87, 0x48, 0xe2, 0x93, 0x2c,
  15190. 0xfe, 0x05, 0x76, 0x29, 0xc7, 0xff, 0x65, 0x88, 0xcb, 0x4e, 0x6d, 0x46, 0x0c, 0xc4, 0xf5, 0x0a,
  15191. 0xac, 0x79, 0x6e, 0x48, 0x78, 0xe6, 0xad, 0x37, 0xdf, 0x1c, 0x24, 0xfe, 0x2c, 0xde, 0xfa, 0x12,
  15192. 0x6d, 0xca, 0xbe, 0x01, 0x7f, 0xe8, 0xcf, 0x62, 0xfb, 0x1b, 0xd0, 0x17, 0xca, 0x0c, 0x37, 0xc1,
  15193. 0x92, 0xdd, 0xbd, 0x09, 0xab, 0xbc, 0x0f, 0xc4, 0x34, 0x56, 0xbe, 0xec, 0x13, 0xe8, 0xee, 0x9f,
  15194. 0xc6, 0x89, 0x9a, 0x0a, 0x2e, 0x4a, 0xa5, 0x37, 0x15, 0x43, 0x7a, 0x73, 0xe6, 0xd1, 0x30, 0xcd,
  15195. 0x9f, 0x99, 0x80, 0xd3, 0xe6, 0xcf, 0x79, 0xcc, 0x55, 0xcb, 0x63, 0x2e, 0xfb, 0x3f, 0x56, 0xc0,
  15196. 0x92, 0x46, 0x4d, 0xe5, 0x79, 0x59, 0xfb, 0xef, 0x42, 0x83, 0x6c, 0xce, 0x85, 0x2a, 0x69, 0x6f,
  15197. 0x3f, 0x5f, 0x54, 0x05, 0x15, 0x91, 0x9c, 0xb3, 0x8a, 0x05, 0x76, 0x3d, 0xeb, 0x7a, 0x86, 0x56,
  15198. 0xab, 0x65, 0xd4, 0x51, 0x1e, 0x0b, 0xe7, 0x90, 0x6e, 0x82, 0x4b, 0x9b, 0xc6, 0x91, 0xaa, 0x39,
  15199. 0x4d, 0x06, 0xb0, 0x2b, 0x94, 0x21, 0xca, 0xa8, 0x17, 0x45, 0x19, 0x23, 0xed, 0x39, 0xe7, 0x26,
  15200. 0xd6, 0xc7, 0xf0, 0x54, 0xc8, 0xda, 0xd8, 0xc1, 0x34, 0x3e, 0x14, 0xd1, 0xab, 0x49, 0x62, 0x9f,
  15201. 0x3f, 0x94, 0x8b, 0x52, 0xc1, 0x83, 0xf8, 0x90, 0x93, 0xa8, 0x91, 0x18, 0x1a, 0xb7, 0xe6, 0xa7,
  15202. 0x9a, 0x72, 0x38, 0x0c, 0x43, 0x2f, 0x36, 0x9c, 0xdc, 0xe8, 0x5b, 0x6c, 0x0e, 0xe6, 0xa7, 0x83,
  15203. 0xcc, 0xe7, 0x6b, 0x75, 0x38, 0x3f, 0xfd, 0x60, 0x3e, 0x25, 0x0f, 0xf3, 0xf9, 0xa9, 0x69, 0xe3,
  15204. 0x8d, 0x19, 0xf5, 0x95, 0x12, 0xa9, 0x83, 0x4c, 0x6e, 0x51, 0x75, 0x1a, 0x91, 0x3a, 0xa0, 0x35,
  15205. 0x4b, 0xa0, 0xbd, 0x3f, 0x53, 0x48, 0xf9, 0xec, 0x8f, 0xc3, 0x45, 0x13, 0xef, 0x0a, 0xe5, 0xce,
  15206. 0x99, 0x78, 0x5f, 0x01, 0xe0, 0xbe, 0x99, 0xf1, 0xe4, 0x08, 0x42, 0x37, 0x2c, 0x85, 0xe1, 0xe3,
  15207. 0x1a, 0x4c, 0x8e, 0x55, 0x57, 0xcb, 0x2c, 0xeb, 0xdf, 0xa8, 0x40, 0x1b, 0xdb, 0xd3, 0xe3, 0x4d,
  15208. 0xeb, 0x34, 0x36, 0x0a, 0xd7, 0x49, 0xaa, 0xdd, 0xb7, 0xc4, 0x93, 0x52, 0x88, 0xa5, 0xc5, 0xdb,
  15209. 0x5e, 0xea, 0x61, 0x47, 0x4a, 0xaa, 0xf1, 0x1a, 0x0f, 0xd9, 0x60, 0xa1, 0xf2, 0x44, 0x8c, 0x31,
  15210. 0x68, 0x9a, 0x0c, 0x62, 0xa2, 0x7e, 0x63, 0x05, 0x9a, 0x08, 0xd9, 0x4d, 0xd4, 0xf4, 0xac, 0x35,
  15211. 0xb8, 0x08, 0xf5, 0x59, 0xe4, 0x8f, 0x52, 0xf1, 0x03, 0x7d, 0x68, 0x21, 0x0b, 0xa7, 0xe8, 0xfb,
  15212. 0x73, 0x1e, 0xed, 0x51, 0xe2, 0xb3, 0x00, 0x9e, 0x1f, 0xcf, 0x54, 0x34, 0x52, 0x99, 0xd2, 0x20,
  15213. 0x83, 0xe0, 0xf9, 0x1e, 0x87, 0x89, 0xc4, 0xb9, 0xc3, 0xbf, 0x14, 0x53, 0xd0, 0x9f, 0xfa, 0x09,
  15214. 0xcf, 0x09, 0xdf, 0x82, 0x2d, 0x82, 0xd0, 0x9c, 0xa4, 0xfa, 0x17, 0x28, 0xe8, 0x5f, 0x46, 0x7e,
  15215. 0x34, 0x9a, 0x28, 0xf1, 0x04, 0x91, 0x2f, 0xed, 0xf1, 0x9c, 0x64, 0x42, 0xfa, 0x2a, 0x7b, 0x3c,
  15216. 0x27, 0x7a, 0x83, 0xa4, 0xa7, 0xba, 0xc7, 0x1b, 0x44, 0x93, 0x23, 0xcf, 0x00, 0x8c, 0xbd, 0x01,
  15217. 0x4f, 0xbf, 0xa7, 0x31, 0xf6, 0xd8, 0xc3, 0x29, 0xda, 0xf5, 0xec, 0x9f, 0x91, 0x19, 0xd3, 0x7c,
  15218. 0xff, 0x59, 0xab, 0xb8, 0xbd, 0xb8, 0x8a, 0x85, 0x88, 0x53, 0x32, 0xf5, 0xc6, 0x32, 0xbe, 0xc1,
  15219. 0x9b, 0x9a, 0x8a, 0x54, 0xcf, 0x58, 0x78, 0xdc, 0xea, 0x3a, 0x0a, 0x4e, 0x6e, 0x03, 0xd7, 0x16,
  15220. 0x37, 0xf0, 0xc2, 0x0e, 0xad, 0x2f, 0xee, 0x50, 0x3c, 0x66, 0xc8, 0xc6, 0x6a, 0xc9, 0x41, 0xd5,
  15221. 0x59, 0xf5, 0xdc, 0xd3, 0x3b, 0xcc, 0x84, 0x90, 0x6e, 0x57, 0x73, 0x97, 0x55, 0xa7, 0x81, 0xdf,
  15222. 0x77, 0x02, 0xcf, 0x7e, 0x87, 0xe7, 0x82, 0x8e, 0xc1, 0x2b, 0x50, 0x5b, 0xea, 0x9a, 0xab, 0x27,
  15223. 0xcc, 0xa1, 0x2c, 0xf6, 0x1f, 0x57, 0xa1, 0xf3, 0x91, 0xaf, 0x1e, 0xa7, 0x7c, 0x43, 0xd1, 0xf7,
  15224. 0x39, 0xb5, 0x12, 0x5a, 0xf9, 0xbc, 0x56, 0x42, 0x5a, 0xfa, 0x80, 0x94, 0xf6, 0x39, 0x92, 0x84,
  15225. 0x48, 0x7b, 0x16, 0xbf, 0x02, 0x35, 0xca, 0x5e, 0x5b, 0x22, 0xac, 0xc0, 0x4c, 0x0e, 0x65, 0xb1,
  15226. 0xb6, 0xa1, 0x21, 0xf4, 0x7f, 0x29, 0xa3, 0x60, 0x78, 0xe4, 0x39, 0x3a, 0x63, 0x9e, 0x33, 0x59,
  15227. 0xfd, 0xe2, 0x9c, 0xc9, 0xe7, 0x72, 0xba, 0x7a, 0x1a, 0x9a, 0x9e, 0xcb, 0xa6, 0xb5, 0x9a, 0xd4,
  15228. 0xd4, 0xdf, 0x05, 0xd4, 0xdf, 0x2a, 0xaa, 0x0d, 0x70, 0x53, 0x93, 0x31, 0x33, 0x5d, 0x95, 0xac,
  15229. 0x23, 0x68, 0x11, 0x84, 0xee, 0xca, 0x37, 0xa0, 0x99, 0xf2, 0x21, 0xed, 0x33, 0xf8, 0x90, 0xc6,
  15230. 0x8c, 0x39, 0x10, 0x7b, 0xc0, 0x9b, 0x64, 0x27, 0x64, 0xae, 0x35, 0x1e, 0x87, 0x39, 0xef, 0xc2,
  15231. 0x26, 0x02, 0xb4, 0x13, 0x52, 0xa4, 0xe4, 0x2c, 0x49, 0xb8, 0xc7, 0x48, 0xf1, 0x49, 0x22, 0xa7,
  15232. 0x2c, 0xd3, 0x93, 0xb0, 0xeb, 0x60, 0x5e, 0xc6, 0xad, 0x3f, 0x2f, 0x7a, 0x0b, 0xc2, 0xe7, 0xaf,
  15233. 0x41, 0xcd, 0x67, 0x3e, 0x76, 0x51, 0x65, 0x61, 0x20, 0x60, 0x87, 0x72, 0x21, 0x01, 0xc7, 0x54,
  15234. 0x54, 0xfe, 0x86, 0x61, 0x7d, 0xe7, 0x2d, 0xbe, 0x66, 0xde, 0x84, 0xe6, 0x28, 0x24, 0x12, 0x4a,
  15235. 0xbb, 0x53, 0x2e, 0x6e, 0x6e, 0x1c, 0x9c, 0xd3, 0xc0, 0x6c, 0x8e, 0x8a, 0xed, 0xaf, 0x40, 0x67,
  15236. 0x67, 0x1e, 0x91, 0xd6, 0x78, 0xdf, 0x3f, 0x24, 0x09, 0x0f, 0x11, 0x61, 0xb1, 0x7f, 0x18, 0xc8,
  15237. 0x05, 0xd3, 0x44, 0x00, 0x26, 0xda, 0x3f, 0x01, 0xab, 0xf8, 0xfb, 0x68, 0x46, 0x28, 0xcb, 0x3f,
  15238. 0x0c, 0xf2, 0xfa, 0x67, 0x84, 0xb0, 0xfe, 0xf9, 0x29, 0x68, 0x20, 0xb6, 0xf5, 0xdc, 0x53, 0x7d,
  15239. 0x0f, 0x8e, 0xe6, 0xd1, 0x6d, 0xf7, 0xd4, 0xfa, 0x16, 0x74, 0x49, 0xd6, 0x8d, 0x65, 0x05, 0x6f,
  15240. 0x2c, 0x9a, 0x5e, 0x98, 0x1d, 0x72, 0xda, 0xa3, 0x79, 0x84, 0x7f, 0x88, 0x8d, 0xff, 0xad, 0x1a,
  15241. 0xdb, 0xcb, 0xdc, 0x1c, 0x25, 0xfe, 0xb1, 0x9f, 0x9c, 0x5a, 0x6f, 0x42, 0x2b, 0xab, 0x8b, 0xe5,
  15242. 0x01, 0x17, 0xf2, 0x23, 0xa6, 0xfe, 0x3a, 0xcd, 0x58, 0xaa, 0xb0, 0xbe, 0xcc, 0x0e, 0x0e, 0x82,
  15243. 0x3f, 0x4c, 0x2e, 0xaf, 0xcb, 0x7d, 0xd4, 0x4a, 0x8c, 0x0f, 0xc1, 0x72, 0xa5, 0x19, 0x83, 0x69,
  15244. 0xe6, 0x59, 0x7d, 0x21, 0xaf, 0xcf, 0xe3, 0x6c, 0xbe, 0x8a, 0x8d, 0x78, 0x18, 0x6b, 0xba, 0x70,
  15245. 0xca, 0x44, 0xbf, 0x0a, 0xeb, 0x2c, 0x3c, 0x33, 0xc9, 0x5b, 0xa6, 0x75, 0xfa, 0x94, 0xb0, 0x93,
  15246. 0x51, 0xb7, 0xef, 0xc2, 0xa5, 0x5c, 0xde, 0x9c, 0xc3, 0x0e, 0xa3, 0xc4, 0x4d, 0xa3, 0x8c, 0x93,
  15247. 0x79, 0x71, 0x58, 0x1f, 0x83, 0x25, 0xbe, 0xfd, 0x52, 0xd6, 0x38, 0xcc, 0xaf, 0x2c, 0xe9, 0xf7,
  15248. 0x23, 0x2a, 0xa0, 0xe9, 0x6b, 0xee, 0x3f, 0x57, 0xc2, 0xf5, 0x53, 0xff, 0x3f, 0x80, 0xcd, 0x7c,
  15249. 0xc5, 0x63, 0x37, 0x36, 0x1d, 0x4e, 0xce, 0xb2, 0xe2, 0x35, 0x2b, 0xbb, 0xe7, 0xea, 0x30, 0x4d,
  15250. 0x1b, 0xac, 0x36, 0xf4, 0x06, 0xe9, 0x44, 0x1b, 0xda, 0xc1, 0x0b, 0x92, 0xa8, 0xd7, 0x9a, 0xca,
  15251. 0x7c, 0x13, 0x3a, 0xee, 0x28, 0x21, 0xda, 0xce, 0x88, 0x5e, 0x98, 0x77, 0xdb, 0xcf, 0x11, 0xd8,
  15252. 0x0e, 0xb8, 0xa3, 0xe4, 0x41, 0x7c, 0x48, 0xc7, 0xfb, 0x0f, 0x1a, 0x70, 0xb1, 0x6c, 0xb1, 0x28,
  15253. 0x6c, 0x63, 0x0a, 0xcf, 0x68, 0x8a, 0x4e, 0x06, 0xdc, 0x25, 0x07, 0x2b, 0x23, 0x93, 0x71, 0xf4,
  15254. 0x7b, 0x19, 0x58, 0x1b, 0xbb, 0x19, 0xf7, 0x79, 0x55, 0xa4, 0x9c, 0xa5, 0xf7, 0x39, 0x2f, 0x7f,
  15255. 0x7a, 0x9f, 0x1b, 0xe7, 0xa6, 0x9e, 0x3b, 0x37, 0x77, 0x60, 0x9d, 0x03, 0x93, 0x99, 0x6a, 0xdd,
  15256. 0x73, 0x11, 0x74, 0x9f, 0xca, 0x18, 0xa1, 0xc5, 0xbe, 0x0b, 0xbd, 0x83, 0x30, 0x4a, 0x02, 0x62,
  15257. 0x87, 0x3c, 0xf7, 0x34, 0x16, 0x4c, 0xfd, 0xe2, 0x92, 0x7d, 0x71, 0x57, 0x67, 0xbe, 0xed, 0x9e,
  15258. 0xc6, 0x4e, 0xf7, 0xc0, 0xfc, 0xcc, 0x70, 0x33, 0x8d, 0x44, 0x24, 0xf0, 0x04, 0xd1, 0xca, 0x91,
  15259. 0xdc, 0xae, 0x6d, 0x99, 0xd6, 0x1f, 0xbc, 0x55, 0x3f, 0x80, 0xbe, 0xf8, 0xf3, 0xa7, 0xce, 0x4e,
  15260. 0x50, 0x12, 0x73, 0x26, 0xeb, 0xcf, 0x4e, 0x9a, 0x9b, 0x63, 0xa4, 0x64, 0xa5, 0x65, 0x87, 0xf6,
  15261. 0x27, 0xfe, 0x91, 0x3b, 0xf4, 0x27, 0xfa, 0xd0, 0x4a, 0x1c, 0xaf, 0x65, 0xf5, 0xdd, 0x4f, 0x73,
  15262. 0x73, 0x7d, 0x93, 0xdc, 0x37, 0xde, 0xd0, 0x47, 0x7e, 0x70, 0x48, 0xa6, 0x62, 0xe2, 0x36, 0xb4,
  15263. 0xcc, 0x92, 0x0e, 0xf3, 0x91, 0xf5, 0xdd, 0x97, 0xa1, 0x4f, 0xdc, 0x26, 0x97, 0x43, 0x0e, 0x86,
  15264. 0x28, 0xba, 0xae, 0xd3, 0xd3, 0xe0, 0x87, 0x04, 0xb5, 0xbe, 0x0d, 0x5d, 0x75, 0x22, 0xf2, 0xae,
  15265. 0xa5, 0x31, 0x2e, 0xef, 0x48, 0x0e, 0x96, 0xc9, 0xe9, 0xfc, 0x34, 0xd8, 0x6f, 0x01, 0x3c, 0x1e,
  15266. 0x2b, 0x35, 0xe1, 0x71, 0xb2, 0xbb, 0xd0, 0xb3, 0x65, 0xe3, 0x3c, 0xfd, 0x18, 0xb3, 0x71, 0x3c,
  15267. 0x97, 0xc7, 0xfa, 0x2f, 0x85, 0x13, 0x46, 0xcc, 0x49, 0xa5, 0xd7, 0x4a, 0x9c, 0x0d, 0x74, 0x69,
  15268. 0x46, 0xbe, 0x8c, 0x41, 0xa9, 0xe4, 0x0e, 0xf4, 0x86, 0xc9, 0x20, 0x0a, 0x47, 0xa1, 0x2f, 0xc5,
  15269. 0x2f, 0x96, 0xf8, 0x1a, 0xe8, 0xe2, 0xb7, 0x1e, 0x3a, 0x1f, 0xee, 0x84, 0x7e, 0xe0, 0x74, 0x86,
  15270. 0x89, 0x43, 0x65, 0xa8, 0x92, 0x8f, 0xe1, 0x8a, 0x84, 0x8b, 0xfa, 0xd4, 0x77, 0x0d, 0x96, 0x3f,
  15271. 0x35, 0x5c, 0xdc, 0x38, 0x6b, 0xba, 0x2f, 0x71, 0x38, 0xa9, 0x4f, 0x7d, 0x37, 0x95, 0x09, 0x68,
  15272. 0x8b, 0xca, 0xdf, 0xac, 0xc0, 0x5a, 0xb1, 0x6d, 0xeb, 0x5b, 0xd0, 0x37, 0x0c, 0x07, 0xcf, 0x37,
  15273. 0x8c, 0xec, 0xa6, 0x36, 0x83, 0x42, 0xde, 0xf4, 0x32, 0x93, 0xc1, 0xf3, 0xcd, 0x3b, 0x3b, 0xda,
  15274. 0x5a, 0x50, 0x88, 0xcd, 0x75, 0x2a, 0x9c, 0xbb, 0x71, 0x18, 0x29, 0x50, 0xad, 0xd9, 0x95, 0x63,
  15275. 0xef, 0x43, 0x2f, 0x3f, 0xeb, 0xa9, 0xd6, 0x99, 0x96, 0xca, 0xf0, 0xa7, 0x21, 0xad, 0x33, 0xe6,
  15276. 0x49, 0xf5, 0xda, 0xbc, 0x96, 0xa7, 0xa9, 0x1f, 0x33, 0x2f, 0xd7, 0x69, 0x6c, 0xff, 0xee, 0x0a,
  15277. 0xac, 0x2f, 0xec, 0x04, 0xeb, 0x11, 0x6c, 0xf2, 0xee, 0xd1, 0x8a, 0xfa, 0x42, 0x30, 0x9c, 0x3c,
  15278. 0x9f, 0x4c, 0xe5, 0x44, 0x45, 0x2f, 0xd4, 0xbf, 0x73, 0xe1, 0x71, 0x1e, 0xa8, 0x09, 0x32, 0xae,
  15279. 0x36, 0x9c, 0xa9, 0x40, 0xbb, 0x05, 0x13, 0xe4, 0xc3, 0x99, 0x0a, 0xf0, 0x0a, 0xd4, 0xad, 0x32,
  15280. 0x8d, 0x9f, 0x39, 0x5a, 0xf6, 0xa5, 0x3a, 0x82, 0x8b, 0x4b, 0x5b, 0xa2, 0xa6, 0xb3, 0x89, 0x9b,
  15281. 0x28, 0xc3, 0x46, 0xbf, 0xad, 0x61, 0xbb, 0xde, 0x09, 0x99, 0x82, 0x51, 0x75, 0x58, 0x8d, 0x36,
  15282. 0x05, 0x43, 0x00, 0x96, 0x4f, 0x13, 0xb1, 0xf0, 0xaa, 0x91, 0x88, 0x25, 0xdf, 0x86, 0xe6, 0x24,
  15283. 0x3c, 0x5c, 0x7e, 0x7b, 0xd1, 0x80, 0xef, 0x87, 0x87, 0x4c, 0x1e, 0x4e, 0x42, 0xbe, 0x3f, 0x6e,
  15284. 0x42, 0xc7, 0x3c, 0x90, 0x0b, 0x76, 0x3a, 0x2f, 0x40, 0x7a, 0x44, 0x4d, 0x0a, 0x4d, 0xc3, 0x3e,
  15285. 0x98, 0x4f, 0x6d, 0x3f, 0xab, 0x42, 0xb3, 0x44, 0xa9, 0x3d, 0xad, 0x11, 0x70, 0x34, 0x85, 0x91,
  15286. 0x4c, 0xa5, 0x45, 0x44, 0x1d, 0x2e, 0xd1, 0xf9, 0x41, 0x7a, 0x88, 0x00, 0xc4, 0xf5, 0xb0, 0x07,
  15287. 0xe9, 0x6e, 0xc2, 0xcb, 0xae, 0xac, 0xbf, 0x5a, 0xf8, 0xb3, 0x62, 0x08, 0x7f, 0xcc, 0xdb, 0xa9,
  15288. 0x9a, 0xbf, 0x9d, 0x7a, 0xb0, 0x32, 0x3c, 0xa4, 0x75, 0x68, 0x39, 0x2b, 0xc3, 0x43, 0xfb, 0x6f,
  15289. 0x55, 0xe0, 0xa9, 0x25, 0x77, 0x05, 0x49, 0x36, 0x33, 0x03, 0x5b, 0x21, 0x10, 0x93, 0xd4, 0x82,
  15290. 0xf6, 0x55, 0x58, 0xcf, 0x92, 0x33, 0x65, 0x34, 0x9b, 0x6d, 0xea, 0x5c, 0xa2, 0x95, 0xcc, 0xd9,
  15291. 0x33, 0x57, 0x9f, 0xcc, 0xae, 0xfa, 0xc7, 0xe1, 0x99, 0xb3, 0xa8, 0x9b, 0x27, 0xbb, 0xf0, 0xf3,
  15292. 0xf7, 0xf8, 0xca, 0x59, 0xf7, 0x78, 0x7e, 0xa6, 0xec, 0x03, 0xd8, 0x5a, 0x76, 0x69, 0x2d, 0x2c,
  15293. 0x42, 0x66, 0xed, 0x93, 0x6d, 0x19, 0xb1, 0xf6, 0x91, 0x6d, 0x1c, 0x84, 0x83, 0x20, 0x4c, 0xb4,
  15294. 0x48, 0xa3, 0xe9, 0x34, 0x83, 0xf0, 0x03, 0xfa, 0xb6, 0xef, 0x9a, 0xed, 0xe4, 0x2f, 0xb3, 0x25,
  15295. 0x71, 0xea, 0x2f, 0x42, 0x9d, 0x0d, 0x69, 0x74, 0x20, 0x71, 0xfc, 0xb0, 0x27, 0xd0, 0x67, 0xa5,
  15296. 0xd9, 0xc3, 0xf0, 0xb1, 0xb8, 0xfb, 0x14, 0x64, 0xd7, 0x95, 0x05, 0xd9, 0xf5, 0x0d, 0xa8, 0x23,
  15297. 0xd5, 0xad, 0x9d, 0x0b, 0x9e, 0x88, 0xf1, 0xa5, 0x02, 0xda, 0x92, 0x95, 0xda, 0xfa, 0x73, 0xb6,
  15298. 0x64, 0xfd, 0x13, 0x89, 0x21, 0xf5, 0x50, 0x9b, 0x1d, 0x07, 0xe1, 0xe3, 0xc1, 0xe2, 0x38, 0xbb,
  15299. 0x41, 0xf8, 0xf8, 0x61, 0x36, 0x54, 0xc4, 0xc2, 0x69, 0x3e, 0x23, 0xe2, 0x6f, 0x47, 0x67, 0xa3,
  15300. 0xfd, 0xa0, 0x4d, 0x1d, 0x93, 0xd4, 0x1e, 0xb8, 0xcc, 0xd4, 0x91, 0xf2, 0xf3, 0x08, 0xd3, 0x4e,
  15301. 0xc4, 0xa7, 0x69, 0xc8, 0x58, 0x83, 0x2a, 0xec, 0xc6, 0xa7, 0x12, 0x16, 0x96, 0xaa, 0xff, 0x26,
  15302. 0x5c, 0x36, 0x3a, 0x3a, 0xc8, 0xf4, 0xf8, 0xa6, 0xc9, 0xd3, 0x53, 0xd9, 0x02, 0xdd, 0xd6, 0x6a,
  15303. 0x7d, 0xda, 0x91, 0xf7, 0xa0, 0xe3, 0xa8, 0x83, 0x79, 0xac, 0xbc, 0x9b, 0xb3, 0xd9, 0x44, 0x87,
  15304. 0x66, 0x9d, 0xa4, 0x6e, 0x16, 0x35, 0x0a, 0xcd, 0x3a, 0x91, 0xc8, 0x53, 0x2e, 0xe6, 0x31, 0x47,
  15305. 0xda, 0x22, 0x08, 0xd5, 0x74, 0x1b, 0x9a, 0xb7, 0xdd, 0xd3, 0x3f, 0x6b, 0x2d, 0xbf, 0x54, 0x81,
  15306. 0x1e, 0x8d, 0x3f, 0xd3, 0x11, 0xed, 0x40, 0x7b, 0x14, 0xb2, 0xa7, 0x4e, 0xc6, 0xcd, 0x3d, 0xc9,
  15307. 0xb6, 0x02, 0x2e, 0xa6, 0xb7, 0xad, 0x28, 0x44, 0xd2, 0x76, 0xeb, 0x8e, 0xf8, 0x6c, 0xeb, 0x70,
  15308. 0xa6, 0x92, 0x41, 0xc7, 0x62, 0xd6, 0x3e, 0x41, 0x04, 0x95, 0x68, 0xcc, 0xf6, 0xf7, 0xa1, 0xe7,
  15309. 0x28, 0xac, 0x57, 0x05, 0x1e, 0xf9, 0x44, 0x9f, 0x35, 0xd6, 0xf2, 0x50, 0x0e, 0xcf, 0x41, 0x9b,
  15310. 0xd0, 0x89, 0x11, 0xda, 0xa3, 0x4a, 0xec, 0x88, 0x7f, 0xac, 0xf4, 0x7b, 0x27, 0xfc, 0x25, 0xee,
  15311. 0x3d, 0xf2, 0x85, 0xd7, 0x4c, 0xda, 0xf6, 0xbe, 0x4a, 0xac, 0xb7, 0xa0, 0x4e, 0x2d, 0x95, 0x5a,
  15312. 0x89, 0xe4, 0x7b, 0xe9, 0x70, 0x4e, 0xfb, 0x87, 0xa0, 0xfd, 0x40, 0x4d, 0x87, 0x32, 0x4b, 0x25,
  15313. 0x0a, 0x8a, 0x17, 0xa0, 0xa3, 0x05, 0xe5, 0xc6, 0x02, 0xb5, 0x05, 0xa6, 0x0d, 0x39, 0xd9, 0x26,
  15314. 0x53, 0x04, 0xa9, 0xf4, 0x61, 0xff, 0xb5, 0x0a, 0xf4, 0xa9, 0x29, 0x44, 0x41, 0x07, 0x8c, 0x6a,
  15315. 0xbe, 0xaa, 0x65, 0x60, 0x65, 0x1a, 0x79, 0xca, 0x4c, 0xdd, 0xd0, 0x82, 0xaf, 0xcb, 0xd0, 0x9a,
  15316. 0xaa, 0x69, 0x3e, 0x8e, 0xde, 0x54, 0x4d, 0x59, 0xb6, 0xc7, 0x7a, 0x79, 0xda, 0x28, 0x82, 0xee,
  15317. 0x1a, 0x7e, 0xcc, 0xbb, 0x6d, 0x03, 0x56, 0x47, 0xb3, 0x34, 0xe0, 0x42, 0xd3, 0xa9, 0x8f, 0x66,
  15318. 0x7c, 0xa5, 0x02, 0x8f, 0x55, 0x5f, 0xa8, 0xe2, 0x9b, 0xc1, 0x53, 0xcb, 0xbe, 0x00, 0x2c, 0x25,
  15319. 0x21, 0x5c, 0xa9, 0xbe, 0xb8, 0xc8, 0xce, 0xfe, 0xa9, 0x0a, 0x58, 0x3c, 0x9e, 0x30, 0x8e, 0x91,
  15320. 0x3c, 0x50, 0x09, 0x9b, 0x25, 0xb4, 0x58, 0xc3, 0x34, 0x09, 0x0f, 0x65, 0x0e, 0x9e, 0x5e, 0x9c,
  15321. 0x03, 0x52, 0x37, 0xdd, 0x0f, 0x0f, 0x9d, 0xe6, 0x81, 0xfc, 0xb3, 0xae, 0x8b, 0x04, 0xe8, 0xc9,
  15322. 0x3b, 0x42, 0xf9, 0xed, 0x23, 0xe8, 0xa6, 0xdd, 0xd0, 0x5e, 0x60, 0xda, 0x07, 0x4e, 0xbc, 0xc0,
  15323. 0xc4, 0x07, 0xee, 0x0a, 0xb0, 0x52, 0x33, 0x77, 0x87, 0x11, 0x44, 0x87, 0xae, 0xe5, 0xe4, 0x51,
  15324. 0xee, 0x22, 0x63, 0xdd, 0xe8, 0x0e, 0xa3, 0x8e, 0x7f, 0x5e, 0x81, 0x26, 0xb5, 0x86, 0x3d, 0xbe,
  15325. 0x04, 0xcd, 0x70, 0x36, 0xe0, 0x7d, 0x21, 0x82, 0xf7, 0x70, 0xf6, 0x90, 0xac, 0x75, 0xe9, 0x45,
  15326. 0x21, 0x53, 0x69, 0xb5, 0x1a, 0xce, 0x48, 0x0c, 0xf7, 0x2c, 0xb4, 0x87, 0x6a, 0x90, 0x16, 0x93,
  15327. 0x60, 0x75, 0x43, 0xf5, 0xa1, 0x14, 0x7c, 0x06, 0x80, 0xd3, 0xa9, 0x2c, 0xd3, 0x17, 0x4d, 0x4c,
  15328. 0xa6, 0xd2, 0x14, 0x21, 0x46, 0x05, 0x89, 0xe9, 0x58, 0xd6, 0x22, 0x88, 0x66, 0xb6, 0x25, 0x39,
  15329. 0x33, 0x47, 0x96, 0x64, 0xec, 0xfc, 0x4d, 0x68, 0xeb, 0xbe, 0xe3, 0x51, 0xda, 0x06, 0x16, 0x0f,
  15330. 0xca, 0x4a, 0x2d, 0xd2, 0x12, 0x3a, 0xb3, 0xc3, 0x87, 0xfd, 0x7e, 0x78, 0x68, 0xff, 0x9b, 0x8a,
  15331. 0xd4, 0xc1, 0xbb, 0x4c, 0xb6, 0xef, 0x50, 0x45, 0x19, 0x26, 0x68, 0x32, 0x80, 0x51, 0x01, 0x8f,
  15332. 0x72, 0xc5, 0x38, 0x34, 0x0b, 0xa7, 0xad, 0xba, 0x78, 0xda, 0xbe, 0x99, 0x62, 0x0b, 0xda, 0x11,
  15333. 0xb5, 0xf3, 0xed, 0x95, 0x04, 0x95, 0x68, 0xc7, 0x6d, 0xd7, 0xf3, 0x24, 0xb2, 0x83, 0xf9, 0xc0,
  15334. 0x92, 0xeb, 0x31, 0x62, 0xa0, 0xc9, 0xf8, 0x27, 0x15, 0x7d, 0x54, 0x68, 0xd3, 0x6c, 0xc0, 0xea,
  15335. 0x2c, 0x52, 0xd9, 0x28, 0xea, 0xb3, 0x48, 0xed, 0x92, 0x17, 0xf3, 0xb1, 0x3f, 0x52, 0x03, 0x49,
  15336. 0x63, 0x83, 0x9d, 0x16, 0x82, 0xf6, 0x28, 0xfd, 0x5d, 0x68, 0xeb, 0xf1, 0x67, 0x92, 0xff, 0xad,
  15337. 0xc5, 0x59, 0xe4, 0x96, 0x1c, 0x98, 0x66, 0x87, 0xf3, 0x32, 0x32, 0xd4, 0xa3, 0xa3, 0x9c, 0x86,
  15338. 0x12, 0x01, 0x9a, 0x9e, 0xa2, 0xc4, 0x8c, 0x98, 0x6f, 0xe0, 0x37, 0x1e, 0xf1, 0x5f, 0xaf, 0x00,
  15339. 0x64, 0x78, 0xe4, 0x9c, 0x6b, 0xc7, 0x90, 0x08, 0xaf, 0x14, 0x25, 0xc2, 0xcf, 0x41, 0x9b, 0x93,
  15340. 0x87, 0xae, 0x77, 0xa8, 0xb7, 0x22, 0x97, 0xb8, 0x85, 0x90, 0x2c, 0x83, 0x19, 0x90, 0x88, 0x33,
  15341. 0x30, 0x2d, 0xf0, 0x02, 0x74, 0x38, 0x83, 0xe0, 0x97, 0x3a, 0xe3, 0x17, 0x82, 0x31, 0x7e, 0xb1,
  15342. 0xff, 0xfe, 0x0a, 0xb4, 0xb8, 0xb7, 0x6e, 0x8c, 0xd8, 0x46, 0x37, 0xf9, 0x24, 0x28, 0x52, 0xfa,
  15343. 0x42, 0xc3, 0x14, 0x6b, 0x3d, 0x69, 0x88, 0x09, 0xb6, 0x96, 0xe7, 0x9e, 0x0a, 0x1a, 0xbb, 0xac,
  15344. 0xf7, 0xb2, 0x3a, 0xd1, 0xb1, 0x4e, 0x79, 0x5a, 0xee, 0x9c, 0xcc, 0x8a, 0x97, 0x4f, 0x6d, 0xe1,
  15345. 0xf2, 0x21, 0xf1, 0xcc, 0x28, 0x9a, 0xfb, 0xb9, 0x83, 0xd5, 0x16, 0x18, 0x1d, 0x2d, 0xd2, 0xc5,
  15346. 0x70, 0x96, 0xdc, 0x63, 0x26, 0x02, 0x4c, 0x63, 0xb7, 0x09, 0x71, 0xda, 0xe0, 0x43, 0xcf, 0x5f,
  15347. 0x78, 0xcf, 0xea, 0xc2, 0x92, 0xde, 0xa4, 0x74, 0x5d, 0xa5, 0x50, 0xb0, 0x1f, 0x41, 0xfb, 0xb6,
  15348. 0x9a, 0x22, 0x69, 0x3c, 0x75, 0x0f, 0x55, 0xb9, 0x26, 0xdd, 0xa3, 0x34, 0x41, 0x5e, 0xf2, 0x55,
  15349. 0x40, 0x6c, 0xd5, 0x02, 0x62, 0xb3, 0x7f, 0x43, 0xef, 0x18, 0xaa, 0x5d, 0xdb, 0xac, 0x7b, 0x6a,
  15350. 0x6a, 0xb2, 0x59, 0x30, 0x9a, 0x47, 0x94, 0xbe, 0xeb, 0x65, 0xf7, 0x46, 0xae, 0x35, 0xbe, 0x37,
  15351. 0xa4, 0x73, 0xef, 0x42, 0x9b, 0x13, 0x4d, 0x56, 0x24, 0xbf, 0xf1, 0x8d, 0xb1, 0x38, 0xc0, 0x99,
  15352. 0x89, 0x2f, 0x2e, 0xd3, 0x7c, 0xd5, 0x72, 0x9a, 0x2f, 0xfb, 0x27, 0xe4, 0x5e, 0xbd, 0x99, 0x9d,
  15353. 0xea, 0x17, 0xa0, 0x23, 0x8b, 0xc8, 0x1e, 0xc3, 0x72, 0x97, 0x31, 0x8c, 0x50, 0x01, 0x85, 0x4f,
  15354. 0x4d, 0xf7, 0xc8, 0xc0, 0x74, 0x2c, 0xee, 0xa5, 0x3b, 0x85, 0x73, 0x9e, 0x47, 0x8e, 0xd8, 0x27,
  15355. 0x1c, 0xcd, 0x95, 0xee, 0x5a, 0x6a, 0x7e, 0x9b, 0xc3, 0xa3, 0xf1, 0x5d, 0x5c, 0x86, 0x2c, 0x35,
  15356. 0x1d, 0x48, 0x51, 0xd3, 0xf8, 0x8e, 0xbe, 0x06, 0x8d, 0x88, 0xe9, 0xcc, 0x52, 0x56, 0xd5, 0xa4,
  15357. 0x41, 0x1d, 0x9d, 0xd3, 0x0e, 0x61, 0x3d, 0xbd, 0xce, 0x1e, 0x6a, 0x74, 0xb0, 0x09, 0x72, 0x87,
  15358. 0x15, 0x6e, 0xb4, 0xd4, 0x72, 0xc7, 0xa4, 0x1f, 0x78, 0x2f, 0x18, 0x6e, 0x67, 0xc6, 0x5c, 0x57,
  15359. 0xcb, 0xe6, 0xba, 0x2d, 0x07, 0x34, 0x11, 0xf4, 0x9c, 0x0b, 0x85, 0x52, 0x59, 0x0c, 0x85, 0x72,
  15360. 0x15, 0xd6, 0xa6, 0xc7, 0xb3, 0x41, 0x2e, 0x9b, 0xcc, 0xf3, 0xf4, 0x78, 0xe6, 0x18, 0x39, 0x17,
  15361. 0xa2, 0x43, 0x55, 0x17, 0xa3, 0x43, 0xd9, 0x3f, 0x5b, 0x81, 0xb5, 0x6c, 0x7b, 0x0a, 0xa3, 0x5b,
  15362. 0xdc, 0x82, 0x95, 0xc5, 0x2d, 0x78, 0x09, 0x9a, 0xe9, 0x1e, 0x16, 0xbd, 0x93, 0x27, 0x1b, 0xf8,
  15363. 0x8b, 0xef, 0x4e, 0xfb, 0xf7, 0x2a, 0xd0, 0xe2, 0x73, 0x80, 0xcb, 0x7e, 0x15, 0xd6, 0x28, 0xb4,
  15364. 0x9b, 0x39, 0xcb, 0xe2, 0xe0, 0x87, 0xf0, 0xbb, 0xd9, 0x4c, 0xbf, 0x0c, 0xfd, 0xe1, 0xfc, 0x74,
  15365. 0xb0, 0xb8, 0x1c, 0xdd, 0xe1, 0xfc, 0x34, 0x9f, 0x6f, 0x1e, 0xe7, 0x2b, 0x14, 0xa2, 0x7b, 0x1e,
  15366. 0x9b, 0xf5, 0x9d, 0x7f, 0x4a, 0xd2, 0x67, 0x3a, 0x8c, 0xb3, 0x5f, 0xcf, 0x9e, 0xe9, 0xb8, 0x9b,
  15367. 0x9e, 0xff, 0xff, 0x50, 0x65, 0x46, 0xef, 0x5c, 0xda, 0xfd, 0xbd, 0x02, 0x3e, 0x5f, 0x29, 0x31,
  15368. 0x5b, 0x29, 0x9c, 0xcb, 0x1c, 0xb6, 0xb7, 0xbe, 0xa1, 0xf1, 0x7b, 0x46, 0xb3, 0x96, 0x05, 0x12,
  15369. 0x4e, 0x8f, 0x95, 0xa0, 0xf8, 0x94, 0x81, 0xfa, 0x8c, 0x50, 0x64, 0x1a, 0x45, 0xac, 0x81, 0xdf,
  15370. 0x9a, 0xf1, 0x57, 0x27, 0xc9, 0xe0, 0xd3, 0x50, 0xec, 0xe7, 0xab, 0x4e, 0x13, 0x01, 0xef, 0xb3,
  15371. 0x40, 0x13, 0x88, 0xde, 0xe3, 0x78, 0x0f, 0xac, 0x08, 0x78, 0xb6, 0xe4, 0x4e, 0x31, 0x0e, 0x94,
  15372. 0x43, 0xe1, 0xba, 0x38, 0x22, 0x44, 0xfe, 0x96, 0x6c, 0x14, 0x6f, 0x49, 0x1b, 0xba, 0x6a, 0xe2,
  15373. 0x27, 0x4a, 0x22, 0x9d, 0x6a, 0xf3, 0xfa, 0x36, 0x01, 0x29, 0xfc, 0x86, 0x67, 0x7d, 0x43, 0xcf,
  15374. 0x9b, 0x44, 0xd9, 0x69, 0x95, 0xa8, 0x7c, 0x8d, 0x33, 0x26, 0x73, 0x26, 0x07, 0xee, 0x1d, 0x00,
  15375. 0xd9, 0xc6, 0x59, 0xa8, 0x9a, 0xcd, 0xc5, 0xad, 0xca, 0x56, 0xb5, 0x9e, 0xfe, 0x6b, 0xbf, 0x2c,
  15376. 0xf7, 0xea, 0xae, 0xa7, 0x4e, 0xce, 0x58, 0x53, 0x24, 0xd3, 0xbb, 0x8e, 0x16, 0x21, 0x68, 0xfa,
  15377. 0x98, 0x78, 0xf3, 0xcc, 0x47, 0x19, 0x3f, 0xcf, 0x97, 0xf1, 0x5c, 0x01, 0x18, 0x4d, 0xc2, 0x38,
  15378. 0x17, 0x9d, 0xb1, 0x45, 0x10, 0x9d, 0x6c, 0x84, 0x8b, 0x92, 0x90, 0x08, 0x91, 0x8e, 0x0f, 0x65,
  15379. 0xff, 0x72, 0x05, 0x9a, 0xd8, 0x8f, 0x73, 0xbb, 0x10, 0xc9, 0x6b, 0x71, 0x87, 0x2a, 0x15, 0x00,
  15380. 0xf1, 0x53, 0x71, 0x4c, 0x91, 0x98, 0x4a, 0x1f, 0xb6, 0x90, 0x36, 0x1d, 0xf6, 0xde, 0x05, 0x20,
  15381. 0x7c, 0xc4, 0xb2, 0xf8, 0x5a, 0x59, 0x20, 0x6b, 0x73, 0x2e, 0x9c, 0x56, 0xa4, 0xff, 0xda, 0x3f,
  15382. 0x24, 0x7c, 0x84, 0x66, 0x4d, 0x4a, 0xee, 0xdf, 0x73, 0x18, 0x88, 0xec, 0x7a, 0x66, 0x0a, 0x44,
  15383. 0xbe, 0xec, 0xeb, 0x72, 0xfd, 0xf2, 0x7e, 0x3b, 0xef, 0x5a, 0xcf, 0xca, 0xfd, 0x56, 0xc5, 0x60,
  15384. 0x6d, 0x08, 0x1d, 0xbd, 0x09, 0x8d, 0xa9, 0x7b, 0x82, 0x38, 0x71, 0x39, 0xed, 0xc4, 0xa6, 0xdd,
  15385. 0xab, 0x53, 0xf7, 0xe4, 0xb6, 0x3b, 0xcd, 0xb3, 0x63, 0x65, 0x81, 0xbd, 0x97, 0xb1, 0x63, 0xe7,
  15386. 0xdf, 0x1c, 0x64, 0xae, 0x4e, 0xb1, 0x42, 0x48, 0xa7, 0x25, 0xf1, 0x2a, 0x29, 0x4a, 0x08, 0x05,
  15387. 0xb2, 0xf8, 0x11, 0x4d, 0xf9, 0x85, 0x71, 0x7c, 0x16, 0xd6, 0x79, 0x07, 0xf0, 0xca, 0xa4, 0xf3,
  15388. 0xb5, 0xbc, 0x87, 0x7a, 0x0a, 0x9c, 0x86, 0xe7, 0x9e, 0xe2, 0x87, 0xfd, 0x16, 0x3f, 0x45, 0x80,
  15389. 0xb8, 0xc3, 0x3d, 0xd5, 0xef, 0x24, 0xb1, 0x98, 0x25, 0x93, 0x10, 0xd4, 0x1c, 0x96, 0xbc, 0x50,
  15390. 0x1d, 0xf6, 0xb6, 0x26, 0x2b, 0x3e, 0x47, 0x99, 0x3f, 0x5c, 0x81, 0x0b, 0xc6, 0xd9, 0xdd, 0x57,
  15391. 0x93, 0x83, 0x25, 0x3e, 0x16, 0xe6, 0x10, 0x57, 0xf2, 0x43, 0x7c, 0x92, 0x7b, 0xd0, 0xba, 0x0e,
  15392. 0xad, 0x2c, 0x96, 0xdf, 0xf9, 0xa6, 0xf0, 0x43, 0x1d, 0xda, 0x8f, 0xa2, 0xa2, 0x0e, 0xc3, 0x28,
  15393. 0xc8, 0x54, 0x2a, 0x72, 0x0d, 0x30, 0x58, 0x2b, 0xf1, 0x5f, 0x82, 0x9e, 0x3b, 0x4f, 0xc2, 0xcc,
  15394. 0x1b, 0x9b, 0x68, 0xd8, 0xa6, 0xd3, 0x45, 0x68, 0xea, 0x86, 0x4d, 0x33, 0x82, 0xd9, 0xb8, 0xb0,
  15395. 0x18, 0x7a, 0x01, 0x82, 0x1c, 0x82, 0xe0, 0xe1, 0x7d, 0xec, 0x73, 0x5c, 0x48, 0x36, 0x51, 0x59,
  15396. 0x7d, 0xec, 0x07, 0x5a, 0xcb, 0xc0, 0x2e, 0xe3, 0xa9, 0x3f, 0x78, 0x93, 0x3d, 0xc6, 0xdd, 0xa3,
  15397. 0x8c, 0x42, 0x9f, 0x45, 0x4a, 0x82, 0xf2, 0xf0, 0x74, 0xed, 0x45, 0xca, 0xfe, 0xcd, 0x15, 0x59,
  15398. 0x99, 0x3d, 0x0a, 0x11, 0x7b, 0x76, 0xfc, 0xd8, 0x33, 0xe6, 0x79, 0xf1, 0x4d, 0xde, 0x1d, 0x68,
  15399. 0x87, 0x8f, 0x03, 0x15, 0x0d, 0x3e, 0x6f, 0xa4, 0x25, 0xa0, 0x62, 0xcc, 0x7c, 0xbc, 0x08, 0xac,
  15400. 0xb0, 0x2c, 0x4e, 0x70, 0x87, 0xa0, 0x7a, 0x7e, 0x91, 0x56, 0xa0, 0x5c, 0x06, 0x12, 0x65, 0x1e,
  15401. 0x9c, 0x4b, 0xef, 0xa7, 0x98, 0x34, 0xb7, 0x1d, 0xb0, 0xc3, 0x12, 0x32, 0x23, 0x05, 0x3e, 0xa2,
  15402. 0x20, 0xc3, 0x7d, 0x31, 0xd5, 0x25, 0xf5, 0x69, 0xa6, 0x57, 0x66, 0x29, 0xc5, 0x9e, 0x1f, 0x1c,
  15403. 0x12, 0x62, 0xfd, 0x7b, 0x55, 0xe8, 0x19, 0x1b, 0x14, 0xcf, 0x6e, 0x99, 0x21, 0x2b, 0xa1, 0x4e,
  15404. 0x76, 0x55, 0x37, 0x1c, 0x55, 0xc5, 0x47, 0x3d, 0xe7, 0xab, 0xcc, 0x92, 0x26, 0xf1, 0x55, 0x36,
  15405. 0x56, 0xa1, 0x96, 0x5b, 0x85, 0xd7, 0xc0, 0x12, 0x2b, 0x55, 0x31, 0x2c, 0xa5, 0xeb, 0x93, 0x9f,
  15406. 0xcb, 0x5d, 0xe3, 0x14, 0x9e, 0x52, 0xba, 0x45, 0x5f, 0x86, 0xbe, 0xe4, 0x4e, 0x97, 0x8e, 0xa7,
  15407. 0xa6, 0xcb, 0x60, 0xb9, 0xca, 0x58, 0x17, 0x62, 0xd6, 0x9a, 0xcd, 0x4e, 0xdf, 0xac, 0xf4, 0x11,
  15408. 0x79, 0xac, 0x6d, 0x14, 0x03, 0x0b, 0x70, 0x27, 0x98, 0xb9, 0xba, 0x30, 0xca, 0x47, 0x16, 0xa0,
  15409. 0x7e, 0xbc, 0x06, 0x56, 0x56, 0x26, 0xed, 0x0a, 0x5b, 0xab, 0xaf, 0xa5, 0x29, 0xba, 0x37, 0x6f,
  15410. 0xc2, 0xc5, 0x85, 0x16, 0xe6, 0x12, 0xda, 0xba, 0xe6, 0x58, 0x85, 0x06, 0x1e, 0xb1, 0x25, 0x3f,
  15411. 0x1f, 0x01, 0xe5, 0x1e, 0xe9, 0x17, 0xd1, 0xe8, 0x08, 0x28, 0xf7, 0xc8, 0xfe, 0x83, 0x4a, 0x0e,
  15412. 0x95, 0x20, 0x47, 0x4c, 0x3b, 0xfd, 0x55, 0x58, 0xd7, 0x21, 0x3d, 0xb3, 0x9d, 0xc3, 0x88, 0x45,
  15413. 0x5c, 0x48, 0xb2, 0xad, 0xf3, 0x72, 0xea, 0x55, 0x52, 0xb4, 0xd8, 0x61, 0xb0, 0xde, 0x8c, 0x5f,
  15414. 0x07, 0x60, 0x7d, 0x92, 0x41, 0x00, 0x9f, 0x29, 0x41, 0x69, 0x51, 0x76, 0xed, 0xa3, 0x24, 0x31,
  15415. 0x23, 0x8f, 0x67, 0x84, 0x88, 0x6a, 0x4e, 0x93, 0x00, 0x0f, 0x8e, 0xc9, 0xda, 0xe9, 0xc8, 0x9f,
  15416. 0x4c, 0x54, 0x44, 0xa9, 0x75, 0x16, 0x88, 0x30, 0xe4, 0xc1, 0xf1, 0xcc, 0xfe, 0xed, 0xba, 0x9c,
  15417. 0xe4, 0x6c, 0x8c, 0xd8, 0x67, 0x93, 0x3c, 0x32, 0x9c, 0xa9, 0x0d, 0x3a, 0x88, 0x63, 0x54, 0x21,
  15418. 0x63, 0xca, 0x79, 0x69, 0x2a, 0x0c, 0x6b, 0x24, 0xaa, 0x94, 0xe6, 0x01, 0x17, 0x31, 0x57, 0x9f,
  15419. 0x19, 0x2c, 0x6a, 0xcd, 0xa8, 0x92, 0x0d, 0x2b, 0xae, 0xc2, 0x1a, 0xab, 0x8d, 0x91, 0x82, 0xc8,
  15420. 0x79, 0xf3, 0x91, 0x3a, 0x99, 0x08, 0x0b, 0xf6, 0xc8, 0xd3, 0xb1, 0xc1, 0x74, 0x24, 0x56, 0xc3,
  15421. 0x5b, 0x93, 0x62, 0x83, 0xc9, 0x90, 0x28, 0xef, 0x57, 0xc1, 0x4a, 0xc2, 0x79, 0x84, 0xfb, 0x2d,
  15422. 0x48, 0x10, 0xa7, 0xcd, 0xdc, 0x48, 0x1f, 0xf7, 0xf5, 0x2c, 0x65, 0x8f, 0x13, 0x38, 0x32, 0x4b,
  15423. 0x9a, 0xdd, 0x74, 0xe4, 0xec, 0x67, 0x70, 0xae, 0x99, 0x3c, 0x04, 0xd2, 0xac, 0x99, 0x43, 0x67,
  15424. 0x37, 0x83, 0xde, 0x09, 0x3c, 0xec, 0x40, 0xac, 0xa6, 0xfe, 0x81, 0x1f, 0xb8, 0x93, 0x38, 0xed,
  15425. 0x00, 0xef, 0xe4, 0xf5, 0x2c, 0xc5, 0xe8, 0x80, 0x91, 0x9d, 0x3b, 0xc0, 0xdb, 0xb8, 0x9f, 0xc1,
  15426. 0xd3, 0x0e, 0x18, 0x59, 0xb1, 0x03, 0x6d, 0xd1, 0xc1, 0xa4, 0x50, 0xec, 0xc0, 0x4b, 0x88, 0x14,
  15427. 0x73, 0x8d, 0x77, 0x34, 0x7a, 0x32, 0x1b, 0x7e, 0x01, 0x3a, 0xb9, 0x46, 0xbb, 0x5a, 0xa8, 0x9a,
  15428. 0x35, 0x48, 0x64, 0x55, 0xda, 0x58, 0x4f, 0x93, 0x55, 0xba, 0xa1, 0x4b, 0xd0, 0x8c, 0xc7, 0xe1,
  15429. 0x63, 0x4a, 0xe4, 0xa8, 0x84, 0x0d, 0xfc, 0xbe, 0xc3, 0xb6, 0x75, 0x7e, 0xcc, 0xfa, 0x75, 0xf6,
  15430. 0xc1, 0x58, 0xf5, 0x63, 0x52, 0xae, 0x17, 0x0d, 0x6e, 0xd6, 0x17, 0x0d, 0x6e, 0xcc, 0x87, 0xce,
  15431. 0xac, 0xdc, 0x43, 0x67, 0xf6, 0xef, 0xac, 0x40, 0x8f, 0xb8, 0xb0, 0x87, 0xee, 0x50, 0x62, 0xa7,
  15432. 0xbf, 0x00, 0x1d, 0xbd, 0x7b, 0xc9, 0x69, 0x5c, 0xd8, 0x62, 0x09, 0x77, 0x4b, 0x7e, 0xe3, 0xfa,
  15433. 0x86, 0x7b, 0x2b, 0xbb, 0x98, 0xf8, 0xa2, 0x7a, 0x8b, 0x39, 0x75, 0x49, 0x24, 0x14, 0xc5, 0xaf,
  15434. 0x08, 0x32, 0xe3, 0xf1, 0x16, 0x61, 0x26, 0x2d, 0x4b, 0x7b, 0x4b, 0xc4, 0x71, 0xa2, 0xe2, 0x67,
  15435. 0x18, 0xcb, 0xe3, 0x74, 0x03, 0xdb, 0xfa, 0x15, 0x00, 0xdd, 0xc0, 0xb6, 0xd1, 0xc0, 0xb6, 0xf9,
  15436. 0x14, 0x00, 0x37, 0xb0, 0x9d, 0x6b, 0x60, 0x5b, 0x1a, 0x68, 0x18, 0x0d, 0x6c, 0xa7, 0x0d, 0x20,
  15437. 0xf6, 0x62, 0x52, 0x88, 0x9d, 0x7c, 0x10, 0x7b, 0xa5, 0x7c, 0x23, 0x26, 0x1a, 0x46, 0xde, 0x48,
  15438. 0x06, 0x68, 0x13, 0x6f, 0x9e, 0x66, 0x30, 0xc2, 0x5c, 0xd8, 0x77, 0x05, 0xdb, 0xd1, 0x4c, 0xee,
  15439. 0x21, 0x02, 0xc3, 0xd9, 0xb4, 0xde, 0xc8, 0x19, 0x1c, 0x5f, 0x2e, 0x5c, 0xc5, 0xe6, 0xa4, 0x8b,
  15440. 0xd9, 0xf1, 0x48, 0x4b, 0x44, 0x38, 0x44, 0x29, 0x7b, 0xa7, 0x9f, 0x2d, 0xf6, 0xa4, 0xd0, 0x46,
  15441. 0x26, 0x13, 0x4e, 0x2f, 0x79, 0x15, 0x22, 0xe9, 0xe4, 0x5c, 0xf2, 0x0f, 0x73, 0x97, 0x28, 0x22,
  15442. 0xba, 0x45, 0x02, 0x4f, 0x3b, 0xfd, 0xaf, 0x18, 0x4e, 0xff, 0x66, 0x3f, 0xaa, 0x0b, 0x9a, 0xb0,
  15443. 0xc5, 0x90, 0x3d, 0xf6, 0xcf, 0x57, 0x72, 0x08, 0xd2, 0xc9, 0x45, 0x09, 0xa8, 0x94, 0xb9, 0xe9,
  15444. 0x9b, 0xf1, 0x04, 0xce, 0x68, 0x4e, 0xeb, 0x4f, 0x6a, 0x9f, 0x53, 0x7f, 0xf2, 0x97, 0x53, 0x2e,
  15445. 0x83, 0x3a, 0xb4, 0xb3, 0xf7, 0x03, 0x55, 0x61, 0x65, 0x7a, 0x2a, 0x89, 0x9f, 0x47, 0x7a, 0xaa,
  15446. 0x74, 0x6c, 0x35, 0x23, 0x04, 0xc1, 0xdf, 0xa9, 0x40, 0xe7, 0x3b, 0x0f, 0x58, 0x16, 0xaa, 0x45,
  15447. 0x7e, 0x2c, 0x2e, 0x1d, 0x8c, 0xc2, 0x49, 0x18, 0x89, 0x73, 0x62, 0x9b, 0x61, 0x3b, 0x08, 0x32,
  15448. 0xb2, 0xc4, 0x33, 0xa5, 0xb4, 0xd9, 0x84, 0x64, 0xd9, 0x47, 0x50, 0xae, 0x96, 0xcc, 0x0c, 0x39,
  15449. 0xad, 0x05, 0x3b, 0xf9, 0x65, 0xe8, 0x4b, 0x16, 0x3f, 0x48, 0x54, 0x74, 0x9c, 0x06, 0x19, 0xec,
  15450. 0x05, 0xd2, 0x1b, 0x86, 0xda, 0xdf, 0x81, 0x75, 0x47, 0x8d, 0xc2, 0x20, 0x50, 0xa3, 0xe4, 0x51,
  15451. 0x9c, 0xa9, 0x0e, 0x24, 0xba, 0x67, 0xc5, 0x8c, 0xee, 0x79, 0x56, 0x44, 0x50, 0xfb, 0x53, 0xe8,
  15452. 0xa5, 0x0f, 0xc7, 0xed, 0xb8, 0x91, 0x17, 0x23, 0x2a, 0x93, 0x17, 0xcf, 0x35, 0xb9, 0xcb, 0x0f,
  15453. 0x9e, 0x5b, 0xef, 0x99, 0x6f, 0x02, 0x19, 0x2e, 0x09, 0x67, 0x45, 0x29, 0xd3, 0xcf, 0x05, 0xb1,
  15454. 0xa1, 0x70, 0x55, 0x07, 0x8f, 0x17, 0x07, 0xb8, 0x72, 0x37, 0xad, 0x32, 0xf7, 0xb9, 0x95, 0x52,
  15455. 0xf7, 0xb9, 0x9c, 0x4f, 0x56, 0x75, 0xa9, 0xbb, 0x62, 0xad, 0xdc, 0x5d, 0xb1, 0x5e, 0xee, 0xae,
  15456. 0xb8, 0xba, 0xd4, 0x5d, 0xb1, 0x71, 0xb6, 0xbb, 0x62, 0x73, 0xc1, 0x5d, 0xb1, 0x40, 0xea, 0xb6,
  15457. 0x16, 0x48, 0xdd, 0x82, 0x62, 0x1c, 0xf8, 0xad, 0x7e, 0x43, 0x31, 0x7e, 0xbe, 0xb3, 0x21, 0x49,
  15458. 0x3b, 0x64, 0x9a, 0xd2, 0xe0, 0xe7, 0x91, 0xcc, 0xd0, 0xc9, 0x13, 0x79, 0x18, 0x2e, 0x6a, 0xdf,
  15459. 0xfb, 0x65, 0xda, 0xf7, 0x21, 0xf4, 0x38, 0x7e, 0xf8, 0xbe, 0x7b, 0xac, 0x52, 0x5d, 0x55, 0xc9,
  15460. 0x73, 0xf2, 0xf9, 0x17, 0xf0, 0x57, 0xf2, 0x2f, 0xe0, 0xd3, 0x73, 0x2e, 0xde, 0xb1, 0xe1, 0x85,
  15461. 0xdd, 0x75, 0x9a, 0xae, 0x77, 0xcc, 0xdb, 0xf1, 0x67, 0x2b, 0x00, 0xdc, 0x88, 0x7e, 0x28, 0x84,
  15462. 0x99, 0xa6, 0x6c, 0x8b, 0x34, 0x09, 0x20, 0x7c, 0x09, 0x27, 0x16, 0xfd, 0xf2, 0xba, 0x04, 0xfe,
  15463. 0x40, 0x6f, 0x84, 0x1b, 0xd0, 0xa5, 0x5e, 0x16, 0xa2, 0xde, 0x94, 0x7b, 0x1d, 0xb4, 0x71, 0x08,
  15464. 0x12, 0xe4, 0xc6, 0xfe, 0xe9, 0x0a, 0xf4, 0xf6, 0x38, 0x76, 0xdc, 0x5e, 0x18, 0x2f, 0xf6, 0x68,
  15465. 0xa5, 0xd0, 0xa3, 0x6c, 0x3e, 0xaa, 0xe6, 0x7c, 0x2c, 0xbc, 0x3f, 0xcf, 0x67, 0x3a, 0xff, 0xfe,
  15466. 0x7c, 0x7e, 0xd2, 0xea, 0xf9, 0x49, 0xb3, 0x7f, 0xae, 0x02, 0x6d, 0xe9, 0x09, 0x75, 0xe3, 0x59,
  15467. 0x68, 0x53, 0xac, 0xbb, 0x5c, 0x8c, 0xdd, 0x16, 0x82, 0x78, 0x92, 0x6f, 0x00, 0x7d, 0x2c, 0x0f,
  15468. 0xb3, 0x90, 0x1f, 0x96, 0xd3, 0xc4, 0xdc, 0xda, 0xdf, 0x3b, 0x8d, 0xa4, 0x67, 0x7a, 0xca, 0x77,
  15469. 0x24, 0x88, 0x1e, 0xaf, 0xd3, 0x23, 0xe8, 0xec, 0xa9, 0x24, 0xf7, 0xb0, 0xdd, 0xf2, 0x07, 0xd7,
  15470. 0xca, 0x2d, 0x31, 0x08, 0xf3, 0xa6, 0xe4, 0x32, 0xfd, 0xb7, 0xff, 0x62, 0x0d, 0x1a, 0xb2, 0x12,
  15471. 0x9f, 0xef, 0x7d, 0xca, 0xb4, 0x89, 0xaa, 0xd9, 0xc4, 0x13, 0x4d, 0xfc, 0x8d, 0xdc, 0x93, 0x73,
  15472. 0x65, 0xcf, 0x78, 0x9a, 0x23, 0x35, 0x5e, 0x9c, 0x33, 0x63, 0x2c, 0xae, 0xe6, 0x62, 0x2c, 0xa6,
  15473. 0xf6, 0x5c, 0x12, 0x6d, 0x8b, 0x3e, 0xac, 0xbb, 0x12, 0xe9, 0xd0, 0x78, 0xe8, 0xb1, 0x59, 0x22,
  15474. 0x23, 0xc6, 0xd6, 0xf2, 0xaf, 0x78, 0x76, 0xb1, 0x58, 0xfa, 0xe8, 0x24, 0x1e, 0x69, 0x7e, 0xc6,
  15475. 0x5e, 0x37, 0x2e, 0x46, 0xdc, 0x04, 0xbc, 0xc7, 0x3d, 0xf8, 0x41, 0xbe, 0x56, 0x5f, 0x12, 0x07,
  15476. 0xf2, 0x1a, 0xbb, 0xeb, 0xe6, 0xe2, 0x40, 0x96, 0xbe, 0x6a, 0xff, 0xf6, 0x17, 0x78, 0xd5, 0xfe,
  15477. 0x2e, 0x74, 0x19, 0x05, 0x68, 0x01, 0xcc, 0x12, 0x34, 0xf3, 0x2c, 0xb4, 0x91, 0xf5, 0x1c, 0xe5,
  15478. 0xb8, 0xcf, 0x96, 0x0a, 0x3c, 0x31, 0x91, 0x38, 0xa2, 0x23, 0xf3, 0xc0, 0x0d, 0xe6, 0xee, 0x64,
  15479. 0xff, 0x61, 0xe1, 0x80, 0x55, 0xce, 0xc2, 0x4a, 0x2b, 0x79, 0xac, 0xb4, 0x40, 0xc4, 0x57, 0x17,
  15480. 0x88, 0x78, 0xfb, 0x37, 0xe5, 0xfd, 0x80, 0x3d, 0x65, 0xc4, 0x3b, 0x34, 0x5f, 0x10, 0xe0, 0x38,
  15481. 0x56, 0xa9, 0x03, 0x95, 0x61, 0x5e, 0xb7, 0x52, 0x34, 0xaf, 0x2b, 0x6a, 0xbe, 0xaa, 0x8b, 0x9a,
  15482. 0xaf, 0x57, 0x61, 0xdd, 0xb4, 0xd2, 0x1c, 0x1c, 0x4c, 0xdc, 0x43, 0xb9, 0xe7, 0xfa, 0x71, 0x66,
  15483. 0xa6, 0x79, 0x77, 0xe2, 0x1e, 0x16, 0xed, 0xef, 0xea, 0x0b, 0xf6, 0x77, 0xbf, 0x57, 0xe5, 0x28,
  15484. 0x69, 0xd8, 0xf7, 0x67, 0xf8, 0xa5, 0x76, 0x63, 0xbe, 0xf9, 0x6d, 0xa6, 0x3d, 0x9a, 0xf2, 0x9b,
  15485. 0xbc, 0x15, 0xa6, 0x34, 0xa7, 0x4f, 0xf8, 0x40, 0x25, 0xee, 0x12, 0x5e, 0x04, 0x31, 0xdb, 0x96,
  15486. 0x07, 0x30, 0x96, 0x3f, 0x98, 0x9f, 0x5b, 0x7d, 0x47, 0x1e, 0xef, 0xa0, 0xc2, 0xa6, 0xef, 0x58,
  15487. 0xed, 0x09, 0x7c, 0xc7, 0xac, 0x77, 0x4c, 0x3c, 0x58, 0xf6, 0xda, 0x9e, 0x81, 0x54, 0x0d, 0x24,
  15488. 0xf8, 0x00, 0x36, 0x8d, 0x71, 0x2e, 0xba, 0x77, 0x2c, 0xd4, 0xa1, 0x77, 0x99, 0x73, 0x21, 0x1d,
  15489. 0xad, 0xe1, 0xe1, 0xa1, 0x63, 0xf3, 0xcf, 0x54, 0x22, 0xbe, 0x1d, 0x8b, 0xb1, 0xf9, 0xf7, 0x54,
  15490. 0xc2, 0xb1, 0xf9, 0x71, 0x15, 0xde, 0x63, 0x24, 0xbc, 0x80, 0x29, 0x16, 0xf0, 0x52, 0xf6, 0x2a,
  15491. 0x2c, 0xe2, 0xe7, 0xec, 0x61, 0xda, 0xcf, 0x60, 0x63, 0x4f, 0x25, 0x37, 0xbd, 0xe3, 0x9b, 0xa3,
  15492. 0xb1, 0xaf, 0x8e, 0x15, 0x32, 0xeb, 0xe9, 0x63, 0x6a, 0xe9, 0x3e, 0x97, 0xe5, 0x4d, 0xf7, 0xf9,
  15493. 0x2b, 0xb0, 0xe6, 0x66, 0xf9, 0xcd, 0x63, 0xd5, 0x37, 0xe0, 0xda, 0xd3, 0xbf, 0x10, 0x2d, 0xfc,
  15494. 0x87, 0xa1, 0x67, 0xbc, 0xf5, 0xe8, 0x87, 0x41, 0xb9, 0xde, 0xe2, 0xac, 0xf7, 0x33, 0x2f, 0xb1,
  15495. 0x01, 0xb8, 0xa1, 0x0a, 0x6f, 0x4c, 0x42, 0x16, 0x2e, 0xfe, 0xab, 0x0a, 0x58, 0xbb, 0xc1, 0xb1,
  15496. 0x9f, 0x50, 0xe8, 0xff, 0xf3, 0x03, 0x6d, 0x3f, 0x9d, 0x0b, 0xb4, 0xcd, 0x67, 0x5d, 0x47, 0xd2,
  15497. 0x7e, 0x49, 0xc7, 0xea, 0x4b, 0x03, 0xb8, 0x55, 0xcd, 0xc7, 0xbb, 0x24, 0x84, 0xdb, 0x42, 0xa4,
  15498. 0xd4, 0xda, 0x62, 0xa4, 0xd4, 0xd7, 0x28, 0xd0, 0xdd, 0x6c, 0xa2, 0x12, 0x7a, 0xd7, 0x24, 0xe7,
  15499. 0x1d, 0xbb, 0xa6, 0x53, 0x1e, 0xb8, 0x27, 0xec, 0x67, 0x78, 0x0a, 0xeb, 0xd9, 0x10, 0xc4, 0x8e,
  15500. 0x9d, 0x74, 0xd8, 0x6c, 0xb8, 0x93, 0x91, 0x31, 0xcc, 0x5f, 0xf4, 0x18, 0x9e, 0xd2, 0x31, 0x2f,
  15501. 0x40, 0x67, 0x16, 0x85, 0x23, 0x15, 0xc7, 0xe6, 0xca, 0xb4, 0x05, 0xa6, 0x5d, 0x95, 0x22, 0x15,
  15502. 0x53, 0xe0, 0x15, 0xd1, 0xfc, 0x44, 0x2a, 0xfe, 0xc8, 0x9d, 0xd8, 0xbf, 0x58, 0x81, 0xa7, 0xb2,
  15503. 0xb6, 0xd9, 0x08, 0xe8, 0x23, 0x77, 0xb2, 0x3c, 0x5a, 0x5b, 0xc9, 0x85, 0xbd, 0x18, 0x31, 0xa2,
  15504. 0x5a, 0x16, 0x31, 0xc2, 0xe8, 0x43, 0x4d, 0xdb, 0x01, 0x63, 0x1f, 0x32, 0xe6, 0xbc, 0x6e, 0xc8,
  15505. 0x75, 0xed, 0xdf, 0xaf, 0xb2, 0xfa, 0x24, 0xeb, 0x1d, 0xdd, 0xf4, 0x13, 0x6d, 0x74, 0xa4, 0x89,
  15506. 0x89, 0x09, 0x5b, 0x1d, 0x59, 0x6f, 0xc3, 0x26, 0x85, 0x0b, 0xf4, 0xd3, 0xfc, 0x98, 0x6d, 0x98,
  15507. 0x46, 0x31, 0xbe, 0x88, 0xa9, 0x59, 0x65, 0x1f, 0x50, 0x1a, 0x6e, 0xbc, 0xa9, 0x1b, 0x27, 0x42,
  15508. 0xb7, 0x89, 0xca, 0x90, 0x21, 0x42, 0x4a, 0x4a, 0x72, 0xc1, 0x09, 0xac, 0xcb, 0x60, 0x2d, 0xcc,
  15509. 0x7c, 0x15, 0xd6, 0xb9, 0x67, 0xb2, 0x64, 0x29, 0x5a, 0xa9, 0x39, 0x7d, 0x4a, 0xe0, 0x99, 0x15,
  15510. 0xaf, 0x38, 0xc3, 0x42, 0x7e, 0xb5, 0xe4, 0x95, 0xb4, 0xc5, 0xed, 0x6c, 0xc4, 0xfe, 0xbe, 0x0f,
  15511. 0x7d, 0x69, 0x23, 0x7d, 0xe2, 0x87, 0x5d, 0x22, 0x5e, 0x5c, 0x52, 0x47, 0x6e, 0x4d, 0x9d, 0x2e,
  15512. 0x17, 0xd6, 0x2f, 0xfd, 0xbc, 0x6b, 0x78, 0x56, 0x94, 0xd1, 0x1c, 0x0b, 0xdb, 0x32, 0x75, 0xaf,
  15513. 0xa0, 0x67, 0x7c, 0x68, 0xc8, 0x91, 0xa2, 0x00, 0x40, 0x32, 0x4f, 0xa9, 0xeb, 0x6f, 0xcd, 0xd9,
  15514. 0xa0, 0x74, 0x87, 0x92, 0x1f, 0x50, 0xaa, 0x5c, 0xe3, 0xcd, 0xdb, 0x91, 0xfb, 0x58, 0x63, 0x1d,
  15515. 0x7e, 0xb6, 0xcf, 0x70, 0xdb, 0xa5, 0x67, 0xfb, 0xc4, 0x58, 0x30, 0x7d, 0xd3, 0x4f, 0x1f, 0xd6,
  15516. 0x96, 0x7e, 0xd4, 0x2f, 0xb6, 0xff, 0x93, 0x78, 0xe7, 0x62, 0x65, 0xd6, 0x75, 0x68, 0x53, 0xde,
  15517. 0x98, 0xdc, 0x09, 0xcb, 0xed, 0x5f, 0xa4, 0x51, 0x87, 0x6a, 0x65, 0xbf, 0x43, 0x0a, 0x1b, 0x8a,
  15518. 0x27, 0x99, 0x1b, 0xa2, 0x5d, 0x9c, 0x19, 0xf6, 0xaf, 0x61, 0x12, 0x16, 0xa3, 0x10, 0xb9, 0xb8,
  15519. 0xc9, 0xbe, 0x02, 0x16, 0xe2, 0xdf, 0x42, 0x6e, 0xf1, 0x89, 0x99, 0xa9, 0x24, 0x97, 0xf9, 0xeb,
  15520. 0xf0, 0x74, 0xee, 0x91, 0xf3, 0x7c, 0x21, 0x3e, 0x03, 0x9b, 0xc6, 0x8b, 0xe6, 0x46, 0x59, 0xfb,
  15521. 0xef, 0x56, 0xa0, 0xe5, 0xcc, 0x03, 0xf5, 0x9d, 0x30, 0xf4, 0xe2, 0x2f, 0x14, 0xc4, 0xe2, 0x39,
  15522. 0x68, 0x8f, 0xfd, 0x38, 0x09, 0xa3, 0xd3, 0xc1, 0x70, 0x7e, 0xaa, 0x8d, 0xe7, 0x04, 0x74, 0x6b,
  15523. 0x7e, 0xba, 0xe0, 0xd9, 0x68, 0x44, 0x2a, 0xd0, 0x12, 0xe9, 0xa2, 0xc9, 0x7a, 0x95, 0x25, 0xd2,
  15524. 0x86, 0xa5, 0xfa, 0x2f, 0x91, 0xd2, 0x3c, 0x60, 0x17, 0xe9, 0xa7, 0xa0, 0x41, 0x4e, 0xd8, 0x86,
  15525. 0x84, 0x60, 0x1c, 0xce, 0x98, 0x22, 0x8b, 0xe7, 0xc3, 0x81, 0x4e, 0xd4, 0x12, 0xaf, 0xf9, 0x70,
  15526. 0x9f, 0xd3, 0xdf, 0xd1, 0xe1, 0x0e, 0x0c, 0x1b, 0xc5, 0xa2, 0x31, 0xbe, 0xcc, 0x85, 0x84, 0x41,
  15527. 0x48, 0xc5, 0x2f, 0xc6, 0x53, 0x19, 0x3a, 0x42, 0x81, 0xf1, 0x4a, 0x86, 0xfd, 0xdf, 0x2a, 0xd0,
  15528. 0xc6, 0xb2, 0x77, 0x4e, 0x66, 0x13, 0xa4, 0xb0, 0x36, 0xe9, 0x3d, 0x8e, 0xfb, 0xc7, 0x93, 0xf4,
  15529. 0x01, 0x67, 0xfa, 0xc2, 0x6b, 0x41, 0xbf, 0x1d, 0xa7, 0xaf, 0x05, 0xfd, 0x6d, 0x3d, 0x0b, 0x30,
  15530. 0xf5, 0x63, 0x64, 0x75, 0xef, 0x9c, 0xe8, 0xd7, 0xfe, 0x0c, 0x88, 0xb5, 0x05, 0x8d, 0x21, 0x7b,
  15531. 0xad, 0x88, 0xa9, 0xb3, 0xfe, 0xb4, 0x6c, 0xe8, 0x1c, 0xcc, 0x27, 0x93, 0x07, 0xee, 0xc9, 0xcd,
  15532. 0x94, 0xc4, 0x6a, 0x3a, 0x39, 0x98, 0xf5, 0x86, 0xc6, 0x7e, 0xe7, 0x3a, 0x88, 0x8a, 0xc2, 0xeb,
  15533. 0x79, 0x68, 0xbb, 0x93, 0x48, 0xb9, 0xde, 0x29, 0x0e, 0x4c, 0x4b, 0x49, 0x0d, 0x90, 0xfd, 0x5f,
  15534. 0x56, 0xa0, 0x83, 0x7f, 0x52, 0xfd, 0x0d, 0xd9, 0x06, 0xc6, 0x2a, 0x49, 0xf9, 0xf8, 0x8a, 0xb6,
  15535. 0x0d, 0x8c, 0x55, 0x22, 0x6c, 0x3c, 0xe2, 0xb0, 0x69, 0x18, 0x24, 0x63, 0x09, 0x7d, 0x1f, 0x7a,
  15536. 0xfe, 0xc1, 0xa9, 0x38, 0x85, 0xf5, 0x29, 0x81, 0xc2, 0xde, 0x13, 0xd8, 0x7a, 0x13, 0x2e, 0xce,
  15537. 0x63, 0xbc, 0x25, 0x23, 0xe5, 0xf9, 0x49, 0x1e, 0xf1, 0xd7, 0x1d, 0x0b, 0xd3, 0x76, 0x28, 0x29,
  15538. 0xc5, 0xfe, 0xaf, 0xc3, 0x05, 0xba, 0x08, 0x0b, 0x05, 0xf8, 0x14, 0xac, 0x4f, 0xdd, 0x93, 0x42,
  15539. 0xfe, 0x6d, 0xd8, 0x28, 0xe4, 0x95, 0xd7, 0x2b, 0x79, 0x0e, 0x2f, 0x8c, 0x72, 0xd9, 0xf9, 0x1d,
  15540. 0xcb, 0xfb, 0xd0, 0x9b, 0x45, 0xfe, 0xb1, 0x3f, 0x51, 0x87, 0x12, 0x6c, 0x73, 0xb5, 0xc4, 0xa1,
  15541. 0x94, 0xb6, 0x2b, 0xc7, 0x2c, 0xd9, 0xd3, 0xb9, 0x19, 0x37, 0xce, 0xcc, 0x4f, 0x64, 0xa7, 0xfc,
  15542. 0x78, 0x30, 0x73, 0xe9, 0xf9, 0x60, 0x35, 0x3a, 0x12, 0x45, 0x73, 0xdb, 0x8f, 0xf7, 0xdc, 0x38,
  15543. 0xde, 0x41, 0x90, 0xfd, 0xe3, 0xb0, 0xb5, 0xac, 0x3a, 0x92, 0xf2, 0x32, 0xdc, 0xe0, 0xc4, 0x05,
  15544. 0xc2, 0x42, 0x22, 0xf3, 0x78, 0xa5, 0xea, 0xce, 0xd4, 0x85, 0xa4, 0x78, 0xad, 0x57, 0x17, 0xae,
  15545. 0x75, 0xfb, 0x1f, 0x0b, 0x0a, 0xc4, 0x3e, 0x58, 0xdb, 0x12, 0x02, 0x61, 0xa9, 0xc3, 0xa4, 0x3e,
  15546. 0xa7, 0x1c, 0x19, 0x41, 0x87, 0x82, 0x88, 0xe6, 0x81, 0x1a, 0x28, 0x3e, 0x1e, 0x62, 0x4f, 0xb5,
  15547. 0xb5, 0x50, 0x4c, 0x8e, 0x8f, 0xd3, 0x8e, 0x8c, 0xb3, 0x74, 0x1d, 0x5a, 0x54, 0x98, 0x02, 0x72,
  15548. 0x96, 0x3e, 0x28, 0x61, 0xec, 0x41, 0xa7, 0x19, 0xc9, 0x97, 0xfd, 0x3e, 0xee, 0xce, 0x78, 0xec,
  15549. 0xb8, 0xc1, 0xd1, 0xc3, 0x70, 0x76, 0x6d, 0x59, 0xa8, 0x5a, 0x79, 0x9e, 0x9a, 0x84, 0x00, 0x9e,
  15550. 0x84, 0xb4, 0x5d, 0x88, 0x0a, 0xfb, 0x4f, 0x2b, 0xb0, 0x46, 0x31, 0xc9, 0x0d, 0xff, 0x7d, 0x0a,
  15551. 0xea, 0x40, 0xbe, 0x3d, 0xc6, 0xad, 0x42, 0x2e, 0x3c, 0x78, 0xab, 0x3c, 0x05, 0x0d, 0x3f, 0x18,
  15552. 0xe0, 0xa7, 0x8e, 0xf6, 0xe4, 0x07, 0x58, 0x43, 0x6a, 0xc2, 0x45, 0x49, 0xf2, 0x84, 0x2c, 0xa1,
  15553. 0x12, 0x4c, 0x64, 0x1a, 0xe5, 0x30, 0x13, 0x95, 0x27, 0x3a, 0xfa, 0x1c, 0x29, 0xed, 0x8c, 0x08,
  15554. 0x9b, 0x04, 0xb8, 0x13, 0x64, 0x96, 0x42, 0x66, 0x70, 0x7b, 0xea, 0x17, 0x13, 0x7d, 0x7f, 0x7b,
  15555. 0x05, 0x7a, 0xb7, 0xdd, 0x70, 0x47, 0xa2, 0x55, 0xfd, 0x9f, 0xa9, 0x15, 0xcf, 0xb4, 0xdd, 0x86,
  15556. 0x05, 0x1a, 0x6b, 0x6e, 0xfa, 0x86, 0x5e, 0xbc, 0x90, 0xf7, 0x7c, 0xcd, 0x78, 0x61, 0xf3, 0xf3,
  15557. 0x0b, 0x6b, 0xc6, 0xe6, 0xb7, 0x7f, 0xba, 0x02, 0x5b, 0xc6, 0xec, 0xec, 0x85, 0xb1, 0x11, 0x3d,
  15558. 0x74, 0xa9, 0xe1, 0xc5, 0xab, 0xe6, 0x03, 0x9b, 0x79, 0x33, 0xb1, 0xec, 0xed, 0xcc, 0x4c, 0x4f,
  15559. 0x6d, 0x06, 0xe6, 0xce, 0x4e, 0x58, 0x37, 0x8b, 0xcc, 0x8d, 0x3d, 0xf9, 0xd5, 0x2a, 0x6c, 0xe4,
  15560. 0x7b, 0x72, 0xae, 0xfd, 0xc7, 0x55, 0x58, 0x63, 0x59, 0xe0, 0x42, 0x2f, 0x7a, 0x04, 0xcf, 0x3a,
  15561. 0xf1, 0x22, 0x30, 0xa4, 0xd8, 0x87, 0x0e, 0x41, 0x35, 0x75, 0x79, 0x0d, 0x36, 0x39, 0x17, 0x1e,
  15562. 0x2b, 0x35, 0x4a, 0x8a, 0xc4, 0xe8, 0x05, 0x4a, 0xdd, 0xe3, 0x44, 0x5d, 0xa8, 0x60, 0x57, 0x52,
  15563. 0xff, 0xa2, 0x76, 0x25, 0x5c, 0x09, 0x85, 0xde, 0xcc, 0x04, 0x5a, 0xdc, 0x3f, 0x0a, 0xc0, 0xb9,
  15564. 0xeb, 0x95, 0x58, 0x9f, 0x34, 0x4a, 0xac, 0x4f, 0x4c, 0xcd, 0x50, 0xf3, 0x2c, 0x3f, 0x80, 0x56,
  15565. 0xd1, 0xc2, 0xb1, 0x68, 0xe9, 0x05, 0x8b, 0x36, 0xc2, 0xbf, 0x56, 0x81, 0x0b, 0x25, 0x7e, 0xcf,
  15566. 0xe4, 0xa0, 0xc4, 0x01, 0x97, 0xf4, 0x22, 0x35, 0x28, 0x22, 0x12, 0xbf, 0xf2, 0xac, 0x63, 0x31,
  15567. 0x09, 0xe5, 0xc4, 0x29, 0x69, 0x99, 0x8c, 0xb4, 0xa3, 0x8c, 0x42, 0x54, 0xe9, 0x7d, 0x9b, 0xbd,
  15568. 0x3b, 0xa5, 0xf7, 0x6d, 0xfa, 0x74, 0x52, 0x6c, 0x8a, 0x54, 0x9a, 0x4e, 0x6b, 0xec, 0xca, 0xee,
  15569. 0xb5, 0x7f, 0xa1, 0x02, 0x1d, 0xd3, 0x5b, 0x39, 0xc7, 0xd9, 0x8a, 0x96, 0x50, 0x38, 0xdb, 0xb3,
  15570. 0x03, 0xcb, 0x2d, 0xda, 0x11, 0x5d, 0x97, 0x98, 0x50, 0x4f, 0x68, 0x9c, 0xe5, 0x8b, 0x13, 0xb8,
  15571. 0xfd, 0xd7, 0x6b, 0x1c, 0x3e, 0xd7, 0xd8, 0xe3, 0x4f, 0xfe, 0x68, 0xc8, 0xeb, 0x90, 0x19, 0xb1,
  15572. 0x0c, 0xb2, 0xb7, 0x41, 0x56, 0xe4, 0xdd, 0x5c, 0x9d, 0x74, 0x4b, 0x3f, 0x12, 0x72, 0xe6, 0x0b,
  15573. 0x22, 0xa4, 0xdf, 0x89, 0x55, 0x89, 0x73, 0x65, 0x0f, 0xe1, 0x86, 0x77, 0xe5, 0x65, 0x68, 0xe1,
  15574. 0xac, 0x99, 0x5c, 0x23, 0x4e, 0x23, 0xab, 0xcd, 0xb5, 0xd1, 0xb1, 0x9b, 0x24, 0xee, 0xe8, 0x88,
  15575. 0xb0, 0xd0, 0x6a, 0x66, 0x74, 0x7c, 0x93, 0xa0, 0x62, 0x09, 0x93, 0xf8, 0xb3, 0x78, 0xe0, 0xa9,
  15576. 0x78, 0x24, 0x56, 0xb5, 0x4d, 0x04, 0xdc, 0x56, 0xf1, 0xe8, 0x0c, 0x8f, 0x7b, 0xf8, 0xc1, 0x79,
  15577. 0xdc, 0xb7, 0x9f, 0xc8, 0xe3, 0xbe, 0xf3, 0x64, 0x1e, 0xf7, 0xdd, 0x73, 0x3c, 0xee, 0x7b, 0x67,
  15578. 0x79, 0xdc, 0xf7, 0xf3, 0x1e, 0xf7, 0xb6, 0xc3, 0xde, 0x05, 0x3b, 0x63, 0xe5, 0x26, 0x14, 0xaa,
  15579. 0x2f, 0x17, 0xf2, 0x8f, 0x6d, 0x10, 0xb3, 0x90, 0x7f, 0x1c, 0x0a, 0x96, 0x03, 0xbd, 0x8c, 0xa2,
  15580. 0xd1, 0xb5, 0x6d, 0xfd, 0xc6, 0x01, 0x42, 0x1f, 0xc4, 0x87, 0x3b, 0x08, 0xb3, 0x77, 0xb9, 0x4e,
  15581. 0x5c, 0x24, 0x3f, 0x4e, 0xfc, 0x91, 0x75, 0x03, 0x60, 0x84, 0x0d, 0x98, 0x71, 0xd1, 0xcf, 0x7a,
  15582. 0x7f, 0x97, 0x32, 0x93, 0x25, 0xec, 0x43, 0x68, 0x7e, 0x57, 0xa9, 0xd9, 0xbe, 0x7b, 0x44, 0x9a,
  15583. 0xb0, 0x23, 0xa5, 0x66, 0x83, 0xd8, 0x3d, 0x32, 0x0c, 0x77, 0xe0, 0x48, 0xd2, 0xd9, 0x6a, 0x27,
  15584. 0xcb, 0x61, 0xca, 0x2f, 0xba, 0x3a, 0x13, 0xeb, 0x2e, 0x4e, 0x39, 0x5c, 0x51, 0x5a, 0xf3, 0x36,
  15585. 0xb4, 0xd2, 0x72, 0xa5, 0x04, 0x95, 0xce, 0xe9, 0x34, 0x75, 0x45, 0xd6, 0x3b, 0xd0, 0x9c, 0xba,
  15586. 0x89, 0x8a, 0x7c, 0x77, 0xf2, 0x04, 0xde, 0xff, 0x3a, 0xab, 0x7d, 0x13, 0x2c, 0x5d, 0xd9, 0x99,
  15587. 0x72, 0xb2, 0x33, 0x04, 0x61, 0x7f, 0x2a, 0xe6, 0xcb, 0xbb, 0x12, 0x7e, 0x8a, 0x64, 0xda, 0x05,
  15588. 0xd5, 0x4b, 0x7b, 0xa6, 0x92, 0x1d, 0xad, 0x1a, 0xb9, 0x0c, 0x2d, 0xcc, 0x63, 0x86, 0xdf, 0x6f,
  15589. 0xce, 0x54, 0x92, 0xbe, 0x66, 0x4b, 0x02, 0x55, 0x33, 0x24, 0xf2, 0x4c, 0x89, 0x17, 0x11, 0xde,
  15590. 0xf4, 0x2c, 0xc7, 0x66, 0xfd, 0x88, 0xe1, 0x7c, 0xc5, 0xcf, 0x38, 0x91, 0x56, 0xe4, 0xbe, 0x56,
  15591. 0xb5, 0xe8, 0x57, 0xdd, 0xb3, 0x27, 0xc0, 0xea, 0x4e, 0x47, 0x80, 0x69, 0xfc, 0x79, 0xd6, 0x64,
  15592. 0x66, 0x2f, 0x7c, 0xd5, 0x1d, 0x20, 0x50, 0x9a, 0x81, 0xdb, 0x32, 0x9f, 0x02, 0x62, 0xf5, 0x0c,
  15593. 0x3f, 0xd2, 0x70, 0x03, 0xd9, 0x3c, 0x92, 0x91, 0xd2, 0xf8, 0x5f, 0xc9, 0x05, 0xeb, 0xda, 0x58,
  15594. 0x10, 0xaa, 0x1a, 0xd6, 0x05, 0x3f, 0x5b, 0x49, 0x8b, 0xde, 0x36, 0xa9, 0x4c, 0xf3, 0x19, 0x9a,
  15595. 0x82, 0xe0, 0x7e, 0xc5, 0x78, 0xa8, 0x68, 0x5f, 0x5b, 0x42, 0x18, 0xba, 0x66, 0x26, 0x61, 0xaf,
  15596. 0xb1, 0x4c, 0xda, 0x30, 0x79, 0xd8, 0x2a, 0x13, 0xee, 0xb2, 0xcd, 0xb0, 0x68, 0x17, 0xed, 0x5f,
  15597. 0x14, 0x97, 0xf7, 0x9d, 0x28, 0x8c, 0x63, 0xeb, 0x36, 0x74, 0x4f, 0xe7, 0x6e, 0x80, 0x68, 0x39,
  15598. 0xa1, 0x2d, 0x55, 0x29, 0x09, 0x1c, 0x83, 0xd9, 0xff, 0x9f, 0xb9, 0x1b, 0xdc, 0x73, 0x83, 0xc3,
  15599. 0x87, 0x98, 0xcb, 0xc9, 0x17, 0xc2, 0x5a, 0x46, 0x58, 0x5d, 0x12, 0xce, 0x92, 0xf4, 0x59, 0xaf,
  15600. 0xb2, 0x5a, 0xa8, 0xd1, 0x87, 0xe1, 0x8c, 0xbd, 0xde, 0xf3, 0x85, 0xec, 0x5f, 0x59, 0x81, 0xf5,
  15601. 0x85, 0xa6, 0x16, 0xed, 0x86, 0x2b, 0x25, 0x76, 0xc3, 0x88, 0x3c, 0x30, 0xb7, 0x21, 0xa5, 0x68,
  15602. 0x12, 0x00, 0x13, 0xe9, 0x85, 0x22, 0xb9, 0xdc, 0x29, 0x93, 0x11, 0xae, 0x79, 0x4d, 0x5f, 0xf1,
  15603. 0x98, 0x40, 0xf7, 0xeb, 0xb7, 0x00, 0x38, 0x97, 0x98, 0xcf, 0x2f, 0x0e, 0x24, 0xd7, 0x3f, 0xd6,
  15604. 0xcc, 0x25, 0xfa, 0xaf, 0xf5, 0x4d, 0x43, 0xde, 0x55, 0x2f, 0x09, 0x0e, 0x96, 0x2b, 0xbc, 0x20,
  15605. 0xf2, 0xc2, 0x6d, 0x40, 0x8d, 0xe7, 0xb6, 0x29, 0x81, 0x78, 0x17, 0xfe, 0x54, 0x15, 0xd6, 0x17,
  15606. 0xda, 0x2f, 0xb7, 0xd3, 0xa1, 0xb0, 0xbc, 0xc2, 0xdd, 0xe0, 0x7f, 0x8a, 0xc1, 0x51, 0x1c, 0x3f,
  15607. 0xf7, 0x9c, 0x06, 0xfe, 0x22, 0xf4, 0x34, 0x75, 0x25, 0x0f, 0x72, 0xf3, 0xd5, 0xd8, 0x11, 0x99,
  15608. 0x0d, 0xbf, 0xc6, 0x5d, 0x54, 0x48, 0xf1, 0xdd, 0x98, 0xb3, 0x2a, 0x7b, 0x0e, 0xda, 0x9e, 0x1f,
  15609. 0xe1, 0x71, 0xa4, 0x5a, 0xe4, 0x49, 0x20, 0x02, 0x71, 0x1d, 0x78, 0x0d, 0xab, 0xfc, 0xf3, 0xbf,
  15610. 0x72, 0xe0, 0x7a, 0x43, 0x65, 0xbe, 0xee, 0x6b, 0xbd, 0x05, 0x1b, 0xb9, 0x9c, 0xa9, 0x44, 0xb2,
  15611. 0x49, 0x17, 0x84, 0x65, 0x64, 0xd7, 0x02, 0x47, 0x24, 0x15, 0xa3, 0x70, 0x3a, 0x88, 0x94, 0x3b,
  15612. 0xe1, 0xd0, 0xc4, 0xfa, 0x59, 0xae, 0x28, 0x9c, 0x3a, 0xca, 0x9d, 0x50, 0x70, 0xe2, 0x2f, 0x41,
  15613. 0x57, 0x3f, 0xf3, 0x9b, 0x51, 0x7c, 0x75, 0xa7, 0xa3, 0x81, 0x9a, 0x9e, 0x24, 0x1f, 0x5d, 0xec,
  15614. 0x1f, 0x1b, 0xb2, 0x36, 0xf0, 0xfb, 0x83, 0xf9, 0xd4, 0xfe, 0x97, 0x2b, 0x70, 0xb1, 0x6c, 0x29,
  15615. 0x7f, 0x90, 0x1c, 0x56, 0x39, 0x23, 0x55, 0x3b, 0x97, 0x91, 0x32, 0x98, 0xa3, 0x7a, 0x39, 0x73,
  15616. 0xb4, 0x50, 0x33, 0xcd, 0x13, 0xef, 0xb6, 0x5c, 0xcd, 0x9f, 0x2c, 0xee, 0x9b, 0x46, 0x71, 0xdf,
  15617. 0xe4, 0xc8, 0xc2, 0xe6, 0x93, 0x93, 0x85, 0x3f, 0x0e, 0x3d, 0x66, 0x0f, 0xfe, 0xf7, 0xbc, 0xcf,
  15618. 0xf5, 0x63, 0x8c, 0x6c, 0x72, 0x18, 0x09, 0x37, 0xcf, 0xb1, 0x3b, 0xf1, 0x0d, 0x8e, 0x4d, 0xe2,
  15619. 0x2b, 0x11, 0x54, 0xf3, 0x19, 0x37, 0xb5, 0x0f, 0x8c, 0xa1, 0x86, 0xcc, 0xf7, 0x49, 0x57, 0x98,
  15620. 0x7b, 0x63, 0x40, 0xfc, 0x64, 0xb4, 0x7d, 0xc7, 0x46, 0x69, 0x26, 0x3c, 0xcb, 0x19, 0x2b, 0x81,
  15621. 0x7f, 0xad, 0x77, 0x75, 0x73, 0xc6, 0x14, 0xe4, 0xd5, 0x96, 0x65, 0xcd, 0x64, 0x11, 0x56, 0x0b,
  15622. 0xea, 0xe3, 0xfc, 0x69, 0xb5, 0x7f, 0xa7, 0x02, 0xfd, 0x7d, 0xaa, 0x2b, 0x0b, 0x60, 0x5d, 0x8c,
  15623. 0x49, 0xb3, 0x06, 0xd5, 0x58, 0x98, 0x98, 0x96, 0x83, 0x7f, 0xad, 0x6f, 0x90, 0x9f, 0x54, 0x92,
  15624. 0xb3, 0xad, 0xce, 0xeb, 0xda, 0xa9, 0x36, 0x31, 0x25, 0x50, 0xf1, 0x88, 0xbc, 0xa8, 0xe4, 0xd9,
  15625. 0x11, 0x32, 0x2d, 0x3a, 0x19, 0xa4, 0x67, 0xab, 0xa6, 0x4d, 0x8b, 0x4e, 0xee, 0xf3, 0xf1, 0xb2,
  15626. 0xde, 0x80, 0x8b, 0x98, 0x23, 0x9e, 0xb9, 0x23, 0x35, 0x50, 0x41, 0x82, 0x97, 0x7b, 0xe6, 0x07,
  15627. 0xbe, 0x3e, 0x75, 0x4f, 0xf6, 0x31, 0xe9, 0x0e, 0xa5, 0xe0, 0x79, 0xfc, 0x36, 0xf4, 0x0b, 0x0d,
  15628. 0xe2, 0x6e, 0x4a, 0x23, 0x6e, 0xd7, 0x1d, 0xfa, 0xaf, 0x03, 0xea, 0x65, 0x7c, 0xd7, 0xea, 0x68,
  15629. 0x1e, 0x61, 0xf9, 0x9b, 0x5a, 0xcc, 0x15, 0x8f, 0xd3, 0xc0, 0x2d, 0x74, 0xf9, 0x97, 0xbe, 0xd8,
  15630. 0x86, 0xd9, 0x88, 0x02, 0x11, 0xc7, 0x2c, 0xfc, 0x6b, 0xff, 0x8b, 0x0a, 0xc7, 0xb1, 0xa1, 0xaf,
  15631. 0xff, 0xeb, 0x34, 0xf1, 0x7f, 0xa5, 0xc2, 0x6f, 0xee, 0x6a, 0xb9, 0x43, 0xf9, 0x9b, 0xbb, 0x29,
  15632. 0xa2, 0x5a, 0x31, 0x1f, 0x73, 0x2b, 0x46, 0x3e, 0x32, 0xe4, 0xfc, 0x3a, 0x58, 0x93, 0x71, 0x99,
  15633. 0x9e, 0x15, 0xac, 0x89, 0x68, 0xef, 0xaf, 0xf1, 0x5a, 0x60, 0x6f, 0xac, 0xaf, 0x40, 0x1d, 0x9b,
  15634. 0x5e, 0xfe, 0x36, 0x2f, 0x95, 0xe5, 0x3c, 0xba, 0xe0, 0xc7, 0x7e, 0x3c, 0xc6, 0x82, 0xf1, 0x24,
  15635. 0x4c, 0xca, 0x0b, 0x62, 0x8e, 0xfd, 0x49, 0x98, 0x38, 0x9c, 0xc7, 0xfe, 0x95, 0x0a, 0x34, 0x35,
  15636. 0xcc, 0xfa, 0x2a, 0xd4, 0x7c, 0xd6, 0xf0, 0x9c, 0xf3, 0x0a, 0x2c, 0x65, 0x23, 0xd3, 0xec, 0x68,
  15637. 0xa4, 0xa3, 0x71, 0xf1, 0x13, 0x10, 0xd1, 0x48, 0x47, 0xa5, 0x5e, 0x36, 0x2f, 0x9b, 0x20, 0x66,
  15638. 0xda, 0x22, 0xd0, 0xd7, 0x46, 0xdb, 0x5b, 0xd0, 0xf0, 0xe3, 0xfb, 0xf3, 0xd1, 0xd1, 0xa9, 0xdc,
  15639. 0xac, 0xfa, 0xd3, 0x4e, 0x60, 0x95, 0x9e, 0x1f, 0x7a, 0x68, 0xbd, 0x0d, 0xad, 0x61, 0x38, 0xf1,
  15640. 0x35, 0x53, 0xb3, 0x68, 0x9f, 0x7a, 0xeb, 0xe1, 0xad, 0x70, 0xe2, 0x6b, 0xc3, 0x02, 0xfe, 0x47,
  15641. 0xa5, 0x90, 0xf7, 0x4d, 0x85, 0x9e, 0x25, 0xa5, 0x52, 0x49, 0xea, 0x50, 0xfe, 0xd9, 0x7f, 0x54,
  15642. 0x01, 0xc8, 0xaa, 0x5b, 0x12, 0x44, 0xea, 0x26, 0xf4, 0x8d, 0xf0, 0x43, 0x4f, 0x68, 0x9b, 0x91,
  15643. 0x3e, 0x33, 0x44, 0x28, 0xe1, 0x06, 0x74, 0x75, 0xec, 0xe8, 0xe5, 0x96, 0x72, 0x3a, 0x00, 0x6e,
  15644. 0x5b, 0x02, 0x48, 0x6b, 0x92, 0x69, 0x91, 0x9d, 0x37, 0xa5, 0xdc, 0x2f, 0x43, 0x9f, 0x6c, 0xe7,
  15645. 0x0d, 0xc2, 0x46, 0x7c, 0xc3, 0x10, 0x9c, 0x52, 0x36, 0xf6, 0xdf, 0x5c, 0xa1, 0xa1, 0x6a, 0x8d,
  15646. 0xc6, 0xeb, 0x70, 0x81, 0x43, 0xae, 0xe6, 0xdf, 0x1f, 0xe0, 0xfb, 0x80, 0x23, 0xb7, 0xe6, 0x1e,
  15647. 0x20, 0xf8, 0x16, 0x5c, 0x2e, 0xe4, 0xcf, 0x61, 0x5e, 0x36, 0xec, 0xd9, 0xca, 0x95, 0x33, 0xc3,
  15648. 0xb4, 0xbe, 0x42, 0x0f, 0x6e, 0x12, 0x98, 0x5f, 0x1c, 0x48, 0x25, 0x75, 0x7d, 0x03, 0x4e, 0x2d,
  15649. 0xbd, 0x0d, 0x9b, 0x66, 0x56, 0x69, 0xc6, 0x73, 0x4f, 0xe5, 0xf0, 0x5f, 0x34, 0x52, 0xb5, 0x4c,
  15650. 0xf3, 0xd4, 0xba, 0x01, 0x5b, 0x25, 0xa5, 0x72, 0x11, 0x64, 0x17, 0xca, 0xf1, 0x0d, 0xf1, 0xc7,
  15651. 0x1d, 0xa8, 0xe1, 0xd6, 0x5b, 0x88, 0x75, 0xfd, 0x05, 0xdf, 0xcb, 0x3a, 0x3b, 0xca, 0x75, 0x1a,
  15652. 0xb6, 0x3a, 0x8b, 0x72, 0xfd, 0x06, 0x34, 0xa5, 0x9d, 0x43, 0xc1, 0x21, 0x17, 0x4b, 0x9a, 0x39,
  15653. 0x74, 0x1a, 0xdc, 0xca, 0x21, 0x61, 0x70, 0x2c, 0x40, 0x6a, 0x51, 0x11, 0x4c, 0x6e, 0x2e, 0x14,
  15654. 0x21, 0x9d, 0xa8, 0x43, 0xdd, 0xa1, 0xbf, 0x69, 0xdf, 0x46, 0x63, 0x7f, 0x26, 0x8a, 0x9d, 0xc5,
  15655. 0xbe, 0xed, 0x8c, 0xfd, 0x19, 0xf7, 0x0d, 0xff, 0xa5, 0x7d, 0x9b, 0xba, 0xb3, 0x72, 0x03, 0x1b,
  15656. 0x7a, 0x95, 0x72, 0xc6, 0x7d, 0x7b, 0xe0, 0x1a, 0x8d, 0x20, 0x1e, 0x6e, 0x2d, 0x6b, 0x04, 0x91,
  15657. 0x3c, 0x37, 0xe2, 0x46, 0xe4, 0x5c, 0x4d, 0x65, 0x74, 0x00, 0x6f, 0x38, 0x27, 0x80, 0x77, 0x3b,
  15658. 0xca, 0x3e, 0xac, 0x1b, 0xd0, 0x96, 0xd9, 0x23, 0xc7, 0xec, 0xf6, 0x92, 0x57, 0x92, 0xc4, 0x3c,
  15659. 0x1a, 0xa2, 0xf4, 0x7f, 0xda, 0x55, 0x89, 0x77, 0x5a, 0xde, 0x55, 0x44, 0xe0, 0xdc, 0x55, 0xfd,
  15660. 0xda, 0xb8, 0xcc, 0xa1, 0xcb, 0x91, 0x4e, 0xcb, 0xe7, 0xd0, 0x4d, 0xf4, 0x1c, 0xba, 0x49, 0x3a,
  15661. 0x87, 0x91, 0x62, 0x23, 0xe1, 0xb2, 0x39, 0x74, 0x94, 0xc7, 0x73, 0xe8, 0xa8, 0x6c, 0xe3, 0xd1,
  15662. 0x5b, 0x9a, 0xfd, 0x25, 0x8d, 0x3c, 0xa0, 0xf7, 0xf2, 0x22, 0xfd, 0x2a, 0xe8, 0x77, 0x60, 0x8d,
  15663. 0x3b, 0x66, 0xbc, 0xd8, 0xb5, 0x56, 0xe2, 0xdc, 0x5f, 0x78, 0xe8, 0xcb, 0xe9, 0x47, 0x85, 0x97,
  15664. 0xbf, 0x74, 0xe3, 0xf1, 0x38, 0x9c, 0x91, 0x53, 0x4d, 0x59, 0xe3, 0xac, 0x05, 0x8b, 0x74, 0x68,
  15665. 0xef, 0x6f, 0x43, 0x97, 0xca, 0xe8, 0xc0, 0xc6, 0xe4, 0x6d, 0x53, 0xf6, 0xca, 0xb9, 0xd6, 0x32,
  15666. 0x39, 0xb4, 0xe0, 0x69, 0x5c, 0x6b, 0xbd, 0xa1, 0x99, 0xbb, 0xbe, 0xb0, 0x64, 0x43, 0xeb, 0x58,
  15667. 0x72, 0x69, 0x40, 0x3b, 0x5d, 0x8c, 0xbd, 0x59, 0x2e, 0x2e, 0x29, 0xc6, 0x91, 0xc2, 0xa8, 0x18,
  15668. 0xbb, 0xb9, 0xe8, 0x11, 0xd2, 0x13, 0x90, 0x1b, 0x4b, 0x46, 0x78, 0x3b, 0x72, 0x1f, 0xf3, 0x08,
  15669. 0xc9, 0x3c, 0x42, 0x97, 0x89, 0xe6, 0x81, 0xda, 0xda, 0x5c, 0x52, 0xc6, 0x99, 0x07, 0x82, 0x0b,
  15670. 0x48, 0x9f, 0xa8, 0x97, 0xc4, 0x78, 0x52, 0x65, 0xeb, 0xa9, 0x25, 0x4b, 0x62, 0x08, 0x8f, 0x79,
  15671. 0x49, 0x6e, 0x67, 0x85, 0xac, 0x9b, 0xd0, 0xe3, 0x25, 0xd1, 0x92, 0xbf, 0xad, 0xad, 0x25, 0x61,
  15672. 0x17, 0x52, 0xd9, 0xa0, 0x43, 0x0b, 0x92, 0x89, 0x0a, 0xdf, 0x93, 0x2a, 0x32, 0x79, 0xdc, 0xa5,
  15673. 0x25, 0x4b, 0x94, 0xca, 0xe4, 0x68, 0x89, 0xbe, 0x9b, 0xc9, 0xe5, 0x78, 0xae, 0x49, 0xa6, 0xb1,
  15674. 0xf5, 0xf4, 0x92, 0xb9, 0x26, 0x76, 0x83, 0xe7, 0x9a, 0x05, 0x30, 0xd9, 0xbc, 0xc5, 0xe3, 0xad,
  15675. 0xcb, 0x4b, 0xe7, 0x2d, 0x1e, 0xeb, 0x79, 0x8b, 0xc7, 0xd6, 0x1d, 0x99, 0x37, 0xc3, 0xf6, 0x63,
  15676. 0xeb, 0x99, 0x92, 0x90, 0xbd, 0x34, 0xe0, 0xd4, 0xfa, 0xc3, 0xa1, 0x01, 0x66, 0xdf, 0x06, 0x2a,
  15677. 0x76, 0xbd, 0xad, 0x2b, 0x4b, 0x51, 0xb1, 0xeb, 0x69, 0x54, 0xec, 0x66, 0x5b, 0xe3, 0xb1, 0x1f,
  15678. 0x8f, 0xe9, 0xd9, 0x9e, 0xb2, 0x32, 0x48, 0x4a, 0x71, 0x19, 0x22, 0xc5, 0x5e, 0x83, 0x06, 0x23,
  15679. 0xa0, 0x84, 0x5e, 0xef, 0x29, 0x86, 0x64, 0x67, 0xaa, 0xc6, 0x59, 0x25, 0xc4, 0x93, 0xdc, 0x5a,
  15680. 0xfb, 0xa4, 0xf7, 0xfa, 0x1b, 0xdf, 0x30, 0x32, 0x0c, 0x57, 0xe9, 0xe7, 0xda, 0xff, 0x0a, 0x00,
  15681. 0x00, 0xff, 0xff, 0xd9, 0x85, 0x23, 0xb4, 0xcc, 0xb4, 0x00, 0x00,
  15682. }