user.pb.go 259 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.28.1-devel
  4. // protoc v3.21.8
  5. // source: user.proto
  6. package user
  7. import (
  8. chat "git.ikuban.com/server/pw-protobuf/api/chat"
  9. common "git.ikuban.com/server/pw-protobuf/api/common"
  10. statistics "git.ikuban.com/server/pw-protobuf/api/statistics"
  11. _ "google.golang.org/genproto/googleapis/api/annotations"
  12. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  13. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  14. emptypb "google.golang.org/protobuf/types/known/emptypb"
  15. structpb "google.golang.org/protobuf/types/known/structpb"
  16. reflect "reflect"
  17. sync "sync"
  18. )
  19. const (
  20. // Verify that this generated code is sufficiently up-to-date.
  21. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  22. // Verify that runtime/protoimpl is sufficiently up-to-date.
  23. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  24. )
  25. type UpdateTodayRequest struct {
  26. state protoimpl.MessageState
  27. sizeCache protoimpl.SizeCache
  28. unknownFields protoimpl.UnknownFields
  29. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId"`
  30. TodaySendUnreadReminderNum int64 `protobuf:"varint,2,opt,name=todaySendUnreadReminderNum,proto3" json:"todaySendUnreadReminderNum"`
  31. TodaySendVisitorReminderNum int64 `protobuf:"varint,3,opt,name=todaySendVisitorReminderNum,proto3" json:"todaySendVisitorReminderNum"`
  32. }
  33. func (x *UpdateTodayRequest) Reset() {
  34. *x = UpdateTodayRequest{}
  35. if protoimpl.UnsafeEnabled {
  36. mi := &file_user_proto_msgTypes[0]
  37. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  38. ms.StoreMessageInfo(mi)
  39. }
  40. }
  41. func (x *UpdateTodayRequest) String() string {
  42. return protoimpl.X.MessageStringOf(x)
  43. }
  44. func (*UpdateTodayRequest) ProtoMessage() {}
  45. func (x *UpdateTodayRequest) ProtoReflect() protoreflect.Message {
  46. mi := &file_user_proto_msgTypes[0]
  47. if protoimpl.UnsafeEnabled && x != nil {
  48. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  49. if ms.LoadMessageInfo() == nil {
  50. ms.StoreMessageInfo(mi)
  51. }
  52. return ms
  53. }
  54. return mi.MessageOf(x)
  55. }
  56. // Deprecated: Use UpdateTodayRequest.ProtoReflect.Descriptor instead.
  57. func (*UpdateTodayRequest) Descriptor() ([]byte, []int) {
  58. return file_user_proto_rawDescGZIP(), []int{0}
  59. }
  60. func (x *UpdateTodayRequest) GetUserId() string {
  61. if x != nil {
  62. return x.UserId
  63. }
  64. return ""
  65. }
  66. func (x *UpdateTodayRequest) GetTodaySendUnreadReminderNum() int64 {
  67. if x != nil {
  68. return x.TodaySendUnreadReminderNum
  69. }
  70. return 0
  71. }
  72. func (x *UpdateTodayRequest) GetTodaySendVisitorReminderNum() int64 {
  73. if x != nil {
  74. return x.TodaySendVisitorReminderNum
  75. }
  76. return 0
  77. }
  78. type UpdateLastSendTemplateTimeRequest struct {
  79. state protoimpl.MessageState
  80. sizeCache protoimpl.SizeCache
  81. unknownFields protoimpl.UnknownFields
  82. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId"`
  83. LastSendTemplateTime int64 `protobuf:"varint,2,opt,name=lastSendTemplateTime,proto3" json:"lastSendTemplateTime"`
  84. }
  85. func (x *UpdateLastSendTemplateTimeRequest) Reset() {
  86. *x = UpdateLastSendTemplateTimeRequest{}
  87. if protoimpl.UnsafeEnabled {
  88. mi := &file_user_proto_msgTypes[1]
  89. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  90. ms.StoreMessageInfo(mi)
  91. }
  92. }
  93. func (x *UpdateLastSendTemplateTimeRequest) String() string {
  94. return protoimpl.X.MessageStringOf(x)
  95. }
  96. func (*UpdateLastSendTemplateTimeRequest) ProtoMessage() {}
  97. func (x *UpdateLastSendTemplateTimeRequest) ProtoReflect() protoreflect.Message {
  98. mi := &file_user_proto_msgTypes[1]
  99. if protoimpl.UnsafeEnabled && x != nil {
  100. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  101. if ms.LoadMessageInfo() == nil {
  102. ms.StoreMessageInfo(mi)
  103. }
  104. return ms
  105. }
  106. return mi.MessageOf(x)
  107. }
  108. // Deprecated: Use UpdateLastSendTemplateTimeRequest.ProtoReflect.Descriptor instead.
  109. func (*UpdateLastSendTemplateTimeRequest) Descriptor() ([]byte, []int) {
  110. return file_user_proto_rawDescGZIP(), []int{1}
  111. }
  112. func (x *UpdateLastSendTemplateTimeRequest) GetUserId() string {
  113. if x != nil {
  114. return x.UserId
  115. }
  116. return ""
  117. }
  118. func (x *UpdateLastSendTemplateTimeRequest) GetLastSendTemplateTime() int64 {
  119. if x != nil {
  120. return x.LastSendTemplateTime
  121. }
  122. return 0
  123. }
  124. type UserPrivacyStatusInfo struct {
  125. state protoimpl.MessageState
  126. sizeCache protoimpl.SizeCache
  127. unknownFields protoimpl.UnknownFields
  128. IsCloseGreet bool `protobuf:"varint,1,opt,name=isCloseGreet,proto3" json:"isCloseGreet"` // 是否关闭打招呼
  129. IsCloseMatching bool `protobuf:"varint,2,opt,name=isCloseMatching,proto3" json:"isCloseMatching"` // 是否关闭匹配到我
  130. }
  131. func (x *UserPrivacyStatusInfo) Reset() {
  132. *x = UserPrivacyStatusInfo{}
  133. if protoimpl.UnsafeEnabled {
  134. mi := &file_user_proto_msgTypes[2]
  135. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  136. ms.StoreMessageInfo(mi)
  137. }
  138. }
  139. func (x *UserPrivacyStatusInfo) String() string {
  140. return protoimpl.X.MessageStringOf(x)
  141. }
  142. func (*UserPrivacyStatusInfo) ProtoMessage() {}
  143. func (x *UserPrivacyStatusInfo) ProtoReflect() protoreflect.Message {
  144. mi := &file_user_proto_msgTypes[2]
  145. if protoimpl.UnsafeEnabled && x != nil {
  146. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  147. if ms.LoadMessageInfo() == nil {
  148. ms.StoreMessageInfo(mi)
  149. }
  150. return ms
  151. }
  152. return mi.MessageOf(x)
  153. }
  154. // Deprecated: Use UserPrivacyStatusInfo.ProtoReflect.Descriptor instead.
  155. func (*UserPrivacyStatusInfo) Descriptor() ([]byte, []int) {
  156. return file_user_proto_rawDescGZIP(), []int{2}
  157. }
  158. func (x *UserPrivacyStatusInfo) GetIsCloseGreet() bool {
  159. if x != nil {
  160. return x.IsCloseGreet
  161. }
  162. return false
  163. }
  164. func (x *UserPrivacyStatusInfo) GetIsCloseMatching() bool {
  165. if x != nil {
  166. return x.IsCloseMatching
  167. }
  168. return false
  169. }
  170. type IsCanGetReturnRewordReply struct {
  171. state protoimpl.MessageState
  172. sizeCache protoimpl.SizeCache
  173. unknownFields protoimpl.UnknownFields
  174. IsCanGetReword bool `protobuf:"varint,1,opt,name=isCanGetReword,proto3" json:"isCanGetReword"`
  175. }
  176. func (x *IsCanGetReturnRewordReply) Reset() {
  177. *x = IsCanGetReturnRewordReply{}
  178. if protoimpl.UnsafeEnabled {
  179. mi := &file_user_proto_msgTypes[3]
  180. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  181. ms.StoreMessageInfo(mi)
  182. }
  183. }
  184. func (x *IsCanGetReturnRewordReply) String() string {
  185. return protoimpl.X.MessageStringOf(x)
  186. }
  187. func (*IsCanGetReturnRewordReply) ProtoMessage() {}
  188. func (x *IsCanGetReturnRewordReply) ProtoReflect() protoreflect.Message {
  189. mi := &file_user_proto_msgTypes[3]
  190. if protoimpl.UnsafeEnabled && x != nil {
  191. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  192. if ms.LoadMessageInfo() == nil {
  193. ms.StoreMessageInfo(mi)
  194. }
  195. return ms
  196. }
  197. return mi.MessageOf(x)
  198. }
  199. // Deprecated: Use IsCanGetReturnRewordReply.ProtoReflect.Descriptor instead.
  200. func (*IsCanGetReturnRewordReply) Descriptor() ([]byte, []int) {
  201. return file_user_proto_rawDescGZIP(), []int{3}
  202. }
  203. func (x *IsCanGetReturnRewordReply) GetIsCanGetReword() bool {
  204. if x != nil {
  205. return x.IsCanGetReword
  206. }
  207. return false
  208. }
  209. type GetRandomMatchingRequest struct {
  210. state protoimpl.MessageState
  211. sizeCache protoimpl.SizeCache
  212. unknownFields protoimpl.UnknownFields
  213. Sex int64 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"` // 性别
  214. Province string `protobuf:"bytes,7,opt,name=province,proto3" json:"province"` // 省
  215. City string `protobuf:"bytes,8,opt,name=city,proto3" json:"city"` // 市
  216. MaxAge int64 `protobuf:"varint,9,opt,name=maxAge,proto3" json:"maxAge"` // 最大年龄
  217. MinAge int64 `protobuf:"varint,10,opt,name=minAge,proto3" json:"minAge"` // 最小年龄
  218. }
  219. func (x *GetRandomMatchingRequest) Reset() {
  220. *x = GetRandomMatchingRequest{}
  221. if protoimpl.UnsafeEnabled {
  222. mi := &file_user_proto_msgTypes[4]
  223. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  224. ms.StoreMessageInfo(mi)
  225. }
  226. }
  227. func (x *GetRandomMatchingRequest) String() string {
  228. return protoimpl.X.MessageStringOf(x)
  229. }
  230. func (*GetRandomMatchingRequest) ProtoMessage() {}
  231. func (x *GetRandomMatchingRequest) ProtoReflect() protoreflect.Message {
  232. mi := &file_user_proto_msgTypes[4]
  233. if protoimpl.UnsafeEnabled && x != nil {
  234. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  235. if ms.LoadMessageInfo() == nil {
  236. ms.StoreMessageInfo(mi)
  237. }
  238. return ms
  239. }
  240. return mi.MessageOf(x)
  241. }
  242. // Deprecated: Use GetRandomMatchingRequest.ProtoReflect.Descriptor instead.
  243. func (*GetRandomMatchingRequest) Descriptor() ([]byte, []int) {
  244. return file_user_proto_rawDescGZIP(), []int{4}
  245. }
  246. func (x *GetRandomMatchingRequest) GetSex() int64 {
  247. if x != nil {
  248. return x.Sex
  249. }
  250. return 0
  251. }
  252. func (x *GetRandomMatchingRequest) GetProvince() string {
  253. if x != nil {
  254. return x.Province
  255. }
  256. return ""
  257. }
  258. func (x *GetRandomMatchingRequest) GetCity() string {
  259. if x != nil {
  260. return x.City
  261. }
  262. return ""
  263. }
  264. func (x *GetRandomMatchingRequest) GetMaxAge() int64 {
  265. if x != nil {
  266. return x.MaxAge
  267. }
  268. return 0
  269. }
  270. func (x *GetRandomMatchingRequest) GetMinAge() int64 {
  271. if x != nil {
  272. return x.MinAge
  273. }
  274. return 0
  275. }
  276. type MatchUserDBWithoutMapRequest struct {
  277. state protoimpl.MessageState
  278. sizeCache protoimpl.SizeCache
  279. unknownFields protoimpl.UnknownFields
  280. IsMatchingMap map[string]bool `protobuf:"bytes,1,rep,name=isMatchingMap,proto3" json:"isMatchingMap" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"` // 已经匹配过的map
  281. Province string `protobuf:"bytes,2,opt,name=province,proto3" json:"province"` // 省
  282. City string `protobuf:"bytes,3,opt,name=city,proto3" json:"city"` // 市
  283. MaxAge int64 `protobuf:"varint,4,opt,name=maxAge,proto3" json:"maxAge"` // 最大年龄
  284. MinAge int64 `protobuf:"varint,5,opt,name=minAge,proto3" json:"minAge"` // 最小年龄
  285. Sex int64 `protobuf:"varint,6,opt,name=sex,proto3" json:"sex"` // 性别
  286. }
  287. func (x *MatchUserDBWithoutMapRequest) Reset() {
  288. *x = MatchUserDBWithoutMapRequest{}
  289. if protoimpl.UnsafeEnabled {
  290. mi := &file_user_proto_msgTypes[5]
  291. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  292. ms.StoreMessageInfo(mi)
  293. }
  294. }
  295. func (x *MatchUserDBWithoutMapRequest) String() string {
  296. return protoimpl.X.MessageStringOf(x)
  297. }
  298. func (*MatchUserDBWithoutMapRequest) ProtoMessage() {}
  299. func (x *MatchUserDBWithoutMapRequest) ProtoReflect() protoreflect.Message {
  300. mi := &file_user_proto_msgTypes[5]
  301. if protoimpl.UnsafeEnabled && x != nil {
  302. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  303. if ms.LoadMessageInfo() == nil {
  304. ms.StoreMessageInfo(mi)
  305. }
  306. return ms
  307. }
  308. return mi.MessageOf(x)
  309. }
  310. // Deprecated: Use MatchUserDBWithoutMapRequest.ProtoReflect.Descriptor instead.
  311. func (*MatchUserDBWithoutMapRequest) Descriptor() ([]byte, []int) {
  312. return file_user_proto_rawDescGZIP(), []int{5}
  313. }
  314. func (x *MatchUserDBWithoutMapRequest) GetIsMatchingMap() map[string]bool {
  315. if x != nil {
  316. return x.IsMatchingMap
  317. }
  318. return make(map[string]bool, 0)
  319. }
  320. func (x *MatchUserDBWithoutMapRequest) GetProvince() string {
  321. if x != nil {
  322. return x.Province
  323. }
  324. return ""
  325. }
  326. func (x *MatchUserDBWithoutMapRequest) GetCity() string {
  327. if x != nil {
  328. return x.City
  329. }
  330. return ""
  331. }
  332. func (x *MatchUserDBWithoutMapRequest) GetMaxAge() int64 {
  333. if x != nil {
  334. return x.MaxAge
  335. }
  336. return 0
  337. }
  338. func (x *MatchUserDBWithoutMapRequest) GetMinAge() int64 {
  339. if x != nil {
  340. return x.MinAge
  341. }
  342. return 0
  343. }
  344. func (x *MatchUserDBWithoutMapRequest) GetSex() int64 {
  345. if x != nil {
  346. return x.Sex
  347. }
  348. return 0
  349. }
  350. type GetUserLookHandPickNumReply struct {
  351. state protoimpl.MessageState
  352. sizeCache protoimpl.SizeCache
  353. unknownFields protoimpl.UnknownFields
  354. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"`
  355. UserIdList []string `protobuf:"bytes,2,rep,name=userIdList,proto3" json:"userIdList"`
  356. }
  357. func (x *GetUserLookHandPickNumReply) Reset() {
  358. *x = GetUserLookHandPickNumReply{}
  359. if protoimpl.UnsafeEnabled {
  360. mi := &file_user_proto_msgTypes[6]
  361. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  362. ms.StoreMessageInfo(mi)
  363. }
  364. }
  365. func (x *GetUserLookHandPickNumReply) String() string {
  366. return protoimpl.X.MessageStringOf(x)
  367. }
  368. func (*GetUserLookHandPickNumReply) ProtoMessage() {}
  369. func (x *GetUserLookHandPickNumReply) ProtoReflect() protoreflect.Message {
  370. mi := &file_user_proto_msgTypes[6]
  371. if protoimpl.UnsafeEnabled && x != nil {
  372. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  373. if ms.LoadMessageInfo() == nil {
  374. ms.StoreMessageInfo(mi)
  375. }
  376. return ms
  377. }
  378. return mi.MessageOf(x)
  379. }
  380. // Deprecated: Use GetUserLookHandPickNumReply.ProtoReflect.Descriptor instead.
  381. func (*GetUserLookHandPickNumReply) Descriptor() ([]byte, []int) {
  382. return file_user_proto_rawDescGZIP(), []int{6}
  383. }
  384. func (x *GetUserLookHandPickNumReply) GetNum() int64 {
  385. if x != nil {
  386. return x.Num
  387. }
  388. return 0
  389. }
  390. func (x *GetUserLookHandPickNumReply) GetUserIdList() []string {
  391. if x != nil {
  392. return x.UserIdList
  393. }
  394. return make([]string, 0)
  395. }
  396. type FindUserVipListDBReply struct {
  397. state protoimpl.MessageState
  398. sizeCache protoimpl.SizeCache
  399. unknownFields protoimpl.UnknownFields
  400. VipMap map[string]*VipInfo `protobuf:"bytes,1,rep,name=vipMap,proto3" json:"vipMap" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  401. }
  402. func (x *FindUserVipListDBReply) Reset() {
  403. *x = FindUserVipListDBReply{}
  404. if protoimpl.UnsafeEnabled {
  405. mi := &file_user_proto_msgTypes[7]
  406. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  407. ms.StoreMessageInfo(mi)
  408. }
  409. }
  410. func (x *FindUserVipListDBReply) String() string {
  411. return protoimpl.X.MessageStringOf(x)
  412. }
  413. func (*FindUserVipListDBReply) ProtoMessage() {}
  414. func (x *FindUserVipListDBReply) ProtoReflect() protoreflect.Message {
  415. mi := &file_user_proto_msgTypes[7]
  416. if protoimpl.UnsafeEnabled && x != nil {
  417. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  418. if ms.LoadMessageInfo() == nil {
  419. ms.StoreMessageInfo(mi)
  420. }
  421. return ms
  422. }
  423. return mi.MessageOf(x)
  424. }
  425. // Deprecated: Use FindUserVipListDBReply.ProtoReflect.Descriptor instead.
  426. func (*FindUserVipListDBReply) Descriptor() ([]byte, []int) {
  427. return file_user_proto_rawDescGZIP(), []int{7}
  428. }
  429. func (x *FindUserVipListDBReply) GetVipMap() map[string]*VipInfo {
  430. if x != nil {
  431. return x.VipMap
  432. }
  433. return make(map[string]*VipInfo, 0)
  434. }
  435. type VipInfo struct {
  436. state protoimpl.MessageState
  437. sizeCache protoimpl.SizeCache
  438. unknownFields protoimpl.UnknownFields
  439. IsVip bool `protobuf:"varint,1,opt,name=isVip,proto3" json:"isVip"` // 是否是vip
  440. VipLevel int64 `protobuf:"varint,2,opt,name=vipLevel,proto3" json:"vipLevel"` // vip 等级
  441. GrowthValue int64 `protobuf:"varint,3,opt,name=growthValue,proto3" json:"growthValue"` // vip成长值
  442. RenewalTime int64 `protobuf:"varint,4,opt,name=renewalTime,proto3" json:"renewalTime"` // 会员的续费时间
  443. ExpirationTime int64 `protobuf:"varint,5,opt,name=expirationTime,proto3" json:"expirationTime"` // 会员的到期时间
  444. CreateTime int64 `protobuf:"varint,6,opt,name=createTime,proto3" json:"createTime"` // 会员的开始时间
  445. IsYearVip bool `protobuf:"varint,7,opt,name=isYearVip,proto3" json:"isYearVip"` // 是否是年费vip
  446. VipFunctions []string `protobuf:"bytes,8,rep,name=vipFunctions,proto3" json:"vipFunctions"` // vip功能
  447. UserId string `protobuf:"bytes,9,opt,name=userId,proto3" json:"userId"` // id
  448. }
  449. func (x *VipInfo) Reset() {
  450. *x = VipInfo{}
  451. if protoimpl.UnsafeEnabled {
  452. mi := &file_user_proto_msgTypes[8]
  453. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  454. ms.StoreMessageInfo(mi)
  455. }
  456. }
  457. func (x *VipInfo) String() string {
  458. return protoimpl.X.MessageStringOf(x)
  459. }
  460. func (*VipInfo) ProtoMessage() {}
  461. func (x *VipInfo) ProtoReflect() protoreflect.Message {
  462. mi := &file_user_proto_msgTypes[8]
  463. if protoimpl.UnsafeEnabled && x != nil {
  464. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  465. if ms.LoadMessageInfo() == nil {
  466. ms.StoreMessageInfo(mi)
  467. }
  468. return ms
  469. }
  470. return mi.MessageOf(x)
  471. }
  472. // Deprecated: Use VipInfo.ProtoReflect.Descriptor instead.
  473. func (*VipInfo) Descriptor() ([]byte, []int) {
  474. return file_user_proto_rawDescGZIP(), []int{8}
  475. }
  476. func (x *VipInfo) GetIsVip() bool {
  477. if x != nil {
  478. return x.IsVip
  479. }
  480. return false
  481. }
  482. func (x *VipInfo) GetVipLevel() int64 {
  483. if x != nil {
  484. return x.VipLevel
  485. }
  486. return 0
  487. }
  488. func (x *VipInfo) GetGrowthValue() int64 {
  489. if x != nil {
  490. return x.GrowthValue
  491. }
  492. return 0
  493. }
  494. func (x *VipInfo) GetRenewalTime() int64 {
  495. if x != nil {
  496. return x.RenewalTime
  497. }
  498. return 0
  499. }
  500. func (x *VipInfo) GetExpirationTime() int64 {
  501. if x != nil {
  502. return x.ExpirationTime
  503. }
  504. return 0
  505. }
  506. func (x *VipInfo) GetCreateTime() int64 {
  507. if x != nil {
  508. return x.CreateTime
  509. }
  510. return 0
  511. }
  512. func (x *VipInfo) GetIsYearVip() bool {
  513. if x != nil {
  514. return x.IsYearVip
  515. }
  516. return false
  517. }
  518. func (x *VipInfo) GetVipFunctions() []string {
  519. if x != nil {
  520. return x.VipFunctions
  521. }
  522. return make([]string, 0)
  523. }
  524. func (x *VipInfo) GetUserId() string {
  525. if x != nil {
  526. return x.UserId
  527. }
  528. return ""
  529. }
  530. type SendMsgReduceCreditRequest struct {
  531. state protoimpl.MessageState
  532. sizeCache protoimpl.SizeCache
  533. unknownFields protoimpl.UnknownFields
  534. PersonID string `protobuf:"bytes,1,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  535. IsFree bool `protobuf:"varint,2,opt,name=isFree,proto3" json:"isFree"` // 是否免费
  536. Type string `protobuf:"bytes,3,opt,name=type,proto3" json:"type"` // 消息类型
  537. }
  538. func (x *SendMsgReduceCreditRequest) Reset() {
  539. *x = SendMsgReduceCreditRequest{}
  540. if protoimpl.UnsafeEnabled {
  541. mi := &file_user_proto_msgTypes[9]
  542. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  543. ms.StoreMessageInfo(mi)
  544. }
  545. }
  546. func (x *SendMsgReduceCreditRequest) String() string {
  547. return protoimpl.X.MessageStringOf(x)
  548. }
  549. func (*SendMsgReduceCreditRequest) ProtoMessage() {}
  550. func (x *SendMsgReduceCreditRequest) ProtoReflect() protoreflect.Message {
  551. mi := &file_user_proto_msgTypes[9]
  552. if protoimpl.UnsafeEnabled && x != nil {
  553. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  554. if ms.LoadMessageInfo() == nil {
  555. ms.StoreMessageInfo(mi)
  556. }
  557. return ms
  558. }
  559. return mi.MessageOf(x)
  560. }
  561. // Deprecated: Use SendMsgReduceCreditRequest.ProtoReflect.Descriptor instead.
  562. func (*SendMsgReduceCreditRequest) Descriptor() ([]byte, []int) {
  563. return file_user_proto_rawDescGZIP(), []int{9}
  564. }
  565. func (x *SendMsgReduceCreditRequest) GetPersonID() string {
  566. if x != nil {
  567. return x.PersonID
  568. }
  569. return ""
  570. }
  571. func (x *SendMsgReduceCreditRequest) GetIsFree() bool {
  572. if x != nil {
  573. return x.IsFree
  574. }
  575. return false
  576. }
  577. func (x *SendMsgReduceCreditRequest) GetType() string {
  578. if x != nil {
  579. return x.Type
  580. }
  581. return ""
  582. }
  583. type UserGetInformationAwardByActivityRequest struct {
  584. state protoimpl.MessageState
  585. sizeCache protoimpl.SizeCache
  586. unknownFields protoimpl.UnknownFields
  587. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId"`
  588. Credit int64 `protobuf:"varint,2,opt,name=credit,proto3" json:"credit"`
  589. Desc string `protobuf:"bytes,3,opt,name=desc,proto3" json:"desc"`
  590. }
  591. func (x *UserGetInformationAwardByActivityRequest) Reset() {
  592. *x = UserGetInformationAwardByActivityRequest{}
  593. if protoimpl.UnsafeEnabled {
  594. mi := &file_user_proto_msgTypes[10]
  595. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  596. ms.StoreMessageInfo(mi)
  597. }
  598. }
  599. func (x *UserGetInformationAwardByActivityRequest) String() string {
  600. return protoimpl.X.MessageStringOf(x)
  601. }
  602. func (*UserGetInformationAwardByActivityRequest) ProtoMessage() {}
  603. func (x *UserGetInformationAwardByActivityRequest) ProtoReflect() protoreflect.Message {
  604. mi := &file_user_proto_msgTypes[10]
  605. if protoimpl.UnsafeEnabled && x != nil {
  606. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  607. if ms.LoadMessageInfo() == nil {
  608. ms.StoreMessageInfo(mi)
  609. }
  610. return ms
  611. }
  612. return mi.MessageOf(x)
  613. }
  614. // Deprecated: Use UserGetInformationAwardByActivityRequest.ProtoReflect.Descriptor instead.
  615. func (*UserGetInformationAwardByActivityRequest) Descriptor() ([]byte, []int) {
  616. return file_user_proto_rawDescGZIP(), []int{10}
  617. }
  618. func (x *UserGetInformationAwardByActivityRequest) GetUserId() string {
  619. if x != nil {
  620. return x.UserId
  621. }
  622. return ""
  623. }
  624. func (x *UserGetInformationAwardByActivityRequest) GetCredit() int64 {
  625. if x != nil {
  626. return x.Credit
  627. }
  628. return 0
  629. }
  630. func (x *UserGetInformationAwardByActivityRequest) GetDesc() string {
  631. if x != nil {
  632. return x.Desc
  633. }
  634. return ""
  635. }
  636. type UserGetInformationAwardByActivityReply struct {
  637. state protoimpl.MessageState
  638. sizeCache protoimpl.SizeCache
  639. unknownFields protoimpl.UnknownFields
  640. IsError bool `protobuf:"varint,1,opt,name=isError,proto3" json:"isError"`
  641. }
  642. func (x *UserGetInformationAwardByActivityReply) Reset() {
  643. *x = UserGetInformationAwardByActivityReply{}
  644. if protoimpl.UnsafeEnabled {
  645. mi := &file_user_proto_msgTypes[11]
  646. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  647. ms.StoreMessageInfo(mi)
  648. }
  649. }
  650. func (x *UserGetInformationAwardByActivityReply) String() string {
  651. return protoimpl.X.MessageStringOf(x)
  652. }
  653. func (*UserGetInformationAwardByActivityReply) ProtoMessage() {}
  654. func (x *UserGetInformationAwardByActivityReply) ProtoReflect() protoreflect.Message {
  655. mi := &file_user_proto_msgTypes[11]
  656. if protoimpl.UnsafeEnabled && x != nil {
  657. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  658. if ms.LoadMessageInfo() == nil {
  659. ms.StoreMessageInfo(mi)
  660. }
  661. return ms
  662. }
  663. return mi.MessageOf(x)
  664. }
  665. // Deprecated: Use UserGetInformationAwardByActivityReply.ProtoReflect.Descriptor instead.
  666. func (*UserGetInformationAwardByActivityReply) Descriptor() ([]byte, []int) {
  667. return file_user_proto_rawDescGZIP(), []int{11}
  668. }
  669. func (x *UserGetInformationAwardByActivityReply) GetIsError() bool {
  670. if x != nil {
  671. return x.IsError
  672. }
  673. return false
  674. }
  675. type AddUserCreditRequest struct {
  676. state protoimpl.MessageState
  677. sizeCache protoimpl.SizeCache
  678. unknownFields protoimpl.UnknownFields
  679. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  680. Credit int64 `protobuf:"varint,2,opt,name=credit,proto3" json:"credit"` // 积分
  681. Detail string `protobuf:"bytes,3,opt,name=detail,proto3" json:"detail"`
  682. }
  683. func (x *AddUserCreditRequest) Reset() {
  684. *x = AddUserCreditRequest{}
  685. if protoimpl.UnsafeEnabled {
  686. mi := &file_user_proto_msgTypes[12]
  687. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  688. ms.StoreMessageInfo(mi)
  689. }
  690. }
  691. func (x *AddUserCreditRequest) String() string {
  692. return protoimpl.X.MessageStringOf(x)
  693. }
  694. func (*AddUserCreditRequest) ProtoMessage() {}
  695. func (x *AddUserCreditRequest) ProtoReflect() protoreflect.Message {
  696. mi := &file_user_proto_msgTypes[12]
  697. if protoimpl.UnsafeEnabled && x != nil {
  698. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  699. if ms.LoadMessageInfo() == nil {
  700. ms.StoreMessageInfo(mi)
  701. }
  702. return ms
  703. }
  704. return mi.MessageOf(x)
  705. }
  706. // Deprecated: Use AddUserCreditRequest.ProtoReflect.Descriptor instead.
  707. func (*AddUserCreditRequest) Descriptor() ([]byte, []int) {
  708. return file_user_proto_rawDescGZIP(), []int{12}
  709. }
  710. func (x *AddUserCreditRequest) GetId() string {
  711. if x != nil {
  712. return x.Id
  713. }
  714. return ""
  715. }
  716. func (x *AddUserCreditRequest) GetCredit() int64 {
  717. if x != nil {
  718. return x.Credit
  719. }
  720. return 0
  721. }
  722. func (x *AddUserCreditRequest) GetDetail() string {
  723. if x != nil {
  724. return x.Detail
  725. }
  726. return ""
  727. }
  728. type ReportUserBlackRequest struct {
  729. state protoimpl.MessageState
  730. sizeCache protoimpl.SizeCache
  731. unknownFields protoimpl.UnknownFields
  732. PersonId string `protobuf:"bytes,1,opt,name=personId,proto3" json:"personId"`
  733. Result string `protobuf:"bytes,2,opt,name=result,proto3" json:"result"`
  734. }
  735. func (x *ReportUserBlackRequest) Reset() {
  736. *x = ReportUserBlackRequest{}
  737. if protoimpl.UnsafeEnabled {
  738. mi := &file_user_proto_msgTypes[13]
  739. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  740. ms.StoreMessageInfo(mi)
  741. }
  742. }
  743. func (x *ReportUserBlackRequest) String() string {
  744. return protoimpl.X.MessageStringOf(x)
  745. }
  746. func (*ReportUserBlackRequest) ProtoMessage() {}
  747. func (x *ReportUserBlackRequest) ProtoReflect() protoreflect.Message {
  748. mi := &file_user_proto_msgTypes[13]
  749. if protoimpl.UnsafeEnabled && x != nil {
  750. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  751. if ms.LoadMessageInfo() == nil {
  752. ms.StoreMessageInfo(mi)
  753. }
  754. return ms
  755. }
  756. return mi.MessageOf(x)
  757. }
  758. // Deprecated: Use ReportUserBlackRequest.ProtoReflect.Descriptor instead.
  759. func (*ReportUserBlackRequest) Descriptor() ([]byte, []int) {
  760. return file_user_proto_rawDescGZIP(), []int{13}
  761. }
  762. func (x *ReportUserBlackRequest) GetPersonId() string {
  763. if x != nil {
  764. return x.PersonId
  765. }
  766. return ""
  767. }
  768. func (x *ReportUserBlackRequest) GetResult() string {
  769. if x != nil {
  770. return x.Result
  771. }
  772. return ""
  773. }
  774. type SendMessageRequest struct {
  775. state protoimpl.MessageState
  776. sizeCache protoimpl.SizeCache
  777. unknownFields protoimpl.UnknownFields
  778. RoomId int64 `protobuf:"varint,1,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  779. Message *common.Message `protobuf:"bytes,2,opt,name=message,proto3" json:"message"` // 消息
  780. MsgType string `protobuf:"bytes,3,opt,name=msgType,proto3" json:"msgType"` // 消息类型
  781. WebsocketTag string `protobuf:"bytes,4,opt,name=websocketTag,proto3" json:"websocketTag"`
  782. }
  783. func (x *SendMessageRequest) Reset() {
  784. *x = SendMessageRequest{}
  785. if protoimpl.UnsafeEnabled {
  786. mi := &file_user_proto_msgTypes[14]
  787. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  788. ms.StoreMessageInfo(mi)
  789. }
  790. }
  791. func (x *SendMessageRequest) String() string {
  792. return protoimpl.X.MessageStringOf(x)
  793. }
  794. func (*SendMessageRequest) ProtoMessage() {}
  795. func (x *SendMessageRequest) ProtoReflect() protoreflect.Message {
  796. mi := &file_user_proto_msgTypes[14]
  797. if protoimpl.UnsafeEnabled && x != nil {
  798. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  799. if ms.LoadMessageInfo() == nil {
  800. ms.StoreMessageInfo(mi)
  801. }
  802. return ms
  803. }
  804. return mi.MessageOf(x)
  805. }
  806. // Deprecated: Use SendMessageRequest.ProtoReflect.Descriptor instead.
  807. func (*SendMessageRequest) Descriptor() ([]byte, []int) {
  808. return file_user_proto_rawDescGZIP(), []int{14}
  809. }
  810. func (x *SendMessageRequest) GetRoomId() int64 {
  811. if x != nil {
  812. return x.RoomId
  813. }
  814. return 0
  815. }
  816. func (x *SendMessageRequest) GetMessage() *common.Message {
  817. if x != nil && x.Message != nil {
  818. return x.Message
  819. }
  820. return &common.Message{}
  821. }
  822. func (x *SendMessageRequest) GetMsgType() string {
  823. if x != nil {
  824. return x.MsgType
  825. }
  826. return ""
  827. }
  828. func (x *SendMessageRequest) GetWebsocketTag() string {
  829. if x != nil {
  830. return x.WebsocketTag
  831. }
  832. return ""
  833. }
  834. type ManagerFindIsCheckQualityUserListRequest struct {
  835. state protoimpl.MessageState
  836. sizeCache protoimpl.SizeCache
  837. unknownFields protoimpl.UnknownFields
  838. Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
  839. PageSize int64 `protobuf:"varint,2,opt,name=pageSize,proto3" json:"pageSize"`
  840. Id int64 `protobuf:"varint,3,opt,name=id,proto3" json:"id"` // 用户ID
  841. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name"` // 姓名
  842. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  843. }
  844. func (x *ManagerFindIsCheckQualityUserListRequest) Reset() {
  845. *x = ManagerFindIsCheckQualityUserListRequest{}
  846. if protoimpl.UnsafeEnabled {
  847. mi := &file_user_proto_msgTypes[15]
  848. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  849. ms.StoreMessageInfo(mi)
  850. }
  851. }
  852. func (x *ManagerFindIsCheckQualityUserListRequest) String() string {
  853. return protoimpl.X.MessageStringOf(x)
  854. }
  855. func (*ManagerFindIsCheckQualityUserListRequest) ProtoMessage() {}
  856. func (x *ManagerFindIsCheckQualityUserListRequest) ProtoReflect() protoreflect.Message {
  857. mi := &file_user_proto_msgTypes[15]
  858. if protoimpl.UnsafeEnabled && x != nil {
  859. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  860. if ms.LoadMessageInfo() == nil {
  861. ms.StoreMessageInfo(mi)
  862. }
  863. return ms
  864. }
  865. return mi.MessageOf(x)
  866. }
  867. // Deprecated: Use ManagerFindIsCheckQualityUserListRequest.ProtoReflect.Descriptor instead.
  868. func (*ManagerFindIsCheckQualityUserListRequest) Descriptor() ([]byte, []int) {
  869. return file_user_proto_rawDescGZIP(), []int{15}
  870. }
  871. func (x *ManagerFindIsCheckQualityUserListRequest) GetPage() int64 {
  872. if x != nil {
  873. return x.Page
  874. }
  875. return 0
  876. }
  877. func (x *ManagerFindIsCheckQualityUserListRequest) GetPageSize() int64 {
  878. if x != nil {
  879. return x.PageSize
  880. }
  881. return 0
  882. }
  883. func (x *ManagerFindIsCheckQualityUserListRequest) GetId() int64 {
  884. if x != nil {
  885. return x.Id
  886. }
  887. return 0
  888. }
  889. func (x *ManagerFindIsCheckQualityUserListRequest) GetName() string {
  890. if x != nil {
  891. return x.Name
  892. }
  893. return ""
  894. }
  895. func (x *ManagerFindIsCheckQualityUserListRequest) GetSex() int64 {
  896. if x != nil {
  897. return x.Sex
  898. }
  899. return 0
  900. }
  901. type ManagerUpdateUserCreditRequest struct {
  902. state protoimpl.MessageState
  903. sizeCache protoimpl.SizeCache
  904. unknownFields protoimpl.UnknownFields
  905. PersonId string `protobuf:"bytes,1,opt,name=personId,proto3" json:"personId"`
  906. Num int64 `protobuf:"varint,2,opt,name=num,proto3" json:"num"`
  907. Title string `protobuf:"bytes,3,opt,name=title,proto3" json:"title"`
  908. }
  909. func (x *ManagerUpdateUserCreditRequest) Reset() {
  910. *x = ManagerUpdateUserCreditRequest{}
  911. if protoimpl.UnsafeEnabled {
  912. mi := &file_user_proto_msgTypes[16]
  913. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  914. ms.StoreMessageInfo(mi)
  915. }
  916. }
  917. func (x *ManagerUpdateUserCreditRequest) String() string {
  918. return protoimpl.X.MessageStringOf(x)
  919. }
  920. func (*ManagerUpdateUserCreditRequest) ProtoMessage() {}
  921. func (x *ManagerUpdateUserCreditRequest) ProtoReflect() protoreflect.Message {
  922. mi := &file_user_proto_msgTypes[16]
  923. if protoimpl.UnsafeEnabled && x != nil {
  924. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  925. if ms.LoadMessageInfo() == nil {
  926. ms.StoreMessageInfo(mi)
  927. }
  928. return ms
  929. }
  930. return mi.MessageOf(x)
  931. }
  932. // Deprecated: Use ManagerUpdateUserCreditRequest.ProtoReflect.Descriptor instead.
  933. func (*ManagerUpdateUserCreditRequest) Descriptor() ([]byte, []int) {
  934. return file_user_proto_rawDescGZIP(), []int{16}
  935. }
  936. func (x *ManagerUpdateUserCreditRequest) GetPersonId() string {
  937. if x != nil {
  938. return x.PersonId
  939. }
  940. return ""
  941. }
  942. func (x *ManagerUpdateUserCreditRequest) GetNum() int64 {
  943. if x != nil {
  944. return x.Num
  945. }
  946. return 0
  947. }
  948. func (x *ManagerUpdateUserCreditRequest) GetTitle() string {
  949. if x != nil {
  950. return x.Title
  951. }
  952. return ""
  953. }
  954. type ManagerMarkHighQualityUserRequest struct {
  955. state protoimpl.MessageState
  956. sizeCache protoimpl.SizeCache
  957. unknownFields protoimpl.UnknownFields
  958. PassIds []string `protobuf:"bytes,1,rep,name=passIds,proto3" json:"passIds"`
  959. UnPassIds []string `protobuf:"bytes,2,rep,name=unPassIds,proto3" json:"unPassIds"`
  960. }
  961. func (x *ManagerMarkHighQualityUserRequest) Reset() {
  962. *x = ManagerMarkHighQualityUserRequest{}
  963. if protoimpl.UnsafeEnabled {
  964. mi := &file_user_proto_msgTypes[17]
  965. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  966. ms.StoreMessageInfo(mi)
  967. }
  968. }
  969. func (x *ManagerMarkHighQualityUserRequest) String() string {
  970. return protoimpl.X.MessageStringOf(x)
  971. }
  972. func (*ManagerMarkHighQualityUserRequest) ProtoMessage() {}
  973. func (x *ManagerMarkHighQualityUserRequest) ProtoReflect() protoreflect.Message {
  974. mi := &file_user_proto_msgTypes[17]
  975. if protoimpl.UnsafeEnabled && x != nil {
  976. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  977. if ms.LoadMessageInfo() == nil {
  978. ms.StoreMessageInfo(mi)
  979. }
  980. return ms
  981. }
  982. return mi.MessageOf(x)
  983. }
  984. // Deprecated: Use ManagerMarkHighQualityUserRequest.ProtoReflect.Descriptor instead.
  985. func (*ManagerMarkHighQualityUserRequest) Descriptor() ([]byte, []int) {
  986. return file_user_proto_rawDescGZIP(), []int{17}
  987. }
  988. func (x *ManagerMarkHighQualityUserRequest) GetPassIds() []string {
  989. if x != nil {
  990. return x.PassIds
  991. }
  992. return make([]string, 0)
  993. }
  994. func (x *ManagerMarkHighQualityUserRequest) GetUnPassIds() []string {
  995. if x != nil {
  996. return x.UnPassIds
  997. }
  998. return make([]string, 0)
  999. }
  1000. type ManagerReMarkHighQualityUserRequest struct {
  1001. state protoimpl.MessageState
  1002. sizeCache protoimpl.SizeCache
  1003. unknownFields protoimpl.UnknownFields
  1004. UserIds []string `protobuf:"bytes,1,rep,name=userIds,proto3" json:"userIds"`
  1005. }
  1006. func (x *ManagerReMarkHighQualityUserRequest) Reset() {
  1007. *x = ManagerReMarkHighQualityUserRequest{}
  1008. if protoimpl.UnsafeEnabled {
  1009. mi := &file_user_proto_msgTypes[18]
  1010. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1011. ms.StoreMessageInfo(mi)
  1012. }
  1013. }
  1014. func (x *ManagerReMarkHighQualityUserRequest) String() string {
  1015. return protoimpl.X.MessageStringOf(x)
  1016. }
  1017. func (*ManagerReMarkHighQualityUserRequest) ProtoMessage() {}
  1018. func (x *ManagerReMarkHighQualityUserRequest) ProtoReflect() protoreflect.Message {
  1019. mi := &file_user_proto_msgTypes[18]
  1020. if protoimpl.UnsafeEnabled && x != nil {
  1021. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1022. if ms.LoadMessageInfo() == nil {
  1023. ms.StoreMessageInfo(mi)
  1024. }
  1025. return ms
  1026. }
  1027. return mi.MessageOf(x)
  1028. }
  1029. // Deprecated: Use ManagerReMarkHighQualityUserRequest.ProtoReflect.Descriptor instead.
  1030. func (*ManagerReMarkHighQualityUserRequest) Descriptor() ([]byte, []int) {
  1031. return file_user_proto_rawDescGZIP(), []int{18}
  1032. }
  1033. func (x *ManagerReMarkHighQualityUserRequest) GetUserIds() []string {
  1034. if x != nil {
  1035. return x.UserIds
  1036. }
  1037. return make([]string, 0)
  1038. }
  1039. type GetRecommendUserDBRequest struct {
  1040. state protoimpl.MessageState
  1041. sizeCache protoimpl.SizeCache
  1042. unknownFields protoimpl.UnknownFields
  1043. Sex int64 `protobuf:"varint,2,opt,name=sex,proto3" json:"sex"`
  1044. PersonIds []string `protobuf:"bytes,3,rep,name=personIds,proto3" json:"personIds"` // 匹配过的用户
  1045. }
  1046. func (x *GetRecommendUserDBRequest) Reset() {
  1047. *x = GetRecommendUserDBRequest{}
  1048. if protoimpl.UnsafeEnabled {
  1049. mi := &file_user_proto_msgTypes[19]
  1050. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1051. ms.StoreMessageInfo(mi)
  1052. }
  1053. }
  1054. func (x *GetRecommendUserDBRequest) String() string {
  1055. return protoimpl.X.MessageStringOf(x)
  1056. }
  1057. func (*GetRecommendUserDBRequest) ProtoMessage() {}
  1058. func (x *GetRecommendUserDBRequest) ProtoReflect() protoreflect.Message {
  1059. mi := &file_user_proto_msgTypes[19]
  1060. if protoimpl.UnsafeEnabled && x != nil {
  1061. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1062. if ms.LoadMessageInfo() == nil {
  1063. ms.StoreMessageInfo(mi)
  1064. }
  1065. return ms
  1066. }
  1067. return mi.MessageOf(x)
  1068. }
  1069. // Deprecated: Use GetRecommendUserDBRequest.ProtoReflect.Descriptor instead.
  1070. func (*GetRecommendUserDBRequest) Descriptor() ([]byte, []int) {
  1071. return file_user_proto_rawDescGZIP(), []int{19}
  1072. }
  1073. func (x *GetRecommendUserDBRequest) GetSex() int64 {
  1074. if x != nil {
  1075. return x.Sex
  1076. }
  1077. return 0
  1078. }
  1079. func (x *GetRecommendUserDBRequest) GetPersonIds() []string {
  1080. if x != nil {
  1081. return x.PersonIds
  1082. }
  1083. return make([]string, 0)
  1084. }
  1085. type FindRecommendHighQualityUserRequest struct {
  1086. state protoimpl.MessageState
  1087. sizeCache protoimpl.SizeCache
  1088. unknownFields protoimpl.UnknownFields
  1089. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"` // 数量
  1090. Sex int64 `protobuf:"varint,3,opt,name=sex,proto3" json:"sex"`
  1091. PersonId string `protobuf:"bytes,4,opt,name=personId,proto3" json:"personId"` // ID
  1092. }
  1093. func (x *FindRecommendHighQualityUserRequest) Reset() {
  1094. *x = FindRecommendHighQualityUserRequest{}
  1095. if protoimpl.UnsafeEnabled {
  1096. mi := &file_user_proto_msgTypes[20]
  1097. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1098. ms.StoreMessageInfo(mi)
  1099. }
  1100. }
  1101. func (x *FindRecommendHighQualityUserRequest) String() string {
  1102. return protoimpl.X.MessageStringOf(x)
  1103. }
  1104. func (*FindRecommendHighQualityUserRequest) ProtoMessage() {}
  1105. func (x *FindRecommendHighQualityUserRequest) ProtoReflect() protoreflect.Message {
  1106. mi := &file_user_proto_msgTypes[20]
  1107. if protoimpl.UnsafeEnabled && x != nil {
  1108. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1109. if ms.LoadMessageInfo() == nil {
  1110. ms.StoreMessageInfo(mi)
  1111. }
  1112. return ms
  1113. }
  1114. return mi.MessageOf(x)
  1115. }
  1116. // Deprecated: Use FindRecommendHighQualityUserRequest.ProtoReflect.Descriptor instead.
  1117. func (*FindRecommendHighQualityUserRequest) Descriptor() ([]byte, []int) {
  1118. return file_user_proto_rawDescGZIP(), []int{20}
  1119. }
  1120. func (x *FindRecommendHighQualityUserRequest) GetNum() int64 {
  1121. if x != nil {
  1122. return x.Num
  1123. }
  1124. return 0
  1125. }
  1126. func (x *FindRecommendHighQualityUserRequest) GetSex() int64 {
  1127. if x != nil {
  1128. return x.Sex
  1129. }
  1130. return 0
  1131. }
  1132. func (x *FindRecommendHighQualityUserRequest) GetPersonId() string {
  1133. if x != nil {
  1134. return x.PersonId
  1135. }
  1136. return ""
  1137. }
  1138. type FindRecommendHighQualityUserReply struct {
  1139. state protoimpl.MessageState
  1140. sizeCache protoimpl.SizeCache
  1141. unknownFields protoimpl.UnknownFields
  1142. PersonIdList []string `protobuf:"bytes,1,rep,name=personIdList,proto3" json:"personIdList"`
  1143. }
  1144. func (x *FindRecommendHighQualityUserReply) Reset() {
  1145. *x = FindRecommendHighQualityUserReply{}
  1146. if protoimpl.UnsafeEnabled {
  1147. mi := &file_user_proto_msgTypes[21]
  1148. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1149. ms.StoreMessageInfo(mi)
  1150. }
  1151. }
  1152. func (x *FindRecommendHighQualityUserReply) String() string {
  1153. return protoimpl.X.MessageStringOf(x)
  1154. }
  1155. func (*FindRecommendHighQualityUserReply) ProtoMessage() {}
  1156. func (x *FindRecommendHighQualityUserReply) ProtoReflect() protoreflect.Message {
  1157. mi := &file_user_proto_msgTypes[21]
  1158. if protoimpl.UnsafeEnabled && x != nil {
  1159. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1160. if ms.LoadMessageInfo() == nil {
  1161. ms.StoreMessageInfo(mi)
  1162. }
  1163. return ms
  1164. }
  1165. return mi.MessageOf(x)
  1166. }
  1167. // Deprecated: Use FindRecommendHighQualityUserReply.ProtoReflect.Descriptor instead.
  1168. func (*FindRecommendHighQualityUserReply) Descriptor() ([]byte, []int) {
  1169. return file_user_proto_rawDescGZIP(), []int{21}
  1170. }
  1171. func (x *FindRecommendHighQualityUserReply) GetPersonIdList() []string {
  1172. if x != nil {
  1173. return x.PersonIdList
  1174. }
  1175. return make([]string, 0)
  1176. }
  1177. type UpdateUserMatchedNumAndReturnUserMsgReply struct {
  1178. state protoimpl.MessageState
  1179. sizeCache protoimpl.SizeCache
  1180. unknownFields protoimpl.UnknownFields
  1181. TodayMatchedNum int64 `protobuf:"varint,1,opt,name=todayMatchedNum,proto3" json:"todayMatchedNum"` // 今日被匹配数
  1182. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  1183. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  1184. Sex int64 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"` // 性别
  1185. Age int64 `protobuf:"varint,5,opt,name=age,proto3" json:"age"` // 年龄
  1186. City string `protobuf:"bytes,6,opt,name=city,proto3" json:"city"` //城市
  1187. }
  1188. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) Reset() {
  1189. *x = UpdateUserMatchedNumAndReturnUserMsgReply{}
  1190. if protoimpl.UnsafeEnabled {
  1191. mi := &file_user_proto_msgTypes[22]
  1192. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1193. ms.StoreMessageInfo(mi)
  1194. }
  1195. }
  1196. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) String() string {
  1197. return protoimpl.X.MessageStringOf(x)
  1198. }
  1199. func (*UpdateUserMatchedNumAndReturnUserMsgReply) ProtoMessage() {}
  1200. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) ProtoReflect() protoreflect.Message {
  1201. mi := &file_user_proto_msgTypes[22]
  1202. if protoimpl.UnsafeEnabled && x != nil {
  1203. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1204. if ms.LoadMessageInfo() == nil {
  1205. ms.StoreMessageInfo(mi)
  1206. }
  1207. return ms
  1208. }
  1209. return mi.MessageOf(x)
  1210. }
  1211. // Deprecated: Use UpdateUserMatchedNumAndReturnUserMsgReply.ProtoReflect.Descriptor instead.
  1212. func (*UpdateUserMatchedNumAndReturnUserMsgReply) Descriptor() ([]byte, []int) {
  1213. return file_user_proto_rawDescGZIP(), []int{22}
  1214. }
  1215. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetTodayMatchedNum() int64 {
  1216. if x != nil {
  1217. return x.TodayMatchedNum
  1218. }
  1219. return 0
  1220. }
  1221. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetNickname() string {
  1222. if x != nil {
  1223. return x.Nickname
  1224. }
  1225. return ""
  1226. }
  1227. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetAvatarUrl() string {
  1228. if x != nil {
  1229. return x.AvatarUrl
  1230. }
  1231. return ""
  1232. }
  1233. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetSex() int64 {
  1234. if x != nil {
  1235. return x.Sex
  1236. }
  1237. return 0
  1238. }
  1239. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetAge() int64 {
  1240. if x != nil {
  1241. return x.Age
  1242. }
  1243. return 0
  1244. }
  1245. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetCity() string {
  1246. if x != nil {
  1247. return x.City
  1248. }
  1249. return ""
  1250. }
  1251. type GetUserDBMsgFromWebsocketReply struct {
  1252. state protoimpl.MessageState
  1253. sizeCache protoimpl.SizeCache
  1254. unknownFields protoimpl.UnknownFields
  1255. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  1256. Sex int64 `protobuf:"varint,2,opt,name=sex,proto3" json:"sex"` // 性别
  1257. Weight int64 `protobuf:"varint,3,opt,name=weight,proto3" json:"weight"` // 权重
  1258. WorkingStatus string `protobuf:"bytes,4,opt,name=workingStatus,proto3" json:"workingStatus"` // 工作状态
  1259. TodayMatchedNum int64 `protobuf:"varint,5,opt,name=todayMatchedNum,proto3" json:"todayMatchedNum"` // 今日被匹配数
  1260. Age int64 `protobuf:"varint,6,opt,name=age,proto3" json:"age"` // 年龄
  1261. Province string `protobuf:"bytes,7,opt,name=province,proto3" json:"province"` // 省
  1262. City string `protobuf:"bytes,8,opt,name=city,proto3" json:"city"` // 市
  1263. }
  1264. func (x *GetUserDBMsgFromWebsocketReply) Reset() {
  1265. *x = GetUserDBMsgFromWebsocketReply{}
  1266. if protoimpl.UnsafeEnabled {
  1267. mi := &file_user_proto_msgTypes[23]
  1268. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1269. ms.StoreMessageInfo(mi)
  1270. }
  1271. }
  1272. func (x *GetUserDBMsgFromWebsocketReply) String() string {
  1273. return protoimpl.X.MessageStringOf(x)
  1274. }
  1275. func (*GetUserDBMsgFromWebsocketReply) ProtoMessage() {}
  1276. func (x *GetUserDBMsgFromWebsocketReply) ProtoReflect() protoreflect.Message {
  1277. mi := &file_user_proto_msgTypes[23]
  1278. if protoimpl.UnsafeEnabled && x != nil {
  1279. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1280. if ms.LoadMessageInfo() == nil {
  1281. ms.StoreMessageInfo(mi)
  1282. }
  1283. return ms
  1284. }
  1285. return mi.MessageOf(x)
  1286. }
  1287. // Deprecated: Use GetUserDBMsgFromWebsocketReply.ProtoReflect.Descriptor instead.
  1288. func (*GetUserDBMsgFromWebsocketReply) Descriptor() ([]byte, []int) {
  1289. return file_user_proto_rawDescGZIP(), []int{23}
  1290. }
  1291. func (x *GetUserDBMsgFromWebsocketReply) GetId() string {
  1292. if x != nil {
  1293. return x.Id
  1294. }
  1295. return ""
  1296. }
  1297. func (x *GetUserDBMsgFromWebsocketReply) GetSex() int64 {
  1298. if x != nil {
  1299. return x.Sex
  1300. }
  1301. return 0
  1302. }
  1303. func (x *GetUserDBMsgFromWebsocketReply) GetWeight() int64 {
  1304. if x != nil {
  1305. return x.Weight
  1306. }
  1307. return 0
  1308. }
  1309. func (x *GetUserDBMsgFromWebsocketReply) GetWorkingStatus() string {
  1310. if x != nil {
  1311. return x.WorkingStatus
  1312. }
  1313. return ""
  1314. }
  1315. func (x *GetUserDBMsgFromWebsocketReply) GetTodayMatchedNum() int64 {
  1316. if x != nil {
  1317. return x.TodayMatchedNum
  1318. }
  1319. return 0
  1320. }
  1321. func (x *GetUserDBMsgFromWebsocketReply) GetAge() int64 {
  1322. if x != nil {
  1323. return x.Age
  1324. }
  1325. return 0
  1326. }
  1327. func (x *GetUserDBMsgFromWebsocketReply) GetProvince() string {
  1328. if x != nil {
  1329. return x.Province
  1330. }
  1331. return ""
  1332. }
  1333. func (x *GetUserDBMsgFromWebsocketReply) GetCity() string {
  1334. if x != nil {
  1335. return x.City
  1336. }
  1337. return ""
  1338. }
  1339. type UpdateUserMatchedNumRequest struct {
  1340. state protoimpl.MessageState
  1341. sizeCache protoimpl.SizeCache
  1342. unknownFields protoimpl.UnknownFields
  1343. UserId string `protobuf:"bytes,2,opt,name=userId,proto3" json:"userId"`
  1344. }
  1345. func (x *UpdateUserMatchedNumRequest) Reset() {
  1346. *x = UpdateUserMatchedNumRequest{}
  1347. if protoimpl.UnsafeEnabled {
  1348. mi := &file_user_proto_msgTypes[24]
  1349. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1350. ms.StoreMessageInfo(mi)
  1351. }
  1352. }
  1353. func (x *UpdateUserMatchedNumRequest) String() string {
  1354. return protoimpl.X.MessageStringOf(x)
  1355. }
  1356. func (*UpdateUserMatchedNumRequest) ProtoMessage() {}
  1357. func (x *UpdateUserMatchedNumRequest) ProtoReflect() protoreflect.Message {
  1358. mi := &file_user_proto_msgTypes[24]
  1359. if protoimpl.UnsafeEnabled && x != nil {
  1360. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1361. if ms.LoadMessageInfo() == nil {
  1362. ms.StoreMessageInfo(mi)
  1363. }
  1364. return ms
  1365. }
  1366. return mi.MessageOf(x)
  1367. }
  1368. // Deprecated: Use UpdateUserMatchedNumRequest.ProtoReflect.Descriptor instead.
  1369. func (*UpdateUserMatchedNumRequest) Descriptor() ([]byte, []int) {
  1370. return file_user_proto_rawDescGZIP(), []int{24}
  1371. }
  1372. func (x *UpdateUserMatchedNumRequest) GetUserId() string {
  1373. if x != nil {
  1374. return x.UserId
  1375. }
  1376. return ""
  1377. }
  1378. type SendNewMessageUnreadReminderRequest struct {
  1379. state protoimpl.MessageState
  1380. sizeCache protoimpl.SizeCache
  1381. unknownFields protoimpl.UnknownFields
  1382. PersonId string `protobuf:"bytes,1,opt,name=personId,proto3" json:"personId"`
  1383. SendPersonId string `protobuf:"bytes,2,opt,name=sendPersonId,proto3" json:"sendPersonId"`
  1384. }
  1385. func (x *SendNewMessageUnreadReminderRequest) Reset() {
  1386. *x = SendNewMessageUnreadReminderRequest{}
  1387. if protoimpl.UnsafeEnabled {
  1388. mi := &file_user_proto_msgTypes[25]
  1389. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1390. ms.StoreMessageInfo(mi)
  1391. }
  1392. }
  1393. func (x *SendNewMessageUnreadReminderRequest) String() string {
  1394. return protoimpl.X.MessageStringOf(x)
  1395. }
  1396. func (*SendNewMessageUnreadReminderRequest) ProtoMessage() {}
  1397. func (x *SendNewMessageUnreadReminderRequest) ProtoReflect() protoreflect.Message {
  1398. mi := &file_user_proto_msgTypes[25]
  1399. if protoimpl.UnsafeEnabled && x != nil {
  1400. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1401. if ms.LoadMessageInfo() == nil {
  1402. ms.StoreMessageInfo(mi)
  1403. }
  1404. return ms
  1405. }
  1406. return mi.MessageOf(x)
  1407. }
  1408. // Deprecated: Use SendNewMessageUnreadReminderRequest.ProtoReflect.Descriptor instead.
  1409. func (*SendNewMessageUnreadReminderRequest) Descriptor() ([]byte, []int) {
  1410. return file_user_proto_rawDescGZIP(), []int{25}
  1411. }
  1412. func (x *SendNewMessageUnreadReminderRequest) GetPersonId() string {
  1413. if x != nil {
  1414. return x.PersonId
  1415. }
  1416. return ""
  1417. }
  1418. func (x *SendNewMessageUnreadReminderRequest) GetSendPersonId() string {
  1419. if x != nil {
  1420. return x.SendPersonId
  1421. }
  1422. return ""
  1423. }
  1424. type SendMsgReduceCreditReply struct {
  1425. state protoimpl.MessageState
  1426. sizeCache protoimpl.SizeCache
  1427. unknownFields protoimpl.UnknownFields
  1428. IsSendReminder bool `protobuf:"varint,1,opt,name=isSendReminder,proto3" json:"isSendReminder"` // 是否发送免费次数用完提醒
  1429. }
  1430. func (x *SendMsgReduceCreditReply) Reset() {
  1431. *x = SendMsgReduceCreditReply{}
  1432. if protoimpl.UnsafeEnabled {
  1433. mi := &file_user_proto_msgTypes[26]
  1434. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1435. ms.StoreMessageInfo(mi)
  1436. }
  1437. }
  1438. func (x *SendMsgReduceCreditReply) String() string {
  1439. return protoimpl.X.MessageStringOf(x)
  1440. }
  1441. func (*SendMsgReduceCreditReply) ProtoMessage() {}
  1442. func (x *SendMsgReduceCreditReply) ProtoReflect() protoreflect.Message {
  1443. mi := &file_user_proto_msgTypes[26]
  1444. if protoimpl.UnsafeEnabled && x != nil {
  1445. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1446. if ms.LoadMessageInfo() == nil {
  1447. ms.StoreMessageInfo(mi)
  1448. }
  1449. return ms
  1450. }
  1451. return mi.MessageOf(x)
  1452. }
  1453. // Deprecated: Use SendMsgReduceCreditReply.ProtoReflect.Descriptor instead.
  1454. func (*SendMsgReduceCreditReply) Descriptor() ([]byte, []int) {
  1455. return file_user_proto_rawDescGZIP(), []int{26}
  1456. }
  1457. func (x *SendMsgReduceCreditReply) GetIsSendReminder() bool {
  1458. if x != nil {
  1459. return x.IsSendReminder
  1460. }
  1461. return false
  1462. }
  1463. type UserFreeNum struct {
  1464. state protoimpl.MessageState
  1465. sizeCache protoimpl.SizeCache
  1466. unknownFields protoimpl.UnknownFields
  1467. ReplyScripNum int64 `protobuf:"varint,1,opt,name=replyScripNum,proto3" json:"replyScripNum"` // 今日可免费回复纸条的次数
  1468. CreateScripNum int64 `protobuf:"varint,2,opt,name=createScripNum,proto3" json:"createScripNum"` // 今日免费创建纸条的次数
  1469. MatchingNum int64 `protobuf:"varint,3,opt,name=matchingNum,proto3" json:"matchingNum"` // 今日免费匹配数
  1470. }
  1471. func (x *UserFreeNum) Reset() {
  1472. *x = UserFreeNum{}
  1473. if protoimpl.UnsafeEnabled {
  1474. mi := &file_user_proto_msgTypes[27]
  1475. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1476. ms.StoreMessageInfo(mi)
  1477. }
  1478. }
  1479. func (x *UserFreeNum) String() string {
  1480. return protoimpl.X.MessageStringOf(x)
  1481. }
  1482. func (*UserFreeNum) ProtoMessage() {}
  1483. func (x *UserFreeNum) ProtoReflect() protoreflect.Message {
  1484. mi := &file_user_proto_msgTypes[27]
  1485. if protoimpl.UnsafeEnabled && x != nil {
  1486. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1487. if ms.LoadMessageInfo() == nil {
  1488. ms.StoreMessageInfo(mi)
  1489. }
  1490. return ms
  1491. }
  1492. return mi.MessageOf(x)
  1493. }
  1494. // Deprecated: Use UserFreeNum.ProtoReflect.Descriptor instead.
  1495. func (*UserFreeNum) Descriptor() ([]byte, []int) {
  1496. return file_user_proto_rawDescGZIP(), []int{27}
  1497. }
  1498. func (x *UserFreeNum) GetReplyScripNum() int64 {
  1499. if x != nil {
  1500. return x.ReplyScripNum
  1501. }
  1502. return 0
  1503. }
  1504. func (x *UserFreeNum) GetCreateScripNum() int64 {
  1505. if x != nil {
  1506. return x.CreateScripNum
  1507. }
  1508. return 0
  1509. }
  1510. func (x *UserFreeNum) GetMatchingNum() int64 {
  1511. if x != nil {
  1512. return x.MatchingNum
  1513. }
  1514. return 0
  1515. }
  1516. type ReplyScripRequest struct {
  1517. state protoimpl.MessageState
  1518. sizeCache protoimpl.SizeCache
  1519. unknownFields protoimpl.UnknownFields
  1520. ScripId int64 `protobuf:"varint,4,opt,name=scripId,proto3" json:"scripId"` // 小纸条ID
  1521. Message *common.Message `protobuf:"bytes,5,opt,name=message,proto3" json:"message"` // 回复内容 只需要提供 回复小纸条的内容 或 回复小纸条的素材链接
  1522. MsgType string `protobuf:"bytes,6,opt,name=msgType,proto3" json:"msgType"`
  1523. }
  1524. func (x *ReplyScripRequest) Reset() {
  1525. *x = ReplyScripRequest{}
  1526. if protoimpl.UnsafeEnabled {
  1527. mi := &file_user_proto_msgTypes[28]
  1528. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1529. ms.StoreMessageInfo(mi)
  1530. }
  1531. }
  1532. func (x *ReplyScripRequest) String() string {
  1533. return protoimpl.X.MessageStringOf(x)
  1534. }
  1535. func (*ReplyScripRequest) ProtoMessage() {}
  1536. func (x *ReplyScripRequest) ProtoReflect() protoreflect.Message {
  1537. mi := &file_user_proto_msgTypes[28]
  1538. if protoimpl.UnsafeEnabled && x != nil {
  1539. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1540. if ms.LoadMessageInfo() == nil {
  1541. ms.StoreMessageInfo(mi)
  1542. }
  1543. return ms
  1544. }
  1545. return mi.MessageOf(x)
  1546. }
  1547. // Deprecated: Use ReplyScripRequest.ProtoReflect.Descriptor instead.
  1548. func (*ReplyScripRequest) Descriptor() ([]byte, []int) {
  1549. return file_user_proto_rawDescGZIP(), []int{28}
  1550. }
  1551. func (x *ReplyScripRequest) GetScripId() int64 {
  1552. if x != nil {
  1553. return x.ScripId
  1554. }
  1555. return 0
  1556. }
  1557. func (x *ReplyScripRequest) GetMessage() *common.Message {
  1558. if x != nil && x.Message != nil {
  1559. return x.Message
  1560. }
  1561. return &common.Message{}
  1562. }
  1563. func (x *ReplyScripRequest) GetMsgType() string {
  1564. if x != nil {
  1565. return x.MsgType
  1566. }
  1567. return ""
  1568. }
  1569. type PersonLookScripRequest struct {
  1570. state protoimpl.MessageState
  1571. sizeCache protoimpl.SizeCache
  1572. unknownFields protoimpl.UnknownFields
  1573. ScripId int64 `protobuf:"varint,3,opt,name=scripId,proto3" json:"scripId"` // 纸条id
  1574. }
  1575. func (x *PersonLookScripRequest) Reset() {
  1576. *x = PersonLookScripRequest{}
  1577. if protoimpl.UnsafeEnabled {
  1578. mi := &file_user_proto_msgTypes[29]
  1579. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1580. ms.StoreMessageInfo(mi)
  1581. }
  1582. }
  1583. func (x *PersonLookScripRequest) String() string {
  1584. return protoimpl.X.MessageStringOf(x)
  1585. }
  1586. func (*PersonLookScripRequest) ProtoMessage() {}
  1587. func (x *PersonLookScripRequest) ProtoReflect() protoreflect.Message {
  1588. mi := &file_user_proto_msgTypes[29]
  1589. if protoimpl.UnsafeEnabled && x != nil {
  1590. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1591. if ms.LoadMessageInfo() == nil {
  1592. ms.StoreMessageInfo(mi)
  1593. }
  1594. return ms
  1595. }
  1596. return mi.MessageOf(x)
  1597. }
  1598. // Deprecated: Use PersonLookScripRequest.ProtoReflect.Descriptor instead.
  1599. func (*PersonLookScripRequest) Descriptor() ([]byte, []int) {
  1600. return file_user_proto_rawDescGZIP(), []int{29}
  1601. }
  1602. func (x *PersonLookScripRequest) GetScripId() int64 {
  1603. if x != nil {
  1604. return x.ScripId
  1605. }
  1606. return 0
  1607. }
  1608. type UserFindScripRequest struct {
  1609. state protoimpl.MessageState
  1610. sizeCache protoimpl.SizeCache
  1611. unknownFields protoimpl.UnknownFields
  1612. NextId int64 `protobuf:"varint,3,opt,name=nextId,proto3" json:"nextId"`
  1613. Offset int64 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset"`
  1614. }
  1615. func (x *UserFindScripRequest) Reset() {
  1616. *x = UserFindScripRequest{}
  1617. if protoimpl.UnsafeEnabled {
  1618. mi := &file_user_proto_msgTypes[30]
  1619. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1620. ms.StoreMessageInfo(mi)
  1621. }
  1622. }
  1623. func (x *UserFindScripRequest) String() string {
  1624. return protoimpl.X.MessageStringOf(x)
  1625. }
  1626. func (*UserFindScripRequest) ProtoMessage() {}
  1627. func (x *UserFindScripRequest) ProtoReflect() protoreflect.Message {
  1628. mi := &file_user_proto_msgTypes[30]
  1629. if protoimpl.UnsafeEnabled && x != nil {
  1630. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1631. if ms.LoadMessageInfo() == nil {
  1632. ms.StoreMessageInfo(mi)
  1633. }
  1634. return ms
  1635. }
  1636. return mi.MessageOf(x)
  1637. }
  1638. // Deprecated: Use UserFindScripRequest.ProtoReflect.Descriptor instead.
  1639. func (*UserFindScripRequest) Descriptor() ([]byte, []int) {
  1640. return file_user_proto_rawDescGZIP(), []int{30}
  1641. }
  1642. func (x *UserFindScripRequest) GetNextId() int64 {
  1643. if x != nil {
  1644. return x.NextId
  1645. }
  1646. return 0
  1647. }
  1648. func (x *UserFindScripRequest) GetOffset() int64 {
  1649. if x != nil {
  1650. return x.Offset
  1651. }
  1652. return 0
  1653. }
  1654. type DeleteScripRequest struct {
  1655. state protoimpl.MessageState
  1656. sizeCache protoimpl.SizeCache
  1657. unknownFields protoimpl.UnknownFields
  1658. ScripId int64 `protobuf:"varint,1,opt,name=scripId,proto3" json:"scripId"` // 纸条id
  1659. }
  1660. func (x *DeleteScripRequest) Reset() {
  1661. *x = DeleteScripRequest{}
  1662. if protoimpl.UnsafeEnabled {
  1663. mi := &file_user_proto_msgTypes[31]
  1664. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1665. ms.StoreMessageInfo(mi)
  1666. }
  1667. }
  1668. func (x *DeleteScripRequest) String() string {
  1669. return protoimpl.X.MessageStringOf(x)
  1670. }
  1671. func (*DeleteScripRequest) ProtoMessage() {}
  1672. func (x *DeleteScripRequest) ProtoReflect() protoreflect.Message {
  1673. mi := &file_user_proto_msgTypes[31]
  1674. if protoimpl.UnsafeEnabled && x != nil {
  1675. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1676. if ms.LoadMessageInfo() == nil {
  1677. ms.StoreMessageInfo(mi)
  1678. }
  1679. return ms
  1680. }
  1681. return mi.MessageOf(x)
  1682. }
  1683. // Deprecated: Use DeleteScripRequest.ProtoReflect.Descriptor instead.
  1684. func (*DeleteScripRequest) Descriptor() ([]byte, []int) {
  1685. return file_user_proto_rawDescGZIP(), []int{31}
  1686. }
  1687. func (x *DeleteScripRequest) GetScripId() int64 {
  1688. if x != nil {
  1689. return x.ScripId
  1690. }
  1691. return 0
  1692. }
  1693. type CreateScripRequest struct {
  1694. state protoimpl.MessageState
  1695. sizeCache protoimpl.SizeCache
  1696. unknownFields protoimpl.UnknownFields
  1697. Text string `protobuf:"bytes,1,opt,name=text,proto3" json:"text"` // 纸条内容
  1698. PictureUrl string `protobuf:"bytes,2,opt,name=pictureUrl,proto3" json:"pictureUrl"` // 纸条背景图
  1699. }
  1700. func (x *CreateScripRequest) Reset() {
  1701. *x = CreateScripRequest{}
  1702. if protoimpl.UnsafeEnabled {
  1703. mi := &file_user_proto_msgTypes[32]
  1704. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1705. ms.StoreMessageInfo(mi)
  1706. }
  1707. }
  1708. func (x *CreateScripRequest) String() string {
  1709. return protoimpl.X.MessageStringOf(x)
  1710. }
  1711. func (*CreateScripRequest) ProtoMessage() {}
  1712. func (x *CreateScripRequest) ProtoReflect() protoreflect.Message {
  1713. mi := &file_user_proto_msgTypes[32]
  1714. if protoimpl.UnsafeEnabled && x != nil {
  1715. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1716. if ms.LoadMessageInfo() == nil {
  1717. ms.StoreMessageInfo(mi)
  1718. }
  1719. return ms
  1720. }
  1721. return mi.MessageOf(x)
  1722. }
  1723. // Deprecated: Use CreateScripRequest.ProtoReflect.Descriptor instead.
  1724. func (*CreateScripRequest) Descriptor() ([]byte, []int) {
  1725. return file_user_proto_rawDescGZIP(), []int{32}
  1726. }
  1727. func (x *CreateScripRequest) GetText() string {
  1728. if x != nil {
  1729. return x.Text
  1730. }
  1731. return ""
  1732. }
  1733. func (x *CreateScripRequest) GetPictureUrl() string {
  1734. if x != nil {
  1735. return x.PictureUrl
  1736. }
  1737. return ""
  1738. }
  1739. type FindMatchingAvatarAndNumReply struct {
  1740. state protoimpl.MessageState
  1741. sizeCache protoimpl.SizeCache
  1742. unknownFields protoimpl.UnknownFields
  1743. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"` // 匹配人数
  1744. List []string `protobuf:"bytes,2,rep,name=list,proto3" json:"list"` // 头像列表
  1745. }
  1746. func (x *FindMatchingAvatarAndNumReply) Reset() {
  1747. *x = FindMatchingAvatarAndNumReply{}
  1748. if protoimpl.UnsafeEnabled {
  1749. mi := &file_user_proto_msgTypes[33]
  1750. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1751. ms.StoreMessageInfo(mi)
  1752. }
  1753. }
  1754. func (x *FindMatchingAvatarAndNumReply) String() string {
  1755. return protoimpl.X.MessageStringOf(x)
  1756. }
  1757. func (*FindMatchingAvatarAndNumReply) ProtoMessage() {}
  1758. func (x *FindMatchingAvatarAndNumReply) ProtoReflect() protoreflect.Message {
  1759. mi := &file_user_proto_msgTypes[33]
  1760. if protoimpl.UnsafeEnabled && x != nil {
  1761. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1762. if ms.LoadMessageInfo() == nil {
  1763. ms.StoreMessageInfo(mi)
  1764. }
  1765. return ms
  1766. }
  1767. return mi.MessageOf(x)
  1768. }
  1769. // Deprecated: Use FindMatchingAvatarAndNumReply.ProtoReflect.Descriptor instead.
  1770. func (*FindMatchingAvatarAndNumReply) Descriptor() ([]byte, []int) {
  1771. return file_user_proto_rawDescGZIP(), []int{33}
  1772. }
  1773. func (x *FindMatchingAvatarAndNumReply) GetNum() int64 {
  1774. if x != nil {
  1775. return x.Num
  1776. }
  1777. return 0
  1778. }
  1779. func (x *FindMatchingAvatarAndNumReply) GetList() []string {
  1780. if x != nil {
  1781. return x.List
  1782. }
  1783. return make([]string, 0)
  1784. }
  1785. type UserRechargeRequest struct {
  1786. state protoimpl.MessageState
  1787. sizeCache protoimpl.SizeCache
  1788. unknownFields protoimpl.UnknownFields
  1789. RechargeTemplateId int64 `protobuf:"varint,1,opt,name=RechargeTemplateId,proto3" json:"RechargeTemplateId"` // 充值套餐ID
  1790. }
  1791. func (x *UserRechargeRequest) Reset() {
  1792. *x = UserRechargeRequest{}
  1793. if protoimpl.UnsafeEnabled {
  1794. mi := &file_user_proto_msgTypes[34]
  1795. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1796. ms.StoreMessageInfo(mi)
  1797. }
  1798. }
  1799. func (x *UserRechargeRequest) String() string {
  1800. return protoimpl.X.MessageStringOf(x)
  1801. }
  1802. func (*UserRechargeRequest) ProtoMessage() {}
  1803. func (x *UserRechargeRequest) ProtoReflect() protoreflect.Message {
  1804. mi := &file_user_proto_msgTypes[34]
  1805. if protoimpl.UnsafeEnabled && x != nil {
  1806. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1807. if ms.LoadMessageInfo() == nil {
  1808. ms.StoreMessageInfo(mi)
  1809. }
  1810. return ms
  1811. }
  1812. return mi.MessageOf(x)
  1813. }
  1814. // Deprecated: Use UserRechargeRequest.ProtoReflect.Descriptor instead.
  1815. func (*UserRechargeRequest) Descriptor() ([]byte, []int) {
  1816. return file_user_proto_rawDescGZIP(), []int{34}
  1817. }
  1818. func (x *UserRechargeRequest) GetRechargeTemplateId() int64 {
  1819. if x != nil {
  1820. return x.RechargeTemplateId
  1821. }
  1822. return 0
  1823. }
  1824. type RechargeList struct {
  1825. state protoimpl.MessageState
  1826. sizeCache protoimpl.SizeCache
  1827. unknownFields protoimpl.UnknownFields
  1828. List []*RechargeInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1829. }
  1830. func (x *RechargeList) Reset() {
  1831. *x = RechargeList{}
  1832. if protoimpl.UnsafeEnabled {
  1833. mi := &file_user_proto_msgTypes[35]
  1834. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1835. ms.StoreMessageInfo(mi)
  1836. }
  1837. }
  1838. func (x *RechargeList) String() string {
  1839. return protoimpl.X.MessageStringOf(x)
  1840. }
  1841. func (*RechargeList) ProtoMessage() {}
  1842. func (x *RechargeList) ProtoReflect() protoreflect.Message {
  1843. mi := &file_user_proto_msgTypes[35]
  1844. if protoimpl.UnsafeEnabled && x != nil {
  1845. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1846. if ms.LoadMessageInfo() == nil {
  1847. ms.StoreMessageInfo(mi)
  1848. }
  1849. return ms
  1850. }
  1851. return mi.MessageOf(x)
  1852. }
  1853. // Deprecated: Use RechargeList.ProtoReflect.Descriptor instead.
  1854. func (*RechargeList) Descriptor() ([]byte, []int) {
  1855. return file_user_proto_rawDescGZIP(), []int{35}
  1856. }
  1857. func (x *RechargeList) GetList() []*RechargeInfo {
  1858. if x != nil {
  1859. return x.List
  1860. }
  1861. return make([]*RechargeInfo, 0)
  1862. }
  1863. type VipRechargeList struct {
  1864. state protoimpl.MessageState
  1865. sizeCache protoimpl.SizeCache
  1866. unknownFields protoimpl.UnknownFields
  1867. List []*VipRechargeInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1868. }
  1869. func (x *VipRechargeList) Reset() {
  1870. *x = VipRechargeList{}
  1871. if protoimpl.UnsafeEnabled {
  1872. mi := &file_user_proto_msgTypes[36]
  1873. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1874. ms.StoreMessageInfo(mi)
  1875. }
  1876. }
  1877. func (x *VipRechargeList) String() string {
  1878. return protoimpl.X.MessageStringOf(x)
  1879. }
  1880. func (*VipRechargeList) ProtoMessage() {}
  1881. func (x *VipRechargeList) ProtoReflect() protoreflect.Message {
  1882. mi := &file_user_proto_msgTypes[36]
  1883. if protoimpl.UnsafeEnabled && x != nil {
  1884. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1885. if ms.LoadMessageInfo() == nil {
  1886. ms.StoreMessageInfo(mi)
  1887. }
  1888. return ms
  1889. }
  1890. return mi.MessageOf(x)
  1891. }
  1892. // Deprecated: Use VipRechargeList.ProtoReflect.Descriptor instead.
  1893. func (*VipRechargeList) Descriptor() ([]byte, []int) {
  1894. return file_user_proto_rawDescGZIP(), []int{36}
  1895. }
  1896. func (x *VipRechargeList) GetList() []*VipRechargeInfo {
  1897. if x != nil {
  1898. return x.List
  1899. }
  1900. return make([]*VipRechargeInfo, 0)
  1901. }
  1902. type VipRechargeInfo struct {
  1903. state protoimpl.MessageState
  1904. sizeCache protoimpl.SizeCache
  1905. unknownFields protoimpl.UnknownFields
  1906. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1907. Label string `protobuf:"bytes,2,opt,name=label,proto3" json:"label"` // 标题
  1908. Price int64 `protobuf:"varint,3,opt,name=price,proto3" json:"price"` // 价格
  1909. OriginPrice int64 `protobuf:"varint,4,opt,name=originPrice,proto3" json:"originPrice"` // 原价
  1910. AveragePerDayPrice int64 `protobuf:"varint,5,opt,name=averagePerDayPrice,proto3" json:"averagePerDayPrice"` // 日常价格
  1911. AdditionalCoin int64 `protobuf:"varint,6,opt,name=additionalCoin,proto3" json:"additionalCoin"` // 赠送的积分
  1912. Description string `protobuf:"bytes,7,opt,name=description,proto3" json:"description"` // 描述
  1913. }
  1914. func (x *VipRechargeInfo) Reset() {
  1915. *x = VipRechargeInfo{}
  1916. if protoimpl.UnsafeEnabled {
  1917. mi := &file_user_proto_msgTypes[37]
  1918. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1919. ms.StoreMessageInfo(mi)
  1920. }
  1921. }
  1922. func (x *VipRechargeInfo) String() string {
  1923. return protoimpl.X.MessageStringOf(x)
  1924. }
  1925. func (*VipRechargeInfo) ProtoMessage() {}
  1926. func (x *VipRechargeInfo) ProtoReflect() protoreflect.Message {
  1927. mi := &file_user_proto_msgTypes[37]
  1928. if protoimpl.UnsafeEnabled && x != nil {
  1929. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1930. if ms.LoadMessageInfo() == nil {
  1931. ms.StoreMessageInfo(mi)
  1932. }
  1933. return ms
  1934. }
  1935. return mi.MessageOf(x)
  1936. }
  1937. // Deprecated: Use VipRechargeInfo.ProtoReflect.Descriptor instead.
  1938. func (*VipRechargeInfo) Descriptor() ([]byte, []int) {
  1939. return file_user_proto_rawDescGZIP(), []int{37}
  1940. }
  1941. func (x *VipRechargeInfo) GetId() int64 {
  1942. if x != nil {
  1943. return x.Id
  1944. }
  1945. return 0
  1946. }
  1947. func (x *VipRechargeInfo) GetLabel() string {
  1948. if x != nil {
  1949. return x.Label
  1950. }
  1951. return ""
  1952. }
  1953. func (x *VipRechargeInfo) GetPrice() int64 {
  1954. if x != nil {
  1955. return x.Price
  1956. }
  1957. return 0
  1958. }
  1959. func (x *VipRechargeInfo) GetOriginPrice() int64 {
  1960. if x != nil {
  1961. return x.OriginPrice
  1962. }
  1963. return 0
  1964. }
  1965. func (x *VipRechargeInfo) GetAveragePerDayPrice() int64 {
  1966. if x != nil {
  1967. return x.AveragePerDayPrice
  1968. }
  1969. return 0
  1970. }
  1971. func (x *VipRechargeInfo) GetAdditionalCoin() int64 {
  1972. if x != nil {
  1973. return x.AdditionalCoin
  1974. }
  1975. return 0
  1976. }
  1977. func (x *VipRechargeInfo) GetDescription() string {
  1978. if x != nil {
  1979. return x.Description
  1980. }
  1981. return ""
  1982. }
  1983. type RechargeInfo struct {
  1984. state protoimpl.MessageState
  1985. sizeCache protoimpl.SizeCache
  1986. unknownFields protoimpl.UnknownFields
  1987. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1988. Price int64 `protobuf:"varint,2,opt,name=price,proto3" json:"price"`
  1989. Credit int64 `protobuf:"varint,3,opt,name=credit,proto3" json:"credit"` // 积分
  1990. GiveCredit int64 `protobuf:"varint,4,opt,name=giveCredit,proto3" json:"giveCredit"` // 赠送的积分
  1991. Description string `protobuf:"bytes,5,opt,name=description,proto3" json:"description"` // 描述
  1992. Title string `protobuf:"bytes,6,opt,name=title,proto3" json:"title"` // 标题
  1993. }
  1994. func (x *RechargeInfo) Reset() {
  1995. *x = RechargeInfo{}
  1996. if protoimpl.UnsafeEnabled {
  1997. mi := &file_user_proto_msgTypes[38]
  1998. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1999. ms.StoreMessageInfo(mi)
  2000. }
  2001. }
  2002. func (x *RechargeInfo) String() string {
  2003. return protoimpl.X.MessageStringOf(x)
  2004. }
  2005. func (*RechargeInfo) ProtoMessage() {}
  2006. func (x *RechargeInfo) ProtoReflect() protoreflect.Message {
  2007. mi := &file_user_proto_msgTypes[38]
  2008. if protoimpl.UnsafeEnabled && x != nil {
  2009. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2010. if ms.LoadMessageInfo() == nil {
  2011. ms.StoreMessageInfo(mi)
  2012. }
  2013. return ms
  2014. }
  2015. return mi.MessageOf(x)
  2016. }
  2017. // Deprecated: Use RechargeInfo.ProtoReflect.Descriptor instead.
  2018. func (*RechargeInfo) Descriptor() ([]byte, []int) {
  2019. return file_user_proto_rawDescGZIP(), []int{38}
  2020. }
  2021. func (x *RechargeInfo) GetId() int64 {
  2022. if x != nil {
  2023. return x.Id
  2024. }
  2025. return 0
  2026. }
  2027. func (x *RechargeInfo) GetPrice() int64 {
  2028. if x != nil {
  2029. return x.Price
  2030. }
  2031. return 0
  2032. }
  2033. func (x *RechargeInfo) GetCredit() int64 {
  2034. if x != nil {
  2035. return x.Credit
  2036. }
  2037. return 0
  2038. }
  2039. func (x *RechargeInfo) GetGiveCredit() int64 {
  2040. if x != nil {
  2041. return x.GiveCredit
  2042. }
  2043. return 0
  2044. }
  2045. func (x *RechargeInfo) GetDescription() string {
  2046. if x != nil {
  2047. return x.Description
  2048. }
  2049. return ""
  2050. }
  2051. func (x *RechargeInfo) GetTitle() string {
  2052. if x != nil {
  2053. return x.Title
  2054. }
  2055. return ""
  2056. }
  2057. type InformationStatus struct {
  2058. state protoimpl.MessageState
  2059. sizeCache protoimpl.SizeCache
  2060. unknownFields protoimpl.UnknownFields
  2061. IsFinishInformation bool `protobuf:"varint,1,opt,name=isFinishInformation,proto3" json:"isFinishInformation"` //是否完善资料
  2062. IsGetAward bool `protobuf:"varint,2,opt,name=isGetAward,proto3" json:"isGetAward"` // 是否领取奖励
  2063. Credit int64 `protobuf:"varint,3,opt,name=credit,proto3" json:"credit"` // 奖励的金额
  2064. }
  2065. func (x *InformationStatus) Reset() {
  2066. *x = InformationStatus{}
  2067. if protoimpl.UnsafeEnabled {
  2068. mi := &file_user_proto_msgTypes[39]
  2069. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2070. ms.StoreMessageInfo(mi)
  2071. }
  2072. }
  2073. func (x *InformationStatus) String() string {
  2074. return protoimpl.X.MessageStringOf(x)
  2075. }
  2076. func (*InformationStatus) ProtoMessage() {}
  2077. func (x *InformationStatus) ProtoReflect() protoreflect.Message {
  2078. mi := &file_user_proto_msgTypes[39]
  2079. if protoimpl.UnsafeEnabled && x != nil {
  2080. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2081. if ms.LoadMessageInfo() == nil {
  2082. ms.StoreMessageInfo(mi)
  2083. }
  2084. return ms
  2085. }
  2086. return mi.MessageOf(x)
  2087. }
  2088. // Deprecated: Use InformationStatus.ProtoReflect.Descriptor instead.
  2089. func (*InformationStatus) Descriptor() ([]byte, []int) {
  2090. return file_user_proto_rawDescGZIP(), []int{39}
  2091. }
  2092. func (x *InformationStatus) GetIsFinishInformation() bool {
  2093. if x != nil {
  2094. return x.IsFinishInformation
  2095. }
  2096. return false
  2097. }
  2098. func (x *InformationStatus) GetIsGetAward() bool {
  2099. if x != nil {
  2100. return x.IsGetAward
  2101. }
  2102. return false
  2103. }
  2104. func (x *InformationStatus) GetCredit() int64 {
  2105. if x != nil {
  2106. return x.Credit
  2107. }
  2108. return 0
  2109. }
  2110. type UserBalance struct {
  2111. state protoimpl.MessageState
  2112. sizeCache protoimpl.SizeCache
  2113. unknownFields protoimpl.UnknownFields
  2114. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  2115. Credit int64 `protobuf:"varint,2,opt,name=credit,proto3" json:"credit"` // 积分
  2116. }
  2117. func (x *UserBalance) Reset() {
  2118. *x = UserBalance{}
  2119. if protoimpl.UnsafeEnabled {
  2120. mi := &file_user_proto_msgTypes[40]
  2121. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2122. ms.StoreMessageInfo(mi)
  2123. }
  2124. }
  2125. func (x *UserBalance) String() string {
  2126. return protoimpl.X.MessageStringOf(x)
  2127. }
  2128. func (*UserBalance) ProtoMessage() {}
  2129. func (x *UserBalance) ProtoReflect() protoreflect.Message {
  2130. mi := &file_user_proto_msgTypes[40]
  2131. if protoimpl.UnsafeEnabled && x != nil {
  2132. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2133. if ms.LoadMessageInfo() == nil {
  2134. ms.StoreMessageInfo(mi)
  2135. }
  2136. return ms
  2137. }
  2138. return mi.MessageOf(x)
  2139. }
  2140. // Deprecated: Use UserBalance.ProtoReflect.Descriptor instead.
  2141. func (*UserBalance) Descriptor() ([]byte, []int) {
  2142. return file_user_proto_rawDescGZIP(), []int{40}
  2143. }
  2144. func (x *UserBalance) GetId() string {
  2145. if x != nil {
  2146. return x.Id
  2147. }
  2148. return ""
  2149. }
  2150. func (x *UserBalance) GetCredit() int64 {
  2151. if x != nil {
  2152. return x.Credit
  2153. }
  2154. return 0
  2155. }
  2156. type UserFindChatListReply struct {
  2157. state protoimpl.MessageState
  2158. sizeCache protoimpl.SizeCache
  2159. unknownFields protoimpl.UnknownFields
  2160. List []*UserChatInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  2161. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  2162. }
  2163. func (x *UserFindChatListReply) Reset() {
  2164. *x = UserFindChatListReply{}
  2165. if protoimpl.UnsafeEnabled {
  2166. mi := &file_user_proto_msgTypes[41]
  2167. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2168. ms.StoreMessageInfo(mi)
  2169. }
  2170. }
  2171. func (x *UserFindChatListReply) String() string {
  2172. return protoimpl.X.MessageStringOf(x)
  2173. }
  2174. func (*UserFindChatListReply) ProtoMessage() {}
  2175. func (x *UserFindChatListReply) ProtoReflect() protoreflect.Message {
  2176. mi := &file_user_proto_msgTypes[41]
  2177. if protoimpl.UnsafeEnabled && x != nil {
  2178. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2179. if ms.LoadMessageInfo() == nil {
  2180. ms.StoreMessageInfo(mi)
  2181. }
  2182. return ms
  2183. }
  2184. return mi.MessageOf(x)
  2185. }
  2186. // Deprecated: Use UserFindChatListReply.ProtoReflect.Descriptor instead.
  2187. func (*UserFindChatListReply) Descriptor() ([]byte, []int) {
  2188. return file_user_proto_rawDescGZIP(), []int{41}
  2189. }
  2190. func (x *UserFindChatListReply) GetList() []*UserChatInfo {
  2191. if x != nil {
  2192. return x.List
  2193. }
  2194. return make([]*UserChatInfo, 0)
  2195. }
  2196. func (x *UserFindChatListReply) GetNextId() int64 {
  2197. if x != nil {
  2198. return x.NextId
  2199. }
  2200. return 0
  2201. }
  2202. type UserChatInfo struct {
  2203. state protoimpl.MessageState
  2204. sizeCache protoimpl.SizeCache
  2205. unknownFields protoimpl.UnknownFields
  2206. PersonId string `protobuf:"bytes,2,opt,name=personId,proto3" json:"personId"` // 用户ID
  2207. UnreadNum int64 `protobuf:"varint,3,opt,name=unreadNum,proto3" json:"unreadNum"` // 用户未读数
  2208. LastContent string `protobuf:"bytes,4,opt,name=lastContent,proto3" json:"lastContent"` // 上次发送内容
  2209. LastTime int64 `protobuf:"varint,5,opt,name=lastTime,proto3" json:"lastTime"` // 上次发送时间
  2210. Likeability int64 `protobuf:"varint,6,opt,name=likeability,proto3" json:"likeability"` // 好感度
  2211. Sex int64 `protobuf:"varint,8,opt,name=sex,proto3" json:"sex"` // 性别
  2212. AvatarUrl string `protobuf:"bytes,9,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像
  2213. Nickname string `protobuf:"bytes,10,opt,name=nickname,proto3" json:"nickname"` // 昵称
  2214. Age int64 `protobuf:"varint,11,opt,name=age,proto3" json:"age"` // 年龄
  2215. RoomId int64 `protobuf:"varint,12,opt,name=roomId,proto3" json:"roomId"` // 房间号ID
  2216. IsVip bool `protobuf:"varint,15,opt,name=isVip,proto3" json:"isVip"` // 是否是Vip
  2217. VipLevel int64 `protobuf:"varint,16,opt,name=vipLevel,proto3" json:"vipLevel"` // vip等级
  2218. IsYearVip bool `protobuf:"varint,17,opt,name=isYearVip,proto3" json:"isYearVip"` // 是否是年费Vip
  2219. VipFunctions []string `protobuf:"bytes,18,rep,name=vipFunctions,proto3" json:"vipFunctions"` // vip功能
  2220. }
  2221. func (x *UserChatInfo) Reset() {
  2222. *x = UserChatInfo{}
  2223. if protoimpl.UnsafeEnabled {
  2224. mi := &file_user_proto_msgTypes[42]
  2225. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2226. ms.StoreMessageInfo(mi)
  2227. }
  2228. }
  2229. func (x *UserChatInfo) String() string {
  2230. return protoimpl.X.MessageStringOf(x)
  2231. }
  2232. func (*UserChatInfo) ProtoMessage() {}
  2233. func (x *UserChatInfo) ProtoReflect() protoreflect.Message {
  2234. mi := &file_user_proto_msgTypes[42]
  2235. if protoimpl.UnsafeEnabled && x != nil {
  2236. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2237. if ms.LoadMessageInfo() == nil {
  2238. ms.StoreMessageInfo(mi)
  2239. }
  2240. return ms
  2241. }
  2242. return mi.MessageOf(x)
  2243. }
  2244. // Deprecated: Use UserChatInfo.ProtoReflect.Descriptor instead.
  2245. func (*UserChatInfo) Descriptor() ([]byte, []int) {
  2246. return file_user_proto_rawDescGZIP(), []int{42}
  2247. }
  2248. func (x *UserChatInfo) GetPersonId() string {
  2249. if x != nil {
  2250. return x.PersonId
  2251. }
  2252. return ""
  2253. }
  2254. func (x *UserChatInfo) GetUnreadNum() int64 {
  2255. if x != nil {
  2256. return x.UnreadNum
  2257. }
  2258. return 0
  2259. }
  2260. func (x *UserChatInfo) GetLastContent() string {
  2261. if x != nil {
  2262. return x.LastContent
  2263. }
  2264. return ""
  2265. }
  2266. func (x *UserChatInfo) GetLastTime() int64 {
  2267. if x != nil {
  2268. return x.LastTime
  2269. }
  2270. return 0
  2271. }
  2272. func (x *UserChatInfo) GetLikeability() int64 {
  2273. if x != nil {
  2274. return x.Likeability
  2275. }
  2276. return 0
  2277. }
  2278. func (x *UserChatInfo) GetSex() int64 {
  2279. if x != nil {
  2280. return x.Sex
  2281. }
  2282. return 0
  2283. }
  2284. func (x *UserChatInfo) GetAvatarUrl() string {
  2285. if x != nil {
  2286. return x.AvatarUrl
  2287. }
  2288. return ""
  2289. }
  2290. func (x *UserChatInfo) GetNickname() string {
  2291. if x != nil {
  2292. return x.Nickname
  2293. }
  2294. return ""
  2295. }
  2296. func (x *UserChatInfo) GetAge() int64 {
  2297. if x != nil {
  2298. return x.Age
  2299. }
  2300. return 0
  2301. }
  2302. func (x *UserChatInfo) GetRoomId() int64 {
  2303. if x != nil {
  2304. return x.RoomId
  2305. }
  2306. return 0
  2307. }
  2308. func (x *UserChatInfo) GetIsVip() bool {
  2309. if x != nil {
  2310. return x.IsVip
  2311. }
  2312. return false
  2313. }
  2314. func (x *UserChatInfo) GetVipLevel() int64 {
  2315. if x != nil {
  2316. return x.VipLevel
  2317. }
  2318. return 0
  2319. }
  2320. func (x *UserChatInfo) GetIsYearVip() bool {
  2321. if x != nil {
  2322. return x.IsYearVip
  2323. }
  2324. return false
  2325. }
  2326. func (x *UserChatInfo) GetVipFunctions() []string {
  2327. if x != nil {
  2328. return x.VipFunctions
  2329. }
  2330. return make([]string, 0)
  2331. }
  2332. type UserInfo struct {
  2333. state protoimpl.MessageState
  2334. sizeCache protoimpl.SizeCache
  2335. unknownFields protoimpl.UnknownFields
  2336. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  2337. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  2338. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  2339. Age int64 `protobuf:"varint,4,opt,name=age,proto3" json:"age"` // 年龄
  2340. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  2341. Constellation string `protobuf:"bytes,6,opt,name=constellation,proto3" json:"constellation"` // 星座
  2342. Credit int64 `protobuf:"varint,7,opt,name=credit,proto3" json:"credit"` // 积分
  2343. TagList []int64 `protobuf:"varint,8,rep,packed,name=tagList,proto3" json:"tagList"` // 标签
  2344. Signature string `protobuf:"bytes,9,opt,name=signature,proto3" json:"signature"` // 签名
  2345. IntroduceVoice string `protobuf:"bytes,10,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
  2346. Province string `protobuf:"bytes,11,opt,name=province,proto3" json:"province"` // 省
  2347. City string `protobuf:"bytes,12,opt,name=city,proto3" json:"city"` // 市
  2348. Area string `protobuf:"bytes,13,opt,name=area,proto3" json:"area"` // 区
  2349. UserId int64 `protobuf:"varint,14,opt,name=userId,proto3" json:"userId"` // 用户ID
  2350. IsBlack bool `protobuf:"varint,15,opt,name=isBlack,proto3" json:"isBlack"` // 是否被封号
  2351. IsRegister bool `protobuf:"varint,16,opt,name=isRegister,proto3" json:"isRegister"` // 是否注册
  2352. UpdateNicknameNum int64 `protobuf:"varint,17,opt,name=UpdateNicknameNum,proto3" json:"UpdateNicknameNum"` // 今日更新昵称数
  2353. UpdateAvatarUrlNum int64 `protobuf:"varint,18,opt,name=UpdateAvatarUrlNum,proto3" json:"UpdateAvatarUrlNum"` // 今日更新头像数
  2354. UpdatePicturesNum int64 `protobuf:"varint,19,opt,name=UpdatePicturesNum,proto3" json:"UpdatePicturesNum"` // 今日更新相册数
  2355. UpdateSignatureNum int64 `protobuf:"varint,20,opt,name=UpdateSignatureNum,proto3" json:"UpdateSignatureNum"` // 今日更新签名数
  2356. }
  2357. func (x *UserInfo) Reset() {
  2358. *x = UserInfo{}
  2359. if protoimpl.UnsafeEnabled {
  2360. mi := &file_user_proto_msgTypes[43]
  2361. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2362. ms.StoreMessageInfo(mi)
  2363. }
  2364. }
  2365. func (x *UserInfo) String() string {
  2366. return protoimpl.X.MessageStringOf(x)
  2367. }
  2368. func (*UserInfo) ProtoMessage() {}
  2369. func (x *UserInfo) ProtoReflect() protoreflect.Message {
  2370. mi := &file_user_proto_msgTypes[43]
  2371. if protoimpl.UnsafeEnabled && x != nil {
  2372. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2373. if ms.LoadMessageInfo() == nil {
  2374. ms.StoreMessageInfo(mi)
  2375. }
  2376. return ms
  2377. }
  2378. return mi.MessageOf(x)
  2379. }
  2380. // Deprecated: Use UserInfo.ProtoReflect.Descriptor instead.
  2381. func (*UserInfo) Descriptor() ([]byte, []int) {
  2382. return file_user_proto_rawDescGZIP(), []int{43}
  2383. }
  2384. func (x *UserInfo) GetId() string {
  2385. if x != nil {
  2386. return x.Id
  2387. }
  2388. return ""
  2389. }
  2390. func (x *UserInfo) GetNickname() string {
  2391. if x != nil {
  2392. return x.Nickname
  2393. }
  2394. return ""
  2395. }
  2396. func (x *UserInfo) GetAvatarUrl() string {
  2397. if x != nil {
  2398. return x.AvatarUrl
  2399. }
  2400. return ""
  2401. }
  2402. func (x *UserInfo) GetAge() int64 {
  2403. if x != nil {
  2404. return x.Age
  2405. }
  2406. return 0
  2407. }
  2408. func (x *UserInfo) GetSex() int64 {
  2409. if x != nil {
  2410. return x.Sex
  2411. }
  2412. return 0
  2413. }
  2414. func (x *UserInfo) GetConstellation() string {
  2415. if x != nil {
  2416. return x.Constellation
  2417. }
  2418. return ""
  2419. }
  2420. func (x *UserInfo) GetCredit() int64 {
  2421. if x != nil {
  2422. return x.Credit
  2423. }
  2424. return 0
  2425. }
  2426. func (x *UserInfo) GetTagList() []int64 {
  2427. if x != nil {
  2428. return x.TagList
  2429. }
  2430. return make([]int64, 0)
  2431. }
  2432. func (x *UserInfo) GetSignature() string {
  2433. if x != nil {
  2434. return x.Signature
  2435. }
  2436. return ""
  2437. }
  2438. func (x *UserInfo) GetIntroduceVoice() string {
  2439. if x != nil {
  2440. return x.IntroduceVoice
  2441. }
  2442. return ""
  2443. }
  2444. func (x *UserInfo) GetProvince() string {
  2445. if x != nil {
  2446. return x.Province
  2447. }
  2448. return ""
  2449. }
  2450. func (x *UserInfo) GetCity() string {
  2451. if x != nil {
  2452. return x.City
  2453. }
  2454. return ""
  2455. }
  2456. func (x *UserInfo) GetArea() string {
  2457. if x != nil {
  2458. return x.Area
  2459. }
  2460. return ""
  2461. }
  2462. func (x *UserInfo) GetUserId() int64 {
  2463. if x != nil {
  2464. return x.UserId
  2465. }
  2466. return 0
  2467. }
  2468. func (x *UserInfo) GetIsBlack() bool {
  2469. if x != nil {
  2470. return x.IsBlack
  2471. }
  2472. return false
  2473. }
  2474. func (x *UserInfo) GetIsRegister() bool {
  2475. if x != nil {
  2476. return x.IsRegister
  2477. }
  2478. return false
  2479. }
  2480. func (x *UserInfo) GetUpdateNicknameNum() int64 {
  2481. if x != nil {
  2482. return x.UpdateNicknameNum
  2483. }
  2484. return 0
  2485. }
  2486. func (x *UserInfo) GetUpdateAvatarUrlNum() int64 {
  2487. if x != nil {
  2488. return x.UpdateAvatarUrlNum
  2489. }
  2490. return 0
  2491. }
  2492. func (x *UserInfo) GetUpdatePicturesNum() int64 {
  2493. if x != nil {
  2494. return x.UpdatePicturesNum
  2495. }
  2496. return 0
  2497. }
  2498. func (x *UserInfo) GetUpdateSignatureNum() int64 {
  2499. if x != nil {
  2500. return x.UpdateSignatureNum
  2501. }
  2502. return 0
  2503. }
  2504. type KeyRequest struct {
  2505. state protoimpl.MessageState
  2506. sizeCache protoimpl.SizeCache
  2507. unknownFields protoimpl.UnknownFields
  2508. Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key"`
  2509. }
  2510. func (x *KeyRequest) Reset() {
  2511. *x = KeyRequest{}
  2512. if protoimpl.UnsafeEnabled {
  2513. mi := &file_user_proto_msgTypes[44]
  2514. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2515. ms.StoreMessageInfo(mi)
  2516. }
  2517. }
  2518. func (x *KeyRequest) String() string {
  2519. return protoimpl.X.MessageStringOf(x)
  2520. }
  2521. func (*KeyRequest) ProtoMessage() {}
  2522. func (x *KeyRequest) ProtoReflect() protoreflect.Message {
  2523. mi := &file_user_proto_msgTypes[44]
  2524. if protoimpl.UnsafeEnabled && x != nil {
  2525. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2526. if ms.LoadMessageInfo() == nil {
  2527. ms.StoreMessageInfo(mi)
  2528. }
  2529. return ms
  2530. }
  2531. return mi.MessageOf(x)
  2532. }
  2533. // Deprecated: Use KeyRequest.ProtoReflect.Descriptor instead.
  2534. func (*KeyRequest) Descriptor() ([]byte, []int) {
  2535. return file_user_proto_rawDescGZIP(), []int{44}
  2536. }
  2537. func (x *KeyRequest) GetKey() string {
  2538. if x != nil {
  2539. return x.Key
  2540. }
  2541. return ""
  2542. }
  2543. type CreatePayRequest struct {
  2544. state protoimpl.MessageState
  2545. sizeCache protoimpl.SizeCache
  2546. unknownFields protoimpl.UnknownFields
  2547. Money int64 `protobuf:"varint,1,opt,name=money,proto3" json:"money"` // 支付金额 单位 分
  2548. Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type"` // 类型
  2549. OpenId string `protobuf:"bytes,3,opt,name=openId,proto3" json:"openId"`
  2550. Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description"`
  2551. Attach string `protobuf:"bytes,5,opt,name=attach,proto3" json:"attach"`
  2552. }
  2553. func (x *CreatePayRequest) Reset() {
  2554. *x = CreatePayRequest{}
  2555. if protoimpl.UnsafeEnabled {
  2556. mi := &file_user_proto_msgTypes[45]
  2557. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2558. ms.StoreMessageInfo(mi)
  2559. }
  2560. }
  2561. func (x *CreatePayRequest) String() string {
  2562. return protoimpl.X.MessageStringOf(x)
  2563. }
  2564. func (*CreatePayRequest) ProtoMessage() {}
  2565. func (x *CreatePayRequest) ProtoReflect() protoreflect.Message {
  2566. mi := &file_user_proto_msgTypes[45]
  2567. if protoimpl.UnsafeEnabled && x != nil {
  2568. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2569. if ms.LoadMessageInfo() == nil {
  2570. ms.StoreMessageInfo(mi)
  2571. }
  2572. return ms
  2573. }
  2574. return mi.MessageOf(x)
  2575. }
  2576. // Deprecated: Use CreatePayRequest.ProtoReflect.Descriptor instead.
  2577. func (*CreatePayRequest) Descriptor() ([]byte, []int) {
  2578. return file_user_proto_rawDescGZIP(), []int{45}
  2579. }
  2580. func (x *CreatePayRequest) GetMoney() int64 {
  2581. if x != nil {
  2582. return x.Money
  2583. }
  2584. return 0
  2585. }
  2586. func (x *CreatePayRequest) GetType() string {
  2587. if x != nil {
  2588. return x.Type
  2589. }
  2590. return ""
  2591. }
  2592. func (x *CreatePayRequest) GetOpenId() string {
  2593. if x != nil {
  2594. return x.OpenId
  2595. }
  2596. return ""
  2597. }
  2598. func (x *CreatePayRequest) GetDescription() string {
  2599. if x != nil {
  2600. return x.Description
  2601. }
  2602. return ""
  2603. }
  2604. func (x *CreatePayRequest) GetAttach() string {
  2605. if x != nil {
  2606. return x.Attach
  2607. }
  2608. return ""
  2609. }
  2610. type PayInfo struct {
  2611. state protoimpl.MessageState
  2612. sizeCache protoimpl.SizeCache
  2613. unknownFields protoimpl.UnknownFields
  2614. PayInfo *structpb.Value `protobuf:"bytes,1,opt,name=payInfo,proto3" json:"payInfo"`
  2615. OrderId int64 `protobuf:"varint,2,opt,name=orderId,proto3" json:"orderId"`
  2616. }
  2617. func (x *PayInfo) Reset() {
  2618. *x = PayInfo{}
  2619. if protoimpl.UnsafeEnabled {
  2620. mi := &file_user_proto_msgTypes[46]
  2621. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2622. ms.StoreMessageInfo(mi)
  2623. }
  2624. }
  2625. func (x *PayInfo) String() string {
  2626. return protoimpl.X.MessageStringOf(x)
  2627. }
  2628. func (*PayInfo) ProtoMessage() {}
  2629. func (x *PayInfo) ProtoReflect() protoreflect.Message {
  2630. mi := &file_user_proto_msgTypes[46]
  2631. if protoimpl.UnsafeEnabled && x != nil {
  2632. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2633. if ms.LoadMessageInfo() == nil {
  2634. ms.StoreMessageInfo(mi)
  2635. }
  2636. return ms
  2637. }
  2638. return mi.MessageOf(x)
  2639. }
  2640. // Deprecated: Use PayInfo.ProtoReflect.Descriptor instead.
  2641. func (*PayInfo) Descriptor() ([]byte, []int) {
  2642. return file_user_proto_rawDescGZIP(), []int{46}
  2643. }
  2644. func (x *PayInfo) GetPayInfo() *structpb.Value {
  2645. if x != nil && x.PayInfo != nil {
  2646. return x.PayInfo
  2647. }
  2648. return &structpb.Value{}
  2649. }
  2650. func (x *PayInfo) GetOrderId() int64 {
  2651. if x != nil {
  2652. return x.OrderId
  2653. }
  2654. return 0
  2655. }
  2656. type PayOrderInfo struct {
  2657. state protoimpl.MessageState
  2658. sizeCache protoimpl.SizeCache
  2659. unknownFields protoimpl.UnknownFields
  2660. UserID string `protobuf:"bytes,1,opt,name=userID,proto3" json:"userID"`
  2661. OrderID int64 `protobuf:"varint,2,opt,name=orderID,proto3" json:"orderID"` // 订单的唯一ID
  2662. Money int64 `protobuf:"varint,3,opt,name=money,proto3" json:"money"` // 支付金额 ,单位分
  2663. Type string `protobuf:"bytes,4,opt,name=type,proto3" json:"type"` // 类型
  2664. TransactionID string `protobuf:"bytes,5,opt,name=TransactionID,proto3" json:"TransactionID"`
  2665. OpenId string `protobuf:"bytes,6,opt,name=openId,proto3" json:"openId"`
  2666. Description string `protobuf:"bytes,7,opt,name=description,proto3" json:"description"`
  2667. Status string `protobuf:"bytes,9,opt,name=status,proto3" json:"status"` // 状态
  2668. PayTime int64 `protobuf:"varint,10,opt,name=payTime,proto3" json:"payTime"` // 支付时间
  2669. CreateTime int64 `protobuf:"varint,11,opt,name=createTime,proto3" json:"createTime"` // 创建时间
  2670. }
  2671. func (x *PayOrderInfo) Reset() {
  2672. *x = PayOrderInfo{}
  2673. if protoimpl.UnsafeEnabled {
  2674. mi := &file_user_proto_msgTypes[47]
  2675. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2676. ms.StoreMessageInfo(mi)
  2677. }
  2678. }
  2679. func (x *PayOrderInfo) String() string {
  2680. return protoimpl.X.MessageStringOf(x)
  2681. }
  2682. func (*PayOrderInfo) ProtoMessage() {}
  2683. func (x *PayOrderInfo) ProtoReflect() protoreflect.Message {
  2684. mi := &file_user_proto_msgTypes[47]
  2685. if protoimpl.UnsafeEnabled && x != nil {
  2686. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2687. if ms.LoadMessageInfo() == nil {
  2688. ms.StoreMessageInfo(mi)
  2689. }
  2690. return ms
  2691. }
  2692. return mi.MessageOf(x)
  2693. }
  2694. // Deprecated: Use PayOrderInfo.ProtoReflect.Descriptor instead.
  2695. func (*PayOrderInfo) Descriptor() ([]byte, []int) {
  2696. return file_user_proto_rawDescGZIP(), []int{47}
  2697. }
  2698. func (x *PayOrderInfo) GetUserID() string {
  2699. if x != nil {
  2700. return x.UserID
  2701. }
  2702. return ""
  2703. }
  2704. func (x *PayOrderInfo) GetOrderID() int64 {
  2705. if x != nil {
  2706. return x.OrderID
  2707. }
  2708. return 0
  2709. }
  2710. func (x *PayOrderInfo) GetMoney() int64 {
  2711. if x != nil {
  2712. return x.Money
  2713. }
  2714. return 0
  2715. }
  2716. func (x *PayOrderInfo) GetType() string {
  2717. if x != nil {
  2718. return x.Type
  2719. }
  2720. return ""
  2721. }
  2722. func (x *PayOrderInfo) GetTransactionID() string {
  2723. if x != nil {
  2724. return x.TransactionID
  2725. }
  2726. return ""
  2727. }
  2728. func (x *PayOrderInfo) GetOpenId() string {
  2729. if x != nil {
  2730. return x.OpenId
  2731. }
  2732. return ""
  2733. }
  2734. func (x *PayOrderInfo) GetDescription() string {
  2735. if x != nil {
  2736. return x.Description
  2737. }
  2738. return ""
  2739. }
  2740. func (x *PayOrderInfo) GetStatus() string {
  2741. if x != nil {
  2742. return x.Status
  2743. }
  2744. return ""
  2745. }
  2746. func (x *PayOrderInfo) GetPayTime() int64 {
  2747. if x != nil {
  2748. return x.PayTime
  2749. }
  2750. return 0
  2751. }
  2752. func (x *PayOrderInfo) GetCreateTime() int64 {
  2753. if x != nil {
  2754. return x.CreateTime
  2755. }
  2756. return 0
  2757. }
  2758. type PayOrderList struct {
  2759. state protoimpl.MessageState
  2760. sizeCache protoimpl.SizeCache
  2761. unknownFields protoimpl.UnknownFields
  2762. List []*PayOrderInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  2763. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  2764. }
  2765. func (x *PayOrderList) Reset() {
  2766. *x = PayOrderList{}
  2767. if protoimpl.UnsafeEnabled {
  2768. mi := &file_user_proto_msgTypes[48]
  2769. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2770. ms.StoreMessageInfo(mi)
  2771. }
  2772. }
  2773. func (x *PayOrderList) String() string {
  2774. return protoimpl.X.MessageStringOf(x)
  2775. }
  2776. func (*PayOrderList) ProtoMessage() {}
  2777. func (x *PayOrderList) ProtoReflect() protoreflect.Message {
  2778. mi := &file_user_proto_msgTypes[48]
  2779. if protoimpl.UnsafeEnabled && x != nil {
  2780. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2781. if ms.LoadMessageInfo() == nil {
  2782. ms.StoreMessageInfo(mi)
  2783. }
  2784. return ms
  2785. }
  2786. return mi.MessageOf(x)
  2787. }
  2788. // Deprecated: Use PayOrderList.ProtoReflect.Descriptor instead.
  2789. func (*PayOrderList) Descriptor() ([]byte, []int) {
  2790. return file_user_proto_rawDescGZIP(), []int{48}
  2791. }
  2792. func (x *PayOrderList) GetList() []*PayOrderInfo {
  2793. if x != nil {
  2794. return x.List
  2795. }
  2796. return make([]*PayOrderInfo, 0)
  2797. }
  2798. func (x *PayOrderList) GetNextId() int64 {
  2799. if x != nil {
  2800. return x.NextId
  2801. }
  2802. return 0
  2803. }
  2804. type FindPayOrderListRequest struct {
  2805. state protoimpl.MessageState
  2806. sizeCache protoimpl.SizeCache
  2807. unknownFields protoimpl.UnknownFields
  2808. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  2809. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  2810. Status string `protobuf:"bytes,3,opt,name=status,proto3" json:"status"`
  2811. }
  2812. func (x *FindPayOrderListRequest) Reset() {
  2813. *x = FindPayOrderListRequest{}
  2814. if protoimpl.UnsafeEnabled {
  2815. mi := &file_user_proto_msgTypes[49]
  2816. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2817. ms.StoreMessageInfo(mi)
  2818. }
  2819. }
  2820. func (x *FindPayOrderListRequest) String() string {
  2821. return protoimpl.X.MessageStringOf(x)
  2822. }
  2823. func (*FindPayOrderListRequest) ProtoMessage() {}
  2824. func (x *FindPayOrderListRequest) ProtoReflect() protoreflect.Message {
  2825. mi := &file_user_proto_msgTypes[49]
  2826. if protoimpl.UnsafeEnabled && x != nil {
  2827. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2828. if ms.LoadMessageInfo() == nil {
  2829. ms.StoreMessageInfo(mi)
  2830. }
  2831. return ms
  2832. }
  2833. return mi.MessageOf(x)
  2834. }
  2835. // Deprecated: Use FindPayOrderListRequest.ProtoReflect.Descriptor instead.
  2836. func (*FindPayOrderListRequest) Descriptor() ([]byte, []int) {
  2837. return file_user_proto_rawDescGZIP(), []int{49}
  2838. }
  2839. func (x *FindPayOrderListRequest) GetNextId() int64 {
  2840. if x != nil {
  2841. return x.NextId
  2842. }
  2843. return 0
  2844. }
  2845. func (x *FindPayOrderListRequest) GetOffset() int64 {
  2846. if x != nil {
  2847. return x.Offset
  2848. }
  2849. return 0
  2850. }
  2851. func (x *FindPayOrderListRequest) GetStatus() string {
  2852. if x != nil {
  2853. return x.Status
  2854. }
  2855. return ""
  2856. }
  2857. type PayCallbackReply struct {
  2858. state protoimpl.MessageState
  2859. sizeCache protoimpl.SizeCache
  2860. unknownFields protoimpl.UnknownFields
  2861. Result []byte `protobuf:"bytes,1,opt,name=result,proto3" json:"result"`
  2862. }
  2863. func (x *PayCallbackReply) Reset() {
  2864. *x = PayCallbackReply{}
  2865. if protoimpl.UnsafeEnabled {
  2866. mi := &file_user_proto_msgTypes[50]
  2867. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2868. ms.StoreMessageInfo(mi)
  2869. }
  2870. }
  2871. func (x *PayCallbackReply) String() string {
  2872. return protoimpl.X.MessageStringOf(x)
  2873. }
  2874. func (*PayCallbackReply) ProtoMessage() {}
  2875. func (x *PayCallbackReply) ProtoReflect() protoreflect.Message {
  2876. mi := &file_user_proto_msgTypes[50]
  2877. if protoimpl.UnsafeEnabled && x != nil {
  2878. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2879. if ms.LoadMessageInfo() == nil {
  2880. ms.StoreMessageInfo(mi)
  2881. }
  2882. return ms
  2883. }
  2884. return mi.MessageOf(x)
  2885. }
  2886. // Deprecated: Use PayCallbackReply.ProtoReflect.Descriptor instead.
  2887. func (*PayCallbackReply) Descriptor() ([]byte, []int) {
  2888. return file_user_proto_rawDescGZIP(), []int{50}
  2889. }
  2890. func (x *PayCallbackReply) GetResult() []byte {
  2891. if x != nil {
  2892. return x.Result
  2893. }
  2894. return make([]byte, 0)
  2895. }
  2896. var File_user_proto protoreflect.FileDescriptor
  2897. var file_user_proto_rawDesc = []byte{
  2898. 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x08, 0x61, 0x70,
  2899. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
  2900. 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70,
  2901. 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f,
  2902. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2903. 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  2904. 0x75, 0x66, 0x2f, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
  2905. 0x13, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x70,
  2906. 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2907. 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x61,
  2908. 0x70, 0x69, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2f, 0x73, 0x74,
  2909. 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xae,
  2910. 0x01, 0x0a, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x6f, 0x64, 0x61, 0x79, 0x52, 0x65,
  2911. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18,
  2912. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x3e, 0x0a,
  2913. 0x1a, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x53, 0x65, 0x6e, 0x64, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64,
  2914. 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28,
  2915. 0x03, 0x52, 0x1a, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x53, 0x65, 0x6e, 0x64, 0x55, 0x6e, 0x72, 0x65,
  2916. 0x61, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x12, 0x40, 0x0a,
  2917. 0x1b, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x53, 0x65, 0x6e, 0x64, 0x56, 0x69, 0x73, 0x69, 0x74, 0x6f,
  2918. 0x72, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01,
  2919. 0x28, 0x03, 0x52, 0x1b, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x53, 0x65, 0x6e, 0x64, 0x56, 0x69, 0x73,
  2920. 0x69, 0x74, 0x6f, 0x72, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x22,
  2921. 0x6f, 0x0a, 0x21, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x65, 0x6e,
  2922. 0x64, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x71,
  2923. 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01,
  2924. 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x32, 0x0a, 0x14,
  2925. 0x6c, 0x61, 0x73, 0x74, 0x53, 0x65, 0x6e, 0x64, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65,
  2926. 0x54, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x14, 0x6c, 0x61, 0x73, 0x74,
  2927. 0x53, 0x65, 0x6e, 0x64, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65,
  2928. 0x22, 0x65, 0x0a, 0x15, 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x53,
  2929. 0x74, 0x61, 0x74, 0x75, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x22, 0x0a, 0x0c, 0x69, 0x73, 0x43,
  2930. 0x6c, 0x6f, 0x73, 0x65, 0x47, 0x72, 0x65, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52,
  2931. 0x0c, 0x69, 0x73, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x47, 0x72, 0x65, 0x65, 0x74, 0x12, 0x28, 0x0a,
  2932. 0x0f, 0x69, 0x73, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67,
  2933. 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x69, 0x73, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x4d,
  2934. 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x22, 0x43, 0x0a, 0x19, 0x49, 0x73, 0x43, 0x61, 0x6e,
  2935. 0x47, 0x65, 0x74, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x52, 0x65, 0x77, 0x6f, 0x72, 0x64, 0x52,
  2936. 0x65, 0x70, 0x6c, 0x79, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x73, 0x43, 0x61, 0x6e, 0x47, 0x65, 0x74,
  2937. 0x52, 0x65, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x69, 0x73,
  2938. 0x43, 0x61, 0x6e, 0x47, 0x65, 0x74, 0x52, 0x65, 0x77, 0x6f, 0x72, 0x64, 0x22, 0x8c, 0x01, 0x0a,
  2939. 0x18, 0x47, 0x65, 0x74, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69,
  2940. 0x6e, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78,
  2941. 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1a, 0x0a, 0x08, 0x70,
  2942. 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70,
  2943. 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18,
  2944. 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6d,
  2945. 0x61, 0x78, 0x41, 0x67, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6d, 0x61, 0x78,
  2946. 0x41, 0x67, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6d, 0x69, 0x6e, 0x41, 0x67, 0x65, 0x18, 0x0a, 0x20,
  2947. 0x01, 0x28, 0x03, 0x52, 0x06, 0x6d, 0x69, 0x6e, 0x41, 0x67, 0x65, 0x22, 0xb3, 0x02, 0x0a, 0x1c,
  2948. 0x4d, 0x61, 0x74, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x57, 0x69, 0x74, 0x68, 0x6f,
  2949. 0x75, 0x74, 0x4d, 0x61, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x5f, 0x0a, 0x0d,
  2950. 0x69, 0x73, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4d, 0x61, 0x70, 0x18, 0x01, 0x20,
  2951. 0x03, 0x28, 0x0b, 0x32, 0x39, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4d,
  2952. 0x61, 0x74, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x57, 0x69, 0x74, 0x68, 0x6f, 0x75,
  2953. 0x74, 0x4d, 0x61, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x73, 0x4d, 0x61,
  2954. 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0d,
  2955. 0x69, 0x73, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4d, 0x61, 0x70, 0x12, 0x1a, 0x0a,
  2956. 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  2957. 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74,
  2958. 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x16, 0x0a,
  2959. 0x06, 0x6d, 0x61, 0x78, 0x41, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6d,
  2960. 0x61, 0x78, 0x41, 0x67, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6d, 0x69, 0x6e, 0x41, 0x67, 0x65, 0x18,
  2961. 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6d, 0x69, 0x6e, 0x41, 0x67, 0x65, 0x12, 0x10, 0x0a,
  2962. 0x03, 0x73, 0x65, 0x78, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x1a,
  2963. 0x40, 0x0a, 0x12, 0x49, 0x73, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4d, 0x61, 0x70,
  2964. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01,
  2965. 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  2966. 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38,
  2967. 0x01, 0x22, 0x4f, 0x0a, 0x1b, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x6f, 0x6b,
  2968. 0x48, 0x61, 0x6e, 0x64, 0x50, 0x69, 0x63, 0x6b, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79,
  2969. 0x12, 0x10, 0x0a, 0x03, 0x6e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e,
  2970. 0x75, 0x6d, 0x12, 0x1e, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x4c, 0x69, 0x73, 0x74,
  2971. 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x4c, 0x69,
  2972. 0x73, 0x74, 0x22, 0xac, 0x01, 0x0a, 0x16, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x56,
  2973. 0x69, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x44, 0x0a,
  2974. 0x06, 0x76, 0x69, 0x70, 0x4d, 0x61, 0x70, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e,
  2975. 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65,
  2976. 0x72, 0x56, 0x69, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x2e,
  2977. 0x56, 0x69, 0x70, 0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x06, 0x76, 0x69, 0x70,
  2978. 0x4d, 0x61, 0x70, 0x1a, 0x4c, 0x0a, 0x0b, 0x56, 0x69, 0x70, 0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74,
  2979. 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  2980. 0x03, 0x6b, 0x65, 0x79, 0x12, 0x27, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20,
  2981. 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x56,
  2982. 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38,
  2983. 0x01, 0x22, 0xa1, 0x02, 0x0a, 0x07, 0x56, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x0a,
  2984. 0x05, 0x69, 0x73, 0x56, 0x69, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x69, 0x73,
  2985. 0x56, 0x69, 0x70, 0x12, 0x1a, 0x0a, 0x08, 0x76, 0x69, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x18,
  2986. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x76, 0x69, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x12,
  2987. 0x20, 0x0a, 0x0b, 0x67, 0x72, 0x6f, 0x77, 0x74, 0x68, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03,
  2988. 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x67, 0x72, 0x6f, 0x77, 0x74, 0x68, 0x56, 0x61, 0x6c, 0x75,
  2989. 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x65, 0x6e, 0x65, 0x77, 0x61, 0x6c, 0x54, 0x69, 0x6d, 0x65,
  2990. 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x72, 0x65, 0x6e, 0x65, 0x77, 0x61, 0x6c, 0x54,
  2991. 0x69, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x65, 0x78, 0x70, 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f,
  2992. 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x65, 0x78, 0x70,
  2993. 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63,
  2994. 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52,
  2995. 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x69,
  2996. 0x73, 0x59, 0x65, 0x61, 0x72, 0x56, 0x69, 0x70, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09,
  2997. 0x69, 0x73, 0x59, 0x65, 0x61, 0x72, 0x56, 0x69, 0x70, 0x12, 0x22, 0x0a, 0x0c, 0x76, 0x69, 0x70,
  2998. 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x08, 0x20, 0x03, 0x28, 0x09, 0x52,
  2999. 0x0c, 0x76, 0x69, 0x70, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x16, 0x0a,
  3000. 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75,
  3001. 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x64, 0x0a, 0x1a, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x73, 0x67,
  3002. 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75,
  3003. 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18,
  3004. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12,
  3005. 0x16, 0x0a, 0x06, 0x69, 0x73, 0x46, 0x72, 0x65, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52,
  3006. 0x06, 0x69, 0x73, 0x46, 0x72, 0x65, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18,
  3007. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22, 0x6e, 0x0a, 0x28, 0x55,
  3008. 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f,
  3009. 0x6e, 0x41, 0x77, 0x61, 0x72, 0x64, 0x42, 0x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79,
  3010. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49,
  3011. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12,
  3012. 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  3013. 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x65, 0x73, 0x63, 0x18,
  3014. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x64, 0x65, 0x73, 0x63, 0x22, 0x42, 0x0a, 0x26, 0x55,
  3015. 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f,
  3016. 0x6e, 0x41, 0x77, 0x61, 0x72, 0x64, 0x42, 0x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79,
  3017. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x69, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72,
  3018. 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x69, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x22,
  3019. 0x56, 0x0a, 0x14, 0x41, 0x64, 0x64, 0x55, 0x73, 0x65, 0x72, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74,
  3020. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
  3021. 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69,
  3022. 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12,
  3023. 0x16, 0x0a, 0x06, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  3024. 0x06, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x22, 0x4c, 0x0a, 0x16, 0x52, 0x65, 0x70, 0x6f, 0x72,
  3025. 0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  3026. 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20,
  3027. 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x16, 0x0a,
  3028. 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72,
  3029. 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0x99, 0x01, 0x0a, 0x12, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x65,
  3030. 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06,
  3031. 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f,
  3032. 0x6f, 0x6d, 0x49, 0x64, 0x12, 0x2d, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18,
  3033. 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3034. 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73,
  3035. 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x03,
  3036. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a,
  3037. 0x0c, 0x77, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x54, 0x61, 0x67, 0x18, 0x04, 0x20,
  3038. 0x01, 0x28, 0x09, 0x52, 0x0c, 0x77, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x54, 0x61,
  3039. 0x67, 0x22, 0x90, 0x01, 0x0a, 0x28, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e,
  3040. 0x64, 0x49, 0x73, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55,
  3041. 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12,
  3042. 0x0a, 0x04, 0x70, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x70, 0x61,
  3043. 0x67, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x02,
  3044. 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x0e,
  3045. 0x0a, 0x02, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12,
  3046. 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61,
  3047. 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52,
  3048. 0x03, 0x73, 0x65, 0x78, 0x22, 0x64, 0x0a, 0x1e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55,
  3049. 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x52,
  3050. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  3051. 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  3052. 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x6e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  3053. 0x03, 0x6e, 0x75, 0x6d, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x03, 0x20,
  3054. 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x22, 0x5b, 0x0a, 0x21, 0x4d, 0x61,
  3055. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4d, 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61,
  3056. 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  3057. 0x18, 0x0a, 0x07, 0x70, 0x61, 0x73, 0x73, 0x49, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09,
  3058. 0x52, 0x07, 0x70, 0x61, 0x73, 0x73, 0x49, 0x64, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x6e, 0x50,
  3059. 0x61, 0x73, 0x73, 0x49, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x75, 0x6e,
  3060. 0x50, 0x61, 0x73, 0x73, 0x49, 0x64, 0x73, 0x22, 0x3f, 0x0a, 0x23, 0x4d, 0x61, 0x6e, 0x61, 0x67,
  3061. 0x65, 0x72, 0x52, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c,
  3062. 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18,
  3063. 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52,
  3064. 0x07, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x73, 0x22, 0x4b, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x52,
  3065. 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x52, 0x65,
  3066. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x02, 0x20, 0x01,
  3067. 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x65, 0x72, 0x73, 0x6f,
  3068. 0x6e, 0x49, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x70, 0x65, 0x72, 0x73,
  3069. 0x6f, 0x6e, 0x49, 0x64, 0x73, 0x22, 0x65, 0x0a, 0x23, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63,
  3070. 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74,
  3071. 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03,
  3072. 0x6e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75, 0x6d, 0x12, 0x10,
  3073. 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78,
  3074. 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01,
  3075. 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x47, 0x0a, 0x21,
  3076. 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x48, 0x69, 0x67,
  3077. 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x70, 0x6c,
  3078. 0x79, 0x12, 0x22, 0x0a, 0x0c, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x4c, 0x69, 0x73,
  3079. 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  3080. 0x64, 0x4c, 0x69, 0x73, 0x74, 0x22, 0xc7, 0x01, 0x0a, 0x29, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  3081. 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x41, 0x6e,
  3082. 0x64, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x52, 0x65,
  3083. 0x70, 0x6c, 0x79, 0x12, 0x28, 0x0a, 0x0f, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x4d, 0x61, 0x74, 0x63,
  3084. 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0f, 0x74, 0x6f,
  3085. 0x64, 0x61, 0x79, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a,
  3086. 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  3087. 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61,
  3088. 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76,
  3089. 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x04,
  3090. 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65,
  3091. 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63,
  3092. 0x69, 0x74, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x22,
  3093. 0xec, 0x01, 0x0a, 0x1e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67,
  3094. 0x46, 0x72, 0x6f, 0x6d, 0x57, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x52, 0x65, 0x70,
  3095. 0x6c, 0x79, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02,
  3096. 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  3097. 0x03, 0x73, 0x65, 0x78, 0x12, 0x16, 0x0a, 0x06, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x18, 0x03,
  3098. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x12, 0x24, 0x0a, 0x0d,
  3099. 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 0x20,
  3100. 0x01, 0x28, 0x09, 0x52, 0x0d, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74,
  3101. 0x75, 0x73, 0x12, 0x28, 0x0a, 0x0f, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x4d, 0x61, 0x74, 0x63, 0x68,
  3102. 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0f, 0x74, 0x6f, 0x64,
  3103. 0x61, 0x79, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x10, 0x0a, 0x03,
  3104. 0x61, 0x67, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x1a,
  3105. 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09,
  3106. 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69,
  3107. 0x74, 0x79, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x22, 0x35,
  3108. 0x0a, 0x1b, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63,
  3109. 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a,
  3110. 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75,
  3111. 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x65, 0x0a, 0x23, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77,
  3112. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x52, 0x65, 0x6d,
  3113. 0x69, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08,
  3114. 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  3115. 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x73, 0x65, 0x6e, 0x64,
  3116. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c,
  3117. 0x73, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x42, 0x0a, 0x18,
  3118. 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65,
  3119. 0x64, 0x69, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x73, 0x53, 0x65,
  3120. 0x6e, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08,
  3121. 0x52, 0x0e, 0x69, 0x73, 0x53, 0x65, 0x6e, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72,
  3122. 0x22, 0x7d, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x46, 0x72, 0x65, 0x65, 0x4e, 0x75, 0x6d, 0x12,
  3123. 0x24, 0x0a, 0x0d, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4e, 0x75, 0x6d,
  3124. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72,
  3125. 0x69, 0x70, 0x4e, 0x75, 0x6d, 0x12, 0x26, 0x0a, 0x0e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53,
  3126. 0x63, 0x72, 0x69, 0x70, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x63,
  3127. 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4e, 0x75, 0x6d, 0x12, 0x20, 0x0a,
  3128. 0x0b, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01,
  3129. 0x28, 0x03, 0x52, 0x0b, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4e, 0x75, 0x6d, 0x22,
  3130. 0x76, 0x0a, 0x11, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71,
  3131. 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x18,
  3132. 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x12, 0x2d,
  3133. 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32,
  3134. 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x73,
  3135. 0x73, 0x61, 0x67, 0x65, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a,
  3136. 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  3137. 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x22, 0x32, 0x0a, 0x16, 0x50, 0x65, 0x72, 0x73, 0x6f,
  3138. 0x6e, 0x4c, 0x6f, 0x6f, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  3139. 0x74, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01,
  3140. 0x28, 0x03, 0x52, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x22, 0x46, 0x0a, 0x14, 0x55,
  3141. 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75,
  3142. 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x03, 0x20,
  3143. 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f,
  3144. 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66,
  3145. 0x73, 0x65, 0x74, 0x22, 0x2e, 0x0a, 0x12, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x72,
  3146. 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x63, 0x72,
  3147. 0x69, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x73, 0x63, 0x72, 0x69,
  3148. 0x70, 0x49, 0x64, 0x22, 0x48, 0x0a, 0x12, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72,
  3149. 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x65, 0x78,
  3150. 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x65, 0x78, 0x74, 0x12, 0x1e, 0x0a,
  3151. 0x0a, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28,
  3152. 0x09, 0x52, 0x0a, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x22, 0x45, 0x0a,
  3153. 0x1d, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x41, 0x76, 0x61,
  3154. 0x74, 0x61, 0x72, 0x41, 0x6e, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x10,
  3155. 0x0a, 0x03, 0x6e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75, 0x6d,
  3156. 0x12, 0x12, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04,
  3157. 0x6c, 0x69, 0x73, 0x74, 0x22, 0x45, 0x0a, 0x13, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68,
  3158. 0x61, 0x72, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2e, 0x0a, 0x12, 0x52,
  3159. 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49,
  3160. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x12, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67,
  3161. 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x22, 0x3a, 0x0a, 0x0c, 0x52,
  3162. 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2a, 0x0a, 0x04, 0x6c,
  3163. 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3164. 0x75, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x49, 0x6e, 0x66,
  3165. 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x40, 0x0a, 0x0f, 0x56, 0x69, 0x70, 0x52, 0x65,
  3166. 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2d, 0x0a, 0x04, 0x6c, 0x69,
  3167. 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75,
  3168. 0x73, 0x65, 0x72, 0x2e, 0x56, 0x69, 0x70, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x49,
  3169. 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xe9, 0x01, 0x0a, 0x0f, 0x56, 0x69,
  3170. 0x70, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a,
  3171. 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a,
  3172. 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6c, 0x61,
  3173. 0x62, 0x65, 0x6c, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01,
  3174. 0x28, 0x03, 0x52, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x6f, 0x72, 0x69,
  3175. 0x67, 0x69, 0x6e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b,
  3176. 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x12, 0x2e, 0x0a, 0x12, 0x61,
  3177. 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x50, 0x65, 0x72, 0x44, 0x61, 0x79, 0x50, 0x72, 0x69, 0x63,
  3178. 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x12, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65,
  3179. 0x50, 0x65, 0x72, 0x44, 0x61, 0x79, 0x50, 0x72, 0x69, 0x63, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x61,
  3180. 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x43, 0x6f, 0x69, 0x6e, 0x18, 0x06, 0x20,
  3181. 0x01, 0x28, 0x03, 0x52, 0x0e, 0x61, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x43,
  3182. 0x6f, 0x69, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
  3183. 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69,
  3184. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xa4, 0x01, 0x0a, 0x0c, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72,
  3185. 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  3186. 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x18,
  3187. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x12, 0x16, 0x0a, 0x06,
  3188. 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72,
  3189. 0x65, 0x64, 0x69, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x67, 0x69, 0x76, 0x65, 0x43, 0x72, 0x65, 0x64,
  3190. 0x69, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x67, 0x69, 0x76, 0x65, 0x43, 0x72,
  3191. 0x65, 0x64, 0x69, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
  3192. 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72,
  3193. 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18,
  3194. 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x22, 0x7d, 0x0a, 0x11,
  3195. 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75,
  3196. 0x73, 0x12, 0x30, 0x0a, 0x13, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66,
  3197. 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x13,
  3198. 0x69, 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74,
  3199. 0x69, 0x6f, 0x6e, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x73, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72,
  3200. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x47, 0x65, 0x74, 0x41, 0x77,
  3201. 0x61, 0x72, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x03, 0x20,
  3202. 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x22, 0x35, 0x0a, 0x0b, 0x55,
  3203. 0x73, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
  3204. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72,
  3205. 0x65, 0x64, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64,
  3206. 0x69, 0x74, 0x22, 0x5b, 0x0a, 0x15, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68,
  3207. 0x61, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x2a, 0x0a, 0x04, 0x6c,
  3208. 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3209. 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x43, 0x68, 0x61, 0x74, 0x49, 0x6e, 0x66,
  3210. 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49,
  3211. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x22,
  3212. 0x92, 0x03, 0x0a, 0x0c, 0x55, 0x73, 0x65, 0x72, 0x43, 0x68, 0x61, 0x74, 0x49, 0x6e, 0x66, 0x6f,
  3213. 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01,
  3214. 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09,
  3215. 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52,
  3216. 0x09, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x61,
  3217. 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
  3218. 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08,
  3219. 0x6c, 0x61, 0x73, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08,
  3220. 0x6c, 0x61, 0x73, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x69, 0x6b, 0x65,
  3221. 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6c,
  3222. 0x69, 0x6b, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65,
  3223. 0x78, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1c, 0x0a, 0x09,
  3224. 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52,
  3225. 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69,
  3226. 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69,
  3227. 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x0b, 0x20,
  3228. 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d,
  3229. 0x49, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64,
  3230. 0x12, 0x14, 0x0a, 0x05, 0x69, 0x73, 0x56, 0x69, 0x70, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x08, 0x52,
  3231. 0x05, 0x69, 0x73, 0x56, 0x69, 0x70, 0x12, 0x1a, 0x0a, 0x08, 0x76, 0x69, 0x70, 0x4c, 0x65, 0x76,
  3232. 0x65, 0x6c, 0x18, 0x10, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x76, 0x69, 0x70, 0x4c, 0x65, 0x76,
  3233. 0x65, 0x6c, 0x12, 0x1c, 0x0a, 0x09, 0x69, 0x73, 0x59, 0x65, 0x61, 0x72, 0x56, 0x69, 0x70, 0x18,
  3234. 0x11, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x59, 0x65, 0x61, 0x72, 0x56, 0x69, 0x70,
  3235. 0x12, 0x22, 0x0a, 0x0c, 0x76, 0x69, 0x70, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73,
  3236. 0x18, 0x12, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x76, 0x69, 0x70, 0x46, 0x75, 0x6e, 0x63, 0x74,
  3237. 0x69, 0x6f, 0x6e, 0x73, 0x22, 0xe8, 0x04, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66,
  3238. 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69,
  3239. 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20,
  3240. 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a,
  3241. 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  3242. 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x61,
  3243. 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x10, 0x0a,
  3244. 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12,
  3245. 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  3246. 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c,
  3247. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18,
  3248. 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x18, 0x0a,
  3249. 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x08, 0x20, 0x03, 0x28, 0x03, 0x52, 0x07,
  3250. 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61,
  3251. 0x74, 0x75, 0x72, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e,
  3252. 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75,
  3253. 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69,
  3254. 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1a, 0x0a,
  3255. 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52,
  3256. 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74,
  3257. 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x12, 0x0a,
  3258. 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65,
  3259. 0x61, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28,
  3260. 0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x69, 0x73, 0x42,
  3261. 0x6c, 0x61, 0x63, 0x6b, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x69, 0x73, 0x42, 0x6c,
  3262. 0x61, 0x63, 0x6b, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65,
  3263. 0x72, 0x18, 0x10, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x67, 0x69, 0x73,
  3264. 0x74, 0x65, 0x72, 0x12, 0x2c, 0x0a, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x69, 0x63,
  3265. 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x4e, 0x75, 0x6d, 0x18, 0x11, 0x20, 0x01, 0x28, 0x03, 0x52, 0x11,
  3266. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x4e, 0x75,
  3267. 0x6d, 0x12, 0x2e, 0x0a, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x76, 0x61, 0x74, 0x61,
  3268. 0x72, 0x55, 0x72, 0x6c, 0x4e, 0x75, 0x6d, 0x18, 0x12, 0x20, 0x01, 0x28, 0x03, 0x52, 0x12, 0x55,
  3269. 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x4e, 0x75,
  3270. 0x6d, 0x12, 0x2c, 0x0a, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x69, 0x63, 0x74, 0x75,
  3271. 0x72, 0x65, 0x73, 0x4e, 0x75, 0x6d, 0x18, 0x13, 0x20, 0x01, 0x28, 0x03, 0x52, 0x11, 0x55, 0x70,
  3272. 0x64, 0x61, 0x74, 0x65, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x4e, 0x75, 0x6d, 0x12,
  3273. 0x2e, 0x0a, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75,
  3274. 0x72, 0x65, 0x4e, 0x75, 0x6d, 0x18, 0x14, 0x20, 0x01, 0x28, 0x03, 0x52, 0x12, 0x55, 0x70, 0x64,
  3275. 0x61, 0x74, 0x65, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x4e, 0x75, 0x6d, 0x22,
  3276. 0x1e, 0x0a, 0x0a, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a,
  3277. 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x22,
  3278. 0x8e, 0x01, 0x0a, 0x10, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x61, 0x79, 0x52, 0x65, 0x71,
  3279. 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x01, 0x20,
  3280. 0x01, 0x28, 0x03, 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79,
  3281. 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x16,
  3282. 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
  3283. 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69,
  3284. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73,
  3285. 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x74, 0x74, 0x61,
  3286. 0x63, 0x68, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68,
  3287. 0x22, 0x55, 0x0a, 0x07, 0x50, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x30, 0x0a, 0x07, 0x70,
  3288. 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67,
  3289. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x56,
  3290. 0x61, 0x6c, 0x75, 0x65, 0x52, 0x07, 0x70, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x18, 0x0a,
  3291. 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07,
  3292. 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x64, 0x22, 0x9c, 0x02, 0x0a, 0x0c, 0x50, 0x61, 0x79, 0x4f,
  3293. 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72,
  3294. 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x44,
  3295. 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28,
  3296. 0x03, 0x52, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f,
  3297. 0x6e, 0x65, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79,
  3298. 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
  3299. 0x74, 0x79, 0x70, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74,
  3300. 0x69, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x54, 0x72, 0x61,
  3301. 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70,
  3302. 0x65, 0x6e, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e,
  3303. 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
  3304. 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70,
  3305. 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x09,
  3306. 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x18, 0x0a, 0x07,
  3307. 0x70, 0x61, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x70,
  3308. 0x61, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,
  3309. 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61,
  3310. 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x52, 0x0a, 0x0c, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64,
  3311. 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2a, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01,
  3312. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  3313. 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69,
  3314. 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01,
  3315. 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x22, 0x61, 0x0a, 0x17, 0x46, 0x69,
  3316. 0x6e, 0x64, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  3317. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18,
  3318. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a,
  3319. 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f,
  3320. 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
  3321. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x2a, 0x0a,
  3322. 0x10, 0x50, 0x61, 0x79, 0x43, 0x61, 0x6c, 0x6c, 0x62, 0x61, 0x63, 0x6b, 0x52, 0x65, 0x70, 0x6c,
  3323. 0x79, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28,
  3324. 0x0c, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x32, 0xdd, 0x69, 0x0a, 0x04, 0x55, 0x73,
  3325. 0x65, 0x72, 0x12, 0x54, 0x0a, 0x0b, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66,
  3326. 0x6f, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3327. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3328. 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x19, 0x82,
  3329. 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  3330. 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x69, 0x0a, 0x0d, 0x53, 0x65, 0x6e, 0x64,
  3331. 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3332. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65,
  3333. 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  3334. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  3335. 0x70, 0x74, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70,
  3336. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x64, 0x65, 0x2f, 0x73, 0x65, 0x6e, 0x64,
  3337. 0x3a, 0x01, 0x2a, 0x12, 0x6c, 0x0a, 0x0e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e,
  3338. 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3339. 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64,
  3340. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  3341. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  3342. 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  3343. 0x73, 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x64, 0x65, 0x2f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x3a, 0x01,
  3344. 0x2a, 0x12, 0x7e, 0x0a, 0x15, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49,
  3345. 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69,
  3346. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e,
  3347. 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  3348. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  3349. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21,
  3350. 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x70, 0x64, 0x61,
  3351. 0x74, 0x65, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x01,
  3352. 0x2a, 0x12, 0x6e, 0x0a, 0x14, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x50,
  3353. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x6f, 0x6f, 0x6d, 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3354. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x68, 0x61,
  3355. 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69,
  3356. 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  3357. 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  3358. 0x65, 0x72, 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x3a, 0x01,
  3359. 0x2a, 0x12, 0x5d, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61,
  3360. 0x6e, 0x63, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  3361. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x15, 0x2e, 0x61, 0x70,
  3362. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e,
  3363. 0x63, 0x65, 0x22, 0x1c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x22, 0x11, 0x2f, 0x61, 0x70, 0x69,
  3364. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x3a, 0x01, 0x2a,
  3365. 0x12, 0x5b, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x48, 0x6f, 0x6d, 0x65, 0x49,
  3366. 0x6e, 0x66, 0x6f, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  3367. 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x14, 0x2e, 0x61,
  3368. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e,
  3369. 0x66, 0x6f, 0x22, 0x19, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69,
  3370. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x68, 0x6f, 0x6d, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6f, 0x0a,
  3371. 0x1b, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69,
  3372. 0x6b, 0x65, 0x64, 0x41, 0x6e, 0x64, 0x4c, 0x6f, 0x6f, 0x6b, 0x65, 0x64, 0x12, 0x17, 0x2e, 0x61,
  3373. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  3374. 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3375. 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x65, 0x64, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65,
  3376. 0x64, 0x4e, 0x75, 0x6d, 0x22, 0x18, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x12, 0x22, 0x0d, 0x2f, 0x61,
  3377. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x71,
  3378. 0x0a, 0x0c, 0x46, 0x69, 0x6e, 0x64, 0x4c, 0x6f, 0x6f, 0x6b, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b,
  3379. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74,
  3380. 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70,
  3381. 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f,
  3382. 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c,
  3383. 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  3384. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01,
  3385. 0x2a, 0x12, 0x5c, 0x0a, 0x06, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x12, 0x15, 0x2e, 0x61, 0x70,
  3386. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x52,
  3387. 0x65, 0x71, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3388. 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x1f,
  3389. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x77, 0x78, 0x2f,
  3390. 0x6a, 0x73, 0x73, 0x64, 0x6b, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x3a, 0x01, 0x2a, 0x12,
  3391. 0x5f, 0x0a, 0x10, 0x46, 0x69, 0x6e, 0x64, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x79,
  3392. 0x53, 0x65, 0x78, 0x12, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  3393. 0x2e, 0x53, 0x65, 0x78, 0x52, 0x65, 0x71, 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3394. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c,
  3395. 0x79, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  3396. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x74, 0x61, 0x67, 0x3a, 0x01, 0x2a,
  3397. 0x12, 0x76, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x4c, 0x69,
  3398. 0x73, 0x74, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3399. 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x32, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  3400. 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65,
  3401. 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73,
  3402. 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15,
  3403. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6f,
  3404. 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x81, 0x01, 0x0a, 0x1a, 0x46, 0x69, 0x6e,
  3405. 0x64, 0x57, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x52,
  3406. 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3407. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71,
  3408. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  3409. 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x69, 0x73, 0x74,
  3410. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f,
  3411. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63, 0x68,
  3412. 0x61, 0x74, 0x2f, 0x77, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0x7d, 0x0a, 0x18,
  3413. 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79,
  3414. 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3415. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65,
  3416. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72,
  3417. 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x69, 0x73,
  3418. 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18,
  3419. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63,
  3420. 0x68, 0x61, 0x74, 0x2f, 0x6f, 0x76, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x7e, 0x0a, 0x17, 0x46,
  3421. 0x69, 0x6e, 0x64, 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x52, 0x6f,
  3422. 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  3423. 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75,
  3424. 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55,
  3425. 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52,
  3426. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61,
  3427. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63, 0x68, 0x61,
  3428. 0x74, 0x2f, 0x66, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x7e, 0x0a, 0x12, 0x46,
  3429. 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73,
  3430. 0x74, 0x12, 0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46,
  3431. 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73,
  3432. 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3433. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64,
  3434. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  3435. 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61,
  3436. 0x74, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x72, 0x0a, 0x0f, 0x46,
  3437. 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x12, 0x22,
  3438. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64,
  3439. 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65,
  3440. 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3441. 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x22, 0x22, 0x82, 0xd3, 0xe4,
  3442. 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63,
  3443. 0x68, 0x61, 0x74, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x2f, 0x6d, 0x73, 0x67, 0x3a, 0x01, 0x2a, 0x12,
  3444. 0x59, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x73, 0x4c, 0x69, 0x6b, 0x65,
  3445. 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65,
  3446. 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3447. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x22, 0x1b, 0x82,
  3448. 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x22, 0x10, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  3449. 0x2f, 0x69, 0x73, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x64, 0x0a, 0x0e, 0x46, 0x69,
  3450. 0x6e, 0x64, 0x4d, 0x65, 0x6d, 0x65, 0x42, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x17, 0x2e, 0x61,
  3451. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x52, 0x65,
  3452. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3453. 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x23, 0x82, 0xd3, 0xe4,
  3454. 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66,
  3455. 0x69, 0x6e, 0x64, 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f, 0x74, 0x79, 0x70, 0x65, 0x3a, 0x01, 0x2a,
  3456. 0x12, 0x6d, 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69,
  3457. 0x63, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46,
  3458. 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x52, 0x65, 0x71, 0x75,
  3459. 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  3460. 0x2e, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x1f,
  3461. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  3462. 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x3a, 0x01, 0x2a, 0x12,
  3463. 0x66, 0x0a, 0x0a, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x65, 0x6d, 0x65, 0x12, 0x15, 0x2e,
  3464. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f,
  3465. 0x6d, 0x4e, 0x75, 0x6d, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  3466. 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x4c, 0x69, 0x73, 0x74,
  3467. 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  3468. 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f, 0x72, 0x61,
  3469. 0x6e, 0x64, 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x75, 0x0a, 0x12, 0x52, 0x61, 0x6e, 0x64, 0x6f,
  3470. 0x6d, 0x53, 0x77, 0x69, 0x66, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x1b, 0x2e,
  3471. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f,
  3472. 0x6d, 0x4e, 0x75, 0x6d, 0x41, 0x6e, 0x64, 0x53, 0x65, 0x78, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69,
  3473. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x54, 0x65,
  3474. 0x78, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b,
  3475. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x74,
  3476. 0x6f, 0x70, 0x69, 0x63, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x68,
  3477. 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x12,
  3478. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  3479. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3480. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x4c, 0x69,
  3481. 0x73, 0x74, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69,
  3482. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f,
  3483. 0x74, 0x69, 0x74, 0x6c, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x64, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72,
  3484. 0x47, 0x65, 0x74, 0x43, 0x68, 0x61, 0x74, 0x43, 0x61, 0x72, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70,
  3485. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50,
  3486. 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  3487. 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x43, 0x61, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1e,
  3488. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  3489. 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x63, 0x61, 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x6d,
  3490. 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x54,
  3491. 0x69, 0x74, 0x6c, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  3492. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x19, 0x2e, 0x61,
  3493. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69,
  3494. 0x74, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22,
  3495. 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f,
  3496. 0x63, 0x68, 0x61, 0x74, 0x2f, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x56, 0x0a,
  3497. 0x08, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3498. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72,
  3499. 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3500. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x19, 0x82, 0xd3, 0xe4, 0x93,
  3501. 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69,
  3502. 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x5a, 0x0a, 0x0a, 0x55, 0x73, 0x65, 0x72, 0x55, 0x6e, 0x4c,
  3503. 0x69, 0x6b, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  3504. 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67,
  3505. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  3506. 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x22, 0x10, 0x2f, 0x61,
  3507. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x6e, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01,
  3508. 0x2a, 0x12, 0x5c, 0x0a, 0x06, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x1d, 0x2e, 0x61, 0x70,
  3509. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x43,
  3510. 0x68, 0x61, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  3511. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  3512. 0x74, 0x79, 0x22, 0x1b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x22, 0x10, 0x2f, 0x61, 0x70, 0x69,
  3513. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x3a, 0x01, 0x2a, 0x12,
  3514. 0x80, 0x01, 0x0a, 0x16, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x65, 0x76, 0x65,
  3515. 0x6e, 0x44, 0x61, 0x79, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  3516. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  3517. 0x74, 0x79, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3518. 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79,
  3519. 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4,
  3520. 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6f,
  3521. 0x76, 0x65, 0x72, 0x2f, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a,
  3522. 0x01, 0x2a, 0x12, 0x79, 0x0a, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74,
  3523. 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3524. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53,
  3525. 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e,
  3526. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  3527. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f,
  3528. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c,
  3529. 0x61, 0x73, 0x74, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x63, 0x0a,
  3530. 0x0b, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1c, 0x2e, 0x61,
  3531. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63,
  3532. 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69,
  3533. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x22,
  3534. 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  3535. 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x3a,
  3536. 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x0b, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69,
  3537. 0x70, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x44, 0x65, 0x6c,
  3538. 0x65, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  3539. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  3540. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22,
  3541. 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70,
  3542. 0x2f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6b, 0x0a, 0x0b, 0x46, 0x69,
  3543. 0x6e, 0x64, 0x4d, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3544. 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72,
  3545. 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3546. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c,
  3547. 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  3548. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f,
  3549. 0x73, 0x65, 0x6c, 0x66, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4f,
  3550. 0x74, 0x68, 0x65, 0x72, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3551. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70,
  3552. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3553. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  3554. 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  3555. 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6f, 0x74,
  3556. 0x68, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x77, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65,
  3557. 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1e, 0x2e, 0x61,
  3558. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64,
  3559. 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61,
  3560. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52,
  3561. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61,
  3562. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x66, 0x69,
  3563. 0x6e, 0x64, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12,
  3564. 0x6c, 0x0a, 0x0f, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x6f, 0x6f, 0x6b, 0x53, 0x63, 0x72,
  3565. 0x69, 0x70, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x65,
  3566. 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x6f, 0x6f, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71,
  3567. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  3568. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1f, 0x82, 0xd3,
  3569. 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  3570. 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x6a, 0x0a,
  3571. 0x13, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x4c, 0x6f, 0x6f, 0x6b,
  3572. 0x42, 0x61, 0x63, 0x6b, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  3573. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x15, 0x2e, 0x61,
  3574. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49,
  3575. 0x6e, 0x66, 0x6f, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70,
  3576. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x6f, 0x6f,
  3577. 0x6b, 0x2f, 0x62, 0x61, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x10, 0x50, 0x65, 0x72,
  3578. 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1b, 0x2e,
  3579. 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63,
  3580. 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69,
  3581. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f,
  3582. 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15,
  3583. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f,
  3584. 0x72, 0x65, 0x70, 0x6c, 0x79, 0x3a, 0x01, 0x2a, 0x12, 0x65, 0x0a, 0x0e, 0x55, 0x73, 0x65, 0x72,
  3585. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69,
  3586. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65,
  3587. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  3588. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x20, 0x82,
  3589. 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  3590. 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12,
  3591. 0x6d, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x41, 0x6c, 0x6c, 0x55, 0x6e, 0x72,
  3592. 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  3593. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x18,
  3594. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64,
  3595. 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e,
  3596. 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74,
  3597. 0x2f, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x66,
  3598. 0x0a, 0x13, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x42, 0x79, 0x50,
  3599. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3600. 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16,
  3601. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x6f,
  3602. 0x6f, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13,
  3603. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x2f, 0x69,
  3604. 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x0c, 0x46, 0x69, 0x6e, 0x64, 0x4c, 0x69,
  3605. 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  3606. 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75,
  3607. 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73,
  3608. 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65,
  3609. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  3610. 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73,
  3611. 0x74, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x73, 0x0a, 0x0d, 0x46, 0x69, 0x6e,
  3612. 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69,
  3613. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65,
  3614. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74,
  3615. 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64,
  3616. 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1f, 0x82,
  3617. 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  3618. 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x65,
  3619. 0x0a, 0x10, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x74, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x43, 0x68,
  3620. 0x61, 0x74, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3621. 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e,
  3622. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  3623. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f,
  3624. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x65, 0x74, 0x2f, 0x62, 0x6c, 0x61,
  3625. 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x94, 0x01, 0x0a, 0x1e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55,
  3626. 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61,
  3627. 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x12, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3628. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x44, 0x50,
  3629. 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e,
  3630. 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  3631. 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x52, 0x65,
  3632. 0x70, 0x6c, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70,
  3633. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x2f, 0x72, 0x65, 0x6c,
  3634. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x14,
  3635. 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65,
  3636. 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  3637. 0x4b, 0x65, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69,
  3638. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x46, 0x72, 0x69, 0x65, 0x6e,
  3639. 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x20, 0x82, 0xd3,
  3640. 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  3641. 0x63, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x86,
  3642. 0x01, 0x0a, 0x1f, 0x47, 0x65, 0x74, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b,
  3643. 0x65, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61,
  3644. 0x67, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3645. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69,
  3646. 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b,
  3647. 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65,
  3648. 0x70, 0x6c, 0x79, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70,
  3649. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6e, 0x75, 0x6d, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x5f,
  3650. 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x69, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73,
  3651. 0x65, 0x72, 0x4c, 0x6f, 0x6f, 0x6b, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  3652. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  3653. 0x79, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69,
  3654. 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65,
  3655. 0x70, 0x6c, 0x79, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70,
  3656. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x2f, 0x6e, 0x75, 0x6d, 0x3a,
  3657. 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x15, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68,
  3658. 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x2e, 0x67, 0x6f,
  3659. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  3660. 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  3661. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4,
  3662. 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69,
  3663. 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x66, 0x69, 0x6e, 0x69, 0x73,
  3664. 0x68, 0x3a, 0x01, 0x2a, 0x12, 0x75, 0x0a, 0x15, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f,
  3665. 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x16, 0x2e,
  3666. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  3667. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72,
  3668. 0x2e, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74,
  3669. 0x75, 0x73, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69,
  3670. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f,
  3671. 0x6e, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x17, 0x55,
  3672. 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f,
  3673. 0x6e, 0x41, 0x77, 0x61, 0x72, 0x64, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  3674. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16,
  3675. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  3676. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b,
  3677. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d,
  3678. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x61, 0x77, 0x61, 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x65,
  3679. 0x0a, 0x10, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x4c, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x63, 0x6f,
  3680. 0x72, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3681. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  3682. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  3683. 0x70, 0x74, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70,
  3684. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x2f, 0x75, 0x6e, 0x6c, 0x6f,
  3685. 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x5f, 0x0a, 0x0c, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63,
  3686. 0x68, 0x61, 0x72, 0x67, 0x65, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72,
  3687. 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x52, 0x65, 0x71,
  3688. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x11, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  3689. 0x50, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22,
  3690. 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x63, 0x68, 0x61,
  3691. 0x72, 0x67, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65,
  3692. 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x56, 0x69, 0x70, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3693. 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67,
  3694. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x11, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75,
  3695. 0x73, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x21, 0x82, 0xd3, 0xe4,
  3696. 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72,
  3697. 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x2f, 0x76, 0x69, 0x70, 0x3a, 0x01, 0x2a, 0x12, 0x66,
  3698. 0x0a, 0x10, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69,
  3699. 0x73, 0x74, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3700. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69,
  3701. 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69,
  3702. 0x73, 0x74, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69,
  3703. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x2f, 0x6c,
  3704. 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x13, 0x46, 0x69, 0x6e, 0x64, 0x56, 0x69,
  3705. 0x70, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x2e,
  3706. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  3707. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72,
  3708. 0x2e, 0x56, 0x69, 0x70, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74,
  3709. 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  3710. 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x2f, 0x76, 0x69, 0x70,
  3711. 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x67, 0x0a, 0x0b, 0x46, 0x69, 0x6e, 0x64,
  3712. 0x50, 0x61, 0x79, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
  3713. 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c,
  3714. 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69,
  3715. 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69,
  3716. 0x73, 0x74, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69,
  3717. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x70, 0x61, 0x79, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01,
  3718. 0x2a, 0x12, 0x7c, 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65,
  3719. 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x2e, 0x67,
  3720. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  3721. 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  3722. 0x6e, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f,
  3723. 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93,
  3724. 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69,
  3725. 0x73, 0x74, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12,
  3726. 0x82, 0x01, 0x0a, 0x18, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67,
  3727. 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x41, 0x6e, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67,
  3728. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  3729. 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  3730. 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x41, 0x76, 0x61, 0x74,
  3731. 0x61, 0x72, 0x41, 0x6e, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82,
  3732. 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  3733. 0x2f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x2f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
  3734. 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x63, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f,
  3735. 0x77, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  3736. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x14, 0x2e,
  3737. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x49,
  3738. 0x6e, 0x66, 0x6f, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70,
  3739. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x77, 0x69, 0x6e, 0x64,
  3740. 0x6f, 0x77, 0x2f, 0x67, 0x65, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x5e, 0x0a, 0x0e, 0x47, 0x65, 0x74,
  3741. 0x55, 0x73, 0x65, 0x72, 0x46, 0x72, 0x65, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f,
  3742. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  3743. 0x70, 0x74, 0x79, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55,
  3744. 0x73, 0x65, 0x72, 0x46, 0x72, 0x65, 0x65, 0x4e, 0x75, 0x6d, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93,
  3745. 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x72,
  3746. 0x65, 0x65, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x7f, 0x0a, 0x11, 0x47, 0x65, 0x74,
  3747. 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x12, 0x22,
  3748. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x61, 0x6e,
  3749. 0x64, 0x6f, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65,
  3750. 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x47, 0x65,
  3751. 0x74, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x52,
  3752. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61,
  3753. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x2f, 0x6d,
  3754. 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x63, 0x0a, 0x0b, 0x55, 0x6e,
  3755. 0x6c, 0x6f, 0x63, 0x6b, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3756. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71,
  3757. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  3758. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x21, 0x82, 0xd3,
  3759. 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  3760. 0x75, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x2f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x3a, 0x01, 0x2a, 0x12,
  3761. 0x67, 0x0a, 0x0d, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65,
  3762. 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f,
  3763. 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  3764. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  3765. 0x70, 0x74, 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70,
  3766. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x2f, 0x70, 0x69,
  3767. 0x63, 0x74, 0x75, 0x72, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6c, 0x0a, 0x14, 0x55, 0x70, 0x64, 0x61,
  3768. 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72,
  3769. 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  3770. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  3771. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  3772. 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  3773. 0x73, 0x65, 0x72, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x2f, 0x72, 0x65, 0x67, 0x69, 0x73,
  3774. 0x74, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x77, 0x0a, 0x15, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
  3775. 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x12,
  3776. 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x72, 0x65,
  3777. 0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d,
  3778. 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x52, 0x6f, 0x6f, 0x6d,
  3779. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f,
  3780. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x2f,
  3781. 0x72, 0x6f, 0x6f, 0x6d, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12,
  3782. 0x6c, 0x0a, 0x0b, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x1c,
  3783. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x65,
  3784. 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x61,
  3785. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x65,
  3786. 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93,
  3787. 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6d, 0x65,
  3788. 0x73, 0x73, 0x61, 0x67, 0x65, 0x2f, 0x73, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x51, 0x0a,
  3789. 0x0a, 0x47, 0x65, 0x74, 0x56, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x2e, 0x67, 0x6f,
  3790. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  3791. 0x70, 0x74, 0x79, 0x1a, 0x11, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x56,
  3792. 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x18, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x12, 0x22, 0x0d,
  3793. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x69, 0x70, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a,
  3794. 0x12, 0x6e, 0x0a, 0x10, 0x46, 0x69, 0x6e, 0x64, 0x48, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b,
  3795. 0x55, 0x73, 0x65, 0x72, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  3796. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x23, 0x2e, 0x61,
  3797. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x48, 0x61, 0x6e, 0x64, 0x70, 0x69,
  3798. 0x63, 0x6b, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c,
  3799. 0x79, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  3800. 0x68, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a,
  3801. 0x12, 0x7f, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x6f, 0x6b, 0x48,
  3802. 0x61, 0x6e, 0x64, 0x50, 0x69, 0x63, 0x6b, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  3803. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  3804. 0x74, 0x79, 0x1a, 0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x47, 0x65,
  3805. 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x6f, 0x6b, 0x48, 0x61, 0x6e, 0x64, 0x50, 0x69, 0x63,
  3806. 0x6b, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  3807. 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x6f, 0x6f,
  3808. 0x6b, 0x2f, 0x68, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01,
  3809. 0x2a, 0x12, 0x77, 0x0a, 0x16, 0x53, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x6f, 0x6b,
  3810. 0x48, 0x61, 0x6e, 0x64, 0x50, 0x69, 0x63, 0x6b, 0x4e, 0x75, 0x6d, 0x12, 0x19, 0x2e, 0x61, 0x70,
  3811. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  3812. 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  3813. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2a,
  3814. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x24, 0x22, 0x1f, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  3815. 0x72, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x2f, 0x68, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x2f,
  3816. 0x6e, 0x75, 0x6d, 0x2f, 0x73, 0x65, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x7e, 0x0a, 0x14, 0x49, 0x73,
  3817. 0x43, 0x61, 0x6e, 0x47, 0x65, 0x74, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x52, 0x65, 0x77, 0x6f,
  3818. 0x72, 0x64, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3819. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x23, 0x2e, 0x61, 0x70, 0x69,
  3820. 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x49, 0x73, 0x43, 0x61, 0x6e, 0x47, 0x65, 0x74, 0x52, 0x65,
  3821. 0x74, 0x75, 0x72, 0x6e, 0x52, 0x65, 0x77, 0x6f, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  3822. 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  3823. 0x65, 0x72, 0x2f, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x2f, 0x72, 0x65, 0x77, 0x6f, 0x72, 0x64,
  3824. 0x2f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x13, 0x55, 0x73,
  3825. 0x65, 0x72, 0x47, 0x65, 0x74, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x52, 0x65, 0x77, 0x6f, 0x72,
  3826. 0x64, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3827. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  3828. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  3829. 0x79, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  3830. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x2f, 0x72, 0x65, 0x77, 0x6f,
  3831. 0x72, 0x64, 0x2f, 0x67, 0x65, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x11, 0x55, 0x73, 0x65,
  3832. 0x72, 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x16,
  3833. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  3834. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65,
  3835. 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x53, 0x74, 0x61,
  3836. 0x74, 0x75, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22,
  3837. 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x70, 0x72, 0x69, 0x76, 0x61,
  3838. 0x63, 0x79, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x14,
  3839. 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x74, 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x53, 0x74,
  3840. 0x61, 0x74, 0x75, 0x73, 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  3841. 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75,
  3842. 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  3843. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x20, 0x82,
  3844. 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  3845. 0x2f, 0x70, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x2f, 0x73, 0x65, 0x74, 0x3a, 0x01, 0x2a, 0x12,
  3846. 0x8a, 0x01, 0x0a, 0x13, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x55,
  3847. 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3848. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64,
  3849. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  3850. 0x74, 0x1a, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d,
  3851. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  3852. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  3853. 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f,
  3854. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0xa1, 0x01, 0x0a,
  3855. 0x1e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x49, 0x6e, 0x66, 0x6f,
  3856. 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12,
  3857. 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e,
  3858. 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69,
  3859. 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3860. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69,
  3861. 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c,
  3862. 0x79, 0x22, 0x2d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x27, 0x22, 0x22, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  3863. 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73,
  3864. 0x74, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x01, 0x2a,
  3865. 0x12, 0xb2, 0x01, 0x0a, 0x21, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64,
  3866. 0x49, 0x73, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73,
  3867. 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x32, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65,
  3868. 0x72, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x49, 0x73, 0x43,
  3869. 0x68, 0x65, 0x63, 0x6b, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x4c,
  3870. 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69,
  3871. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46,
  3872. 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70,
  3873. 0x6c, 0x79, 0x32, 0x22, 0x30, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2a, 0x22, 0x25, 0x2f, 0x61, 0x70,
  3874. 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c,
  3875. 0x69, 0x73, 0x74, 0x2f, 0x69, 0x73, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x71, 0x75, 0x61, 0x6c, 0x69,
  3876. 0x74, 0x79, 0x3a, 0x01, 0x2a, 0x12, 0x9d, 0x01, 0x0a, 0x1e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  3877. 0x72, 0x46, 0x69, 0x6e, 0x64, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79,
  3878. 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3879. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e,
  3880. 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65,
  3881. 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3882. 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f,
  3883. 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93,
  3884. 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  3885. 0x2f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69,
  3886. 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0xb0, 0x01, 0x0a, 0x1e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  3887. 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x61, 0x6e, 0x48, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b,
  3888. 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x31, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3889. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e,
  3890. 0x64, 0x43, 0x61, 0x6e, 0x48, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72,
  3891. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x61, 0x70,
  3892. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  3893. 0x46, 0x69, 0x6e, 0x64, 0x43, 0x61, 0x6e, 0x48, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x55,
  3894. 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x2a, 0x82, 0xd3,
  3895. 0xe4, 0x93, 0x02, 0x24, 0x22, 0x1f, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67,
  3896. 0x65, 0x72, 0x2f, 0x68, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x2f, 0x75, 0x73, 0x65, 0x72,
  3897. 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x86, 0x01, 0x0a, 0x16, 0x4d, 0x61, 0x6e,
  3898. 0x61, 0x67, 0x65, 0x72, 0x53, 0x65, 0x74, 0x48, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x55,
  3899. 0x73, 0x65, 0x72, 0x12, 0x29, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  3900. 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x53, 0x65, 0x74, 0x48, 0x61, 0x6e, 0x64, 0x70,
  3901. 0x69, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16,
  3902. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  3903. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e,
  3904. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x68, 0x61, 0x6e,
  3905. 0x64, 0x70, 0x69, 0x63, 0x6b, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x65, 0x74, 0x3a, 0x01,
  3906. 0x2a, 0x12, 0x90, 0x01, 0x0a, 0x19, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x53, 0x65, 0x74,
  3907. 0x48, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x4f, 0x6e, 0x65, 0x12,
  3908. 0x2c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e,
  3909. 0x61, 0x67, 0x65, 0x72, 0x53, 0x65, 0x74, 0x48, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x55,
  3910. 0x73, 0x65, 0x72, 0x4f, 0x6e, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e,
  3911. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  3912. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x27, 0x22, 0x22, 0x2f,
  3913. 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x68, 0x61, 0x6e, 0x64,
  3914. 0x70, 0x69, 0x63, 0x6b, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x65, 0x74, 0x2f, 0x6f, 0x6e,
  3915. 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x8b, 0x01, 0x0a, 0x1a, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  3916. 0x4d, 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55,
  3917. 0x73, 0x65, 0x72, 0x12, 0x2b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4d,
  3918. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4d, 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75,
  3919. 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  3920. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  3921. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22,
  3922. 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x71,
  3923. 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x65, 0x74, 0x3a,
  3924. 0x01, 0x2a, 0x12, 0x92, 0x01, 0x0a, 0x1c, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x52, 0x65,
  3925. 0x4d, 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55,
  3926. 0x73, 0x65, 0x72, 0x12, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4d,
  3927. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x52, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67, 0x68,
  3928. 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65,
  3929. 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3930. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2b, 0x82, 0xd3, 0xe4, 0x93,
  3931. 0x02, 0x25, 0x22, 0x20, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  3932. 0x2f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65,
  3933. 0x6d, 0x61, 0x72, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x80, 0x01, 0x0a, 0x1d, 0x4d, 0x61, 0x6e, 0x61,
  3934. 0x67, 0x65, 0x72, 0x4d, 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69,
  3935. 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x4f, 0x6e, 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3936. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50,
  3937. 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  3938. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2c, 0x82, 0xd3,
  3939. 0xe4, 0x93, 0x02, 0x26, 0x22, 0x21, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67,
  3940. 0x65, 0x72, 0x2f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  3941. 0x73, 0x65, 0x74, 0x2f, 0x6f, 0x6e, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x13, 0x4d, 0x61,
  3942. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x53, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x6c, 0x61, 0x63,
  3943. 0x6b, 0x12, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50,
  3944. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  3945. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  3946. 0x70, 0x74, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70,
  3947. 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x62, 0x6c, 0x61, 0x63, 0x6b, 0x2f,
  3948. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6d, 0x6f, 0x72, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x7e, 0x0a, 0x1c,
  3949. 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x48, 0x69, 0x67,
  3950. 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x12, 0x19, 0x2e, 0x61,
  3951. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  3952. 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  3953. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
  3954. 0x2b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x25, 0x22, 0x20, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61,
  3955. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x2f, 0x75, 0x73,
  3956. 0x65, 0x72, 0x2f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x88, 0x01, 0x0a,
  3957. 0x16, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73,
  3958. 0x65, 0x72, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x2b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3959. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61,
  3960. 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x52, 0x65, 0x71,
  3961. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  3962. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x29, 0x82, 0xd3,
  3963. 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67,
  3964. 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x2f, 0x75, 0x70,
  3965. 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x91, 0x01, 0x0a, 0x19, 0x4d, 0x61, 0x6e, 0x61,
  3966. 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x69, 0x63,
  3967. 0x74, 0x75, 0x72, 0x65, 0x73, 0x12, 0x2e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3968. 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  3969. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x52, 0x65,
  3970. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  3971. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2c, 0x82,
  3972. 0xd3, 0xe4, 0x93, 0x02, 0x26, 0x22, 0x21, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61,
  3973. 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65,
  3974. 0x73, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x94, 0x01, 0x0a, 0x1a,
  3975. 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65,
  3976. 0x72, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x2f, 0x2e, 0x61, 0x70, 0x69,
  3977. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55,
  3978. 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x53, 0x69, 0x67, 0x6e, 0x61,
  3979. 0x74, 0x75, 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  3980. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  3981. 0x70, 0x74, 0x79, 0x22, 0x2d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x27, 0x22, 0x22, 0x2f, 0x61, 0x70,
  3982. 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73,
  3983. 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a,
  3984. 0x01, 0x2a, 0x12, 0x8b, 0x01, 0x0a, 0x17, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70,
  3985. 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x12, 0x2c,
  3986. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61,
  3987. 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x41,
  3988. 0x76, 0x61, 0x74, 0x61, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67,
  3989. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  3990. 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2a, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x24, 0x22, 0x1f, 0x2f, 0x61,
  3991. 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  3992. 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a,
  3993. 0x12, 0x85, 0x01, 0x0a, 0x15, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61,
  3994. 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2a, 0x2e, 0x61, 0x70, 0x69,
  3995. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55,
  3996. 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x52,
  3997. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  3998. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x28,
  3999. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e,
  4000. 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6e, 0x61, 0x6d, 0x65, 0x2f, 0x75,
  4001. 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x8b, 0x01, 0x0a, 0x17, 0x4d, 0x61, 0x6e,
  4002. 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x57, 0x65,
  4003. 0x69, 0x67, 0x68, 0x74, 0x12, 0x2c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  4004. 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50,
  4005. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x57, 0x65, 0x69, 0x67, 0x68, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65,
  4006. 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  4007. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2a, 0x82, 0xd3, 0xe4, 0x93,
  4008. 0x02, 0x24, 0x22, 0x1f, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  4009. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x2f, 0x75, 0x70, 0x64,
  4010. 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x8c, 0x01, 0x0a, 0x18, 0x4d, 0x61, 0x6e, 0x61, 0x67,
  4011. 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x73, 0x42, 0x6c,
  4012. 0x61, 0x63, 0x6b, 0x12, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  4013. 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65,
  4014. 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65,
  4015. 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  4016. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93,
  4017. 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  4018. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x62, 0x6c, 0x61, 0x63, 0x6b, 0x2f, 0x75, 0x70, 0x64, 0x61,
  4019. 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x84, 0x01, 0x0a, 0x17, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  4020. 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x43, 0x72, 0x65, 0x64, 0x69,
  4021. 0x74, 0x12, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4d, 0x61, 0x6e,
  4022. 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x43, 0x72,
  4023. 0x65, 0x64, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  4024. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  4025. 0x70, 0x74, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70,
  4026. 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63,
  4027. 0x72, 0x65, 0x64, 0x69, 0x74, 0x2f, 0x61, 0x64, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x40, 0x0a, 0x0c,
  4028. 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67, 0x12, 0x19, 0x2e, 0x61,
  4029. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  4030. 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  4031. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x73, 0x67, 0x12, 0x45,
  4032. 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4c, 0x69, 0x73, 0x74,
  4033. 0x12, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65,
  4034. 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69,
  4035. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42,
  4036. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x57, 0x0a, 0x13, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c,
  4037. 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x44, 0x42, 0x12, 0x26, 0x2e, 0x61,
  4038. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  4039. 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x44, 0x42, 0x52, 0x65, 0x71,
  4040. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  4041. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x4e,
  4042. 0x0a, 0x17, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x61, 0x73, 0x74,
  4043. 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  4044. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50,
  4045. 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  4046. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x45,
  4047. 0x0a, 0x17, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67, 0x42, 0x79,
  4048. 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  4049. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x15,
  4050. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73,
  4051. 0x6f, 0x6e, 0x4d, 0x73, 0x67, 0x12, 0x82, 0x01, 0x0a, 0x22, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65,
  4052. 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69,
  4053. 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2d, 0x2e, 0x61,
  4054. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f,
  4055. 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79,
  4056. 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x61, 0x70,
  4057. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d,
  4058. 0x6d, 0x65, 0x6e, 0x64, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55,
  4059. 0x73, 0x65, 0x72, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x60, 0x0a, 0x19, 0x47, 0x65,
  4060. 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67, 0x46, 0x72, 0x6f, 0x6d, 0x57, 0x65,
  4061. 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  4062. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72,
  4063. 0x61, 0x6d, 0x1a, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x47, 0x65,
  4064. 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67, 0x46, 0x72, 0x6f, 0x6d, 0x57, 0x65,
  4065. 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x53, 0x0a, 0x13,
  4066. 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65,
  4067. 0x64, 0x69, 0x74, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x53,
  4068. 0x65, 0x6e, 0x64, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64,
  4069. 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  4070. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  4071. 0x79, 0x12, 0x4c, 0x0a, 0x19, 0x4c, 0x6f, 0x6f, 0x6b, 0x42, 0x61, 0x63, 0x6b, 0x53, 0x63, 0x72,
  4072. 0x69, 0x70, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17,
  4073. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73,
  4074. 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  4075. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12,
  4076. 0x4a, 0x0a, 0x17, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65,
  4077. 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69,
  4078. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61,
  4079. 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  4080. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x49, 0x0a, 0x16, 0x52,
  4081. 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43,
  4082. 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  4083. 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16,
  4084. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  4085. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x41, 0x0a, 0x0e, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69,
  4086. 0x6e, 0x67, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  4087. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61,
  4088. 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  4089. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x67, 0x0a, 0x1c, 0x53, 0x65, 0x6e,
  4090. 0x64, 0x4e, 0x65, 0x77, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x55, 0x6e, 0x72, 0x65, 0x61,
  4091. 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  4092. 0x75, 0x73, 0x65, 0x72, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77, 0x4d, 0x65, 0x73, 0x73,
  4093. 0x61, 0x67, 0x65, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65,
  4094. 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  4095. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  4096. 0x22, 0x00, 0x12, 0x55, 0x0a, 0x1e, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77, 0x56, 0x69, 0x73,
  4097. 0x69, 0x74, 0x6f, 0x72, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x52, 0x65, 0x6d, 0x69,
  4098. 0x6e, 0x64, 0x65, 0x72, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  4099. 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a,
  4100. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  4101. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x84, 0x01, 0x0a, 0x24, 0x55, 0x70,
  4102. 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e,
  4103. 0x75, 0x6d, 0x41, 0x6e, 0x64, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x4d,
  4104. 0x73, 0x67, 0x12, 0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x70,
  4105. 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e,
  4106. 0x75, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  4107. 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4d,
  4108. 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x41, 0x6e, 0x64, 0x52, 0x65, 0x74, 0x75,
  4109. 0x72, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
  4110. 0x12, 0x51, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64,
  4111. 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x12, 0x23, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65,
  4112. 0x72, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x55, 0x73,
  4113. 0x65, 0x72, 0x44, 0x42, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x61, 0x70,
  4114. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44,
  4115. 0x42, 0x22, 0x00, 0x12, 0x4d, 0x0a, 0x0f, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x55, 0x73, 0x65,
  4116. 0x72, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65,
  4117. 0x72, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x6c, 0x61, 0x63,
  4118. 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  4119. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  4120. 0x22, 0x00, 0x12, 0x49, 0x0a, 0x0d, 0x41, 0x64, 0x64, 0x55, 0x73, 0x65, 0x72, 0x43, 0x72, 0x65,
  4121. 0x64, 0x69, 0x74, 0x12, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x41,
  4122. 0x64, 0x64, 0x55, 0x73, 0x65, 0x72, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75,
  4123. 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  4124. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x53, 0x0a,
  4125. 0x17, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  4126. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x44, 0x42, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  4127. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61,
  4128. 0x72, 0x61, 0x6d, 0x1a, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x49,
  4129. 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  4130. 0x22, 0x00, 0x12, 0x8b, 0x01, 0x0a, 0x21, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x49, 0x6e,
  4131. 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x77, 0x61, 0x72, 0x64, 0x42, 0x79,
  4132. 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x12, 0x32, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75,
  4133. 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x72,
  4134. 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x77, 0x61, 0x72, 0x64, 0x42, 0x79, 0x41, 0x63, 0x74,
  4135. 0x69, 0x76, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x61,
  4136. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x49,
  4137. 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x77, 0x61, 0x72, 0x64, 0x42,
  4138. 0x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
  4139. 0x12, 0x51, 0x0a, 0x11, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x56, 0x69, 0x70, 0x44,
  4140. 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  4141. 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x1a,
  4142. 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x55,
  4143. 0x73, 0x65, 0x72, 0x56, 0x69, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c,
  4144. 0x79, 0x22, 0x00, 0x12, 0x57, 0x0a, 0x15, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72,
  4145. 0x44, 0x42, 0x57, 0x69, 0x74, 0x68, 0x6f, 0x75, 0x74, 0x4d, 0x61, 0x70, 0x12, 0x26, 0x2e, 0x61,
  4146. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x55, 0x73, 0x65,
  4147. 0x72, 0x44, 0x42, 0x57, 0x69, 0x74, 0x68, 0x6f, 0x75, 0x74, 0x4d, 0x61, 0x70, 0x52, 0x65, 0x71,
  4148. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  4149. 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x22, 0x00, 0x12, 0x52, 0x0a, 0x10,
  4150. 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x41, 0x6e, 0x64, 0x49, 0x6e, 0x69, 0x74,
  4151. 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x47, 0x65,
  4152. 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x41, 0x6e, 0x64, 0x49, 0x6e, 0x69, 0x74, 0x52, 0x65,
  4153. 0x71, 0x1a, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50,
  4154. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x22, 0x00,
  4155. 0x12, 0x45, 0x0a, 0x0b, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x6f, 0x64, 0x61, 0x79, 0x12,
  4156. 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74,
  4157. 0x65, 0x54, 0x6f, 0x64, 0x61, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e,
  4158. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  4159. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x63, 0x0a, 0x1a, 0x55, 0x70, 0x64, 0x61, 0x74,
  4160. 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x65, 0x6e, 0x64, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74,
  4161. 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x2b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72,
  4162. 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x65, 0x6e, 0x64, 0x54,
  4163. 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  4164. 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  4165. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x4b, 0x0a, 0x17,
  4166. 0x43, 0x72, 0x6f, 0x6e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x45, 0x78, 0x70, 0x69, 0x72, 0x61,
  4167. 0x74, 0x69, 0x6f, 0x6e, 0x56, 0x69, 0x70, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  4168. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a,
  4169. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  4170. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x42, 0x3d, 0x0a, 0x08, 0x61, 0x70, 0x69,
  4171. 0x2e, 0x75, 0x73, 0x65, 0x72, 0x50, 0x01, 0x5a, 0x2f, 0x67, 0x69, 0x74, 0x2e, 0x69, 0x6b, 0x75,
  4172. 0x62, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2f, 0x70,
  4173. 0x77, 0x2d, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  4174. 0x73, 0x65, 0x72, 0x3b, 0x75, 0x73, 0x65, 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  4175. }
  4176. var (
  4177. file_user_proto_rawDescOnce sync.Once
  4178. file_user_proto_rawDescData = file_user_proto_rawDesc
  4179. )
  4180. func file_user_proto_rawDescGZIP() []byte {
  4181. file_user_proto_rawDescOnce.Do(func() {
  4182. file_user_proto_rawDescData = protoimpl.X.CompressGZIP(file_user_proto_rawDescData)
  4183. })
  4184. return file_user_proto_rawDescData
  4185. }
  4186. var file_user_proto_msgTypes = make([]protoimpl.MessageInfo, 53)
  4187. var file_user_proto_goTypes = []interface{}{
  4188. (*UpdateTodayRequest)(nil), // 0: api.user.UpdateTodayRequest
  4189. (*UpdateLastSendTemplateTimeRequest)(nil), // 1: api.user.UpdateLastSendTemplateTimeRequest
  4190. (*UserPrivacyStatusInfo)(nil), // 2: api.user.UserPrivacyStatusInfo
  4191. (*IsCanGetReturnRewordReply)(nil), // 3: api.user.IsCanGetReturnRewordReply
  4192. (*GetRandomMatchingRequest)(nil), // 4: api.user.GetRandomMatchingRequest
  4193. (*MatchUserDBWithoutMapRequest)(nil), // 5: api.user.MatchUserDBWithoutMapRequest
  4194. (*GetUserLookHandPickNumReply)(nil), // 6: api.user.GetUserLookHandPickNumReply
  4195. (*FindUserVipListDBReply)(nil), // 7: api.user.FindUserVipListDBReply
  4196. (*VipInfo)(nil), // 8: api.user.VipInfo
  4197. (*SendMsgReduceCreditRequest)(nil), // 9: api.user.SendMsgReduceCreditRequest
  4198. (*UserGetInformationAwardByActivityRequest)(nil), // 10: api.user.UserGetInformationAwardByActivityRequest
  4199. (*UserGetInformationAwardByActivityReply)(nil), // 11: api.user.UserGetInformationAwardByActivityReply
  4200. (*AddUserCreditRequest)(nil), // 12: api.user.AddUserCreditRequest
  4201. (*ReportUserBlackRequest)(nil), // 13: api.user.ReportUserBlackRequest
  4202. (*SendMessageRequest)(nil), // 14: api.user.SendMessageRequest
  4203. (*ManagerFindIsCheckQualityUserListRequest)(nil), // 15: api.user.ManagerFindIsCheckQualityUserListRequest
  4204. (*ManagerUpdateUserCreditRequest)(nil), // 16: api.user.ManagerUpdateUserCreditRequest
  4205. (*ManagerMarkHighQualityUserRequest)(nil), // 17: api.user.ManagerMarkHighQualityUserRequest
  4206. (*ManagerReMarkHighQualityUserRequest)(nil), // 18: api.user.ManagerReMarkHighQualityUserRequest
  4207. (*GetRecommendUserDBRequest)(nil), // 19: api.user.GetRecommendUserDBRequest
  4208. (*FindRecommendHighQualityUserRequest)(nil), // 20: api.user.FindRecommendHighQualityUserRequest
  4209. (*FindRecommendHighQualityUserReply)(nil), // 21: api.user.FindRecommendHighQualityUserReply
  4210. (*UpdateUserMatchedNumAndReturnUserMsgReply)(nil), // 22: api.user.UpdateUserMatchedNumAndReturnUserMsgReply
  4211. (*GetUserDBMsgFromWebsocketReply)(nil), // 23: api.user.GetUserDBMsgFromWebsocketReply
  4212. (*UpdateUserMatchedNumRequest)(nil), // 24: api.user.UpdateUserMatchedNumRequest
  4213. (*SendNewMessageUnreadReminderRequest)(nil), // 25: api.user.SendNewMessageUnreadReminderRequest
  4214. (*SendMsgReduceCreditReply)(nil), // 26: api.user.SendMsgReduceCreditReply
  4215. (*UserFreeNum)(nil), // 27: api.user.UserFreeNum
  4216. (*ReplyScripRequest)(nil), // 28: api.user.ReplyScripRequest
  4217. (*PersonLookScripRequest)(nil), // 29: api.user.PersonLookScripRequest
  4218. (*UserFindScripRequest)(nil), // 30: api.user.UserFindScripRequest
  4219. (*DeleteScripRequest)(nil), // 31: api.user.DeleteScripRequest
  4220. (*CreateScripRequest)(nil), // 32: api.user.CreateScripRequest
  4221. (*FindMatchingAvatarAndNumReply)(nil), // 33: api.user.FindMatchingAvatarAndNumReply
  4222. (*UserRechargeRequest)(nil), // 34: api.user.UserRechargeRequest
  4223. (*RechargeList)(nil), // 35: api.user.RechargeList
  4224. (*VipRechargeList)(nil), // 36: api.user.VipRechargeList
  4225. (*VipRechargeInfo)(nil), // 37: api.user.VipRechargeInfo
  4226. (*RechargeInfo)(nil), // 38: api.user.RechargeInfo
  4227. (*InformationStatus)(nil), // 39: api.user.InformationStatus
  4228. (*UserBalance)(nil), // 40: api.user.UserBalance
  4229. (*UserFindChatListReply)(nil), // 41: api.user.UserFindChatListReply
  4230. (*UserChatInfo)(nil), // 42: api.user.UserChatInfo
  4231. (*UserInfo)(nil), // 43: api.user.UserInfo
  4232. (*KeyRequest)(nil), // 44: api.user.KeyRequest
  4233. (*CreatePayRequest)(nil), // 45: api.user.CreatePayRequest
  4234. (*PayInfo)(nil), // 46: api.user.PayInfo
  4235. (*PayOrderInfo)(nil), // 47: api.user.PayOrderInfo
  4236. (*PayOrderList)(nil), // 48: api.user.PayOrderList
  4237. (*FindPayOrderListRequest)(nil), // 49: api.user.FindPayOrderListRequest
  4238. (*PayCallbackReply)(nil), // 50: api.user.PayCallbackReply
  4239. nil, // 51: api.user.MatchUserDBWithoutMapRequest.IsMatchingMapEntry
  4240. nil, // 52: api.user.FindUserVipListDBReply.VipMapEntry
  4241. (*common.Message)(nil), // 53: api.common.Message
  4242. (*structpb.Value)(nil), // 54: google.protobuf.Value
  4243. (*emptypb.Empty)(nil), // 55: google.protobuf.Empty
  4244. (*common.SendPhoneCodeRequest)(nil), // 56: api.common.SendPhoneCodeRequest
  4245. (*common.CheckPhoneCodeRequest)(nil), // 57: api.common.CheckPhoneCodeRequest
  4246. (*common.UpdateInformationRequest)(nil), // 58: api.common.UpdateInformationRequest
  4247. (*common.CreateChatRoomParam)(nil), // 59: api.common.CreateChatRoomParam
  4248. (*common.PersonParam)(nil), // 60: api.common.PersonParam
  4249. (*common.ListPageRequest)(nil), // 61: api.common.ListPageRequest
  4250. (*common.WxConfReq)(nil), // 62: api.common.WxConfReq
  4251. (*common.SexReq)(nil), // 63: api.common.SexReq
  4252. (*common.ListPage2Request)(nil), // 64: api.common.ListPage2Request
  4253. (*common.FindChatRecordListRequest)(nil), // 65: api.common.FindChatRecordListRequest
  4254. (*common.FindChatRoomMsgRequest)(nil), // 66: api.common.FindChatRoomMsgRequest
  4255. (*common.MemeRequest)(nil), // 67: api.common.MemeRequest
  4256. (*common.FindChatTopicRequest)(nil), // 68: api.common.FindChatTopicRequest
  4257. (*common.RandomNum)(nil), // 69: api.common.RandomNum
  4258. (*common.RandomNumAndSex)(nil), // 70: api.common.RandomNumAndSex
  4259. (*common.ReportChatRequest)(nil), // 71: api.common.ReportChatRequest
  4260. (*common.UpdateLastScripIDRequest)(nil), // 72: api.common.UpdateLastScripIDRequest
  4261. (*common.FindScripRequest)(nil), // 73: api.common.FindScripRequest
  4262. (*common.RoomIDRequest)(nil), // 74: api.common.RoomIDRequest
  4263. (*common.PartnerIDParam)(nil), // 75: api.common.PartnerIDParam
  4264. (*common.PersonIDParam)(nil), // 76: api.common.PersonIDParam
  4265. (*common.ManagerFindPersonListRequest)(nil), // 77: api.common.ManagerFindPersonListRequest
  4266. (*common.ManagerFindCanHandpickUserListRequest)(nil), // 78: api.common.ManagerFindCanHandpickUserListRequest
  4267. (*common.ManagerSetHandpickUserRequest)(nil), // 79: api.common.ManagerSetHandpickUserRequest
  4268. (*common.ManagerSetHandpickUserOneRequest)(nil), // 80: api.common.ManagerSetHandpickUserOneRequest
  4269. (*common.PersonIDList)(nil), // 81: api.common.PersonIDList
  4270. (*common.ManagerUpdatePersonVoiceRequest)(nil), // 82: api.common.ManagerUpdatePersonVoiceRequest
  4271. (*common.ManagerUpdatePersonPicturesRequest)(nil), // 83: api.common.ManagerUpdatePersonPicturesRequest
  4272. (*common.ManagerUpdatePersonSignatureRequest)(nil), // 84: api.common.ManagerUpdatePersonSignatureRequest
  4273. (*common.ManagerUpdatePersonAvatarRequest)(nil), // 85: api.common.ManagerUpdatePersonAvatarRequest
  4274. (*common.ManagerUpdatePersonNameRequest)(nil), // 86: api.common.ManagerUpdatePersonNameRequest
  4275. (*common.ManagerUpdatePersonWeightRequest)(nil), // 87: api.common.ManagerUpdatePersonWeightRequest
  4276. (*common.ManagerUpdatePersonIsBlackRequest)(nil), // 88: api.common.ManagerUpdatePersonIsBlackRequest
  4277. (*common.UpdateLastScripIDDBRequest)(nil), // 89: api.common.UpdateLastScripIDDBRequest
  4278. (*common.IDParam)(nil), // 90: api.common.IDParam
  4279. (*common.GetUserDBAndInitReq)(nil), // 91: api.common.GetUserDBAndInitReq
  4280. (*chat.RoomReply)(nil), // 92: api.chat.RoomReply
  4281. (*common.HomeInfo)(nil), // 93: api.common.HomeInfo
  4282. (*common.LookedAndLikedNum)(nil), // 94: api.common.LookedAndLikedNum
  4283. (*statistics.LookAndLikeListReply)(nil), // 95: api.statistics.LookAndLikeListReply
  4284. (*common.WxConfResponse)(nil), // 96: api.common.WxConfResponse
  4285. (*common.TagListReply)(nil), // 97: api.common.TagListReply
  4286. (*common.RecommendPersonListReply)(nil), // 98: api.common.RecommendPersonListReply
  4287. (*common.ChatRecordListReply)(nil), // 99: api.common.ChatRecordListReply
  4288. (*common.ChatRoomMsg)(nil), // 100: api.common.ChatRoomMsg
  4289. (*common.IsLike)(nil), // 101: api.common.IsLike
  4290. (*common.MemeList)(nil), // 102: api.common.MemeList
  4291. (*common.ChatTopicList)(nil), // 103: api.common.ChatTopicList
  4292. (*common.CommonTextList)(nil), // 104: api.common.CommonTextList
  4293. (*common.MemeTitleList)(nil), // 105: api.common.MemeTitleList
  4294. (*common.ChatCardInfo)(nil), // 106: api.common.ChatCardInfo
  4295. (*common.FindOverSevenDayAvatarReply)(nil), // 107: api.common.FindOverSevenDayAvatarReply
  4296. (*common.ScripID)(nil), // 108: api.common.ScripID
  4297. (*common.ScripReply)(nil), // 109: api.common.ScripReply
  4298. (*common.ScripInfo)(nil), // 110: api.common.ScripInfo
  4299. (*common.ChatRecordInfo)(nil), // 111: api.common.ChatRecordInfo
  4300. (*chat.UnreadNumReply)(nil), // 112: api.chat.UnreadNumReply
  4301. (*chat.UserRoomInfo)(nil), // 113: api.chat.UserRoomInfo
  4302. (*chat.CheckUserPartnerIsRelationshipReply)(nil), // 114: api.chat.CheckUserPartnerIsRelationshipReply
  4303. (*common.AddFriendMessageInfo)(nil), // 115: api.common.AddFriendMessageInfo
  4304. (*statistics.LookAndLikeMessageReply)(nil), // 116: api.statistics.LookAndLikeMessageReply
  4305. (*statistics.LookMessageReply)(nil), // 117: api.statistics.LookMessageReply
  4306. (*chat.WindowInfo)(nil), // 118: api.chat.WindowInfo
  4307. (*chat.GetRandomMatchingReply)(nil), // 119: api.chat.GetRandomMatchingReply
  4308. (*common.SendMessageReply)(nil), // 120: api.common.SendMessageReply
  4309. (*common.HandpickPersonListReply)(nil), // 121: api.common.HandpickPersonListReply
  4310. (*common.ManagerFindPersonListReply)(nil), // 122: api.common.ManagerFindPersonListReply
  4311. (*common.ManagerFindPersonListReply2)(nil), // 123: api.common.ManagerFindPersonListReply2
  4312. (*common.ManagerFindCanHandpickUserListReply)(nil), // 124: api.common.ManagerFindCanHandpickUserListReply
  4313. (*common.PersonMsg)(nil), // 125: api.common.PersonMsg
  4314. (*common.PersonDBReply)(nil), // 126: api.common.PersonDBReply
  4315. (*common.PersonDB)(nil), // 127: api.common.PersonDB
  4316. (*common.PersonDBDetails)(nil), // 128: api.common.PersonDBDetails
  4317. }
  4318. var file_user_proto_depIdxs = []int32{
  4319. 51, // 0: api.user.MatchUserDBWithoutMapRequest.isMatchingMap:type_name -> api.user.MatchUserDBWithoutMapRequest.IsMatchingMapEntry
  4320. 52, // 1: api.user.FindUserVipListDBReply.vipMap:type_name -> api.user.FindUserVipListDBReply.VipMapEntry
  4321. 53, // 2: api.user.SendMessageRequest.message:type_name -> api.common.Message
  4322. 53, // 3: api.user.ReplyScripRequest.message:type_name -> api.common.Message
  4323. 38, // 4: api.user.RechargeList.list:type_name -> api.user.RechargeInfo
  4324. 37, // 5: api.user.VipRechargeList.list:type_name -> api.user.VipRechargeInfo
  4325. 42, // 6: api.user.UserFindChatListReply.list:type_name -> api.user.UserChatInfo
  4326. 54, // 7: api.user.PayInfo.payInfo:type_name -> google.protobuf.Value
  4327. 47, // 8: api.user.PayOrderList.list:type_name -> api.user.PayOrderInfo
  4328. 8, // 9: api.user.FindUserVipListDBReply.VipMapEntry.value:type_name -> api.user.VipInfo
  4329. 55, // 10: api.user.User.GetUserInfo:input_type -> google.protobuf.Empty
  4330. 56, // 11: api.user.User.SendPhoneCode:input_type -> api.common.SendPhoneCodeRequest
  4331. 57, // 12: api.user.User.CheckPhoneCode:input_type -> api.common.CheckPhoneCodeRequest
  4332. 58, // 13: api.user.User.UpdateUserInformation:input_type -> api.common.UpdateInformationRequest
  4333. 59, // 14: api.user.User.CreateUserPersonRoom:input_type -> api.common.CreateChatRoomParam
  4334. 55, // 15: api.user.User.GetUserBalance:input_type -> google.protobuf.Empty
  4335. 60, // 16: api.user.User.UserGetHomeInfo:input_type -> api.common.PersonParam
  4336. 60, // 17: api.user.User.UserGetPersonLikedAndLooked:input_type -> api.common.PersonParam
  4337. 61, // 18: api.user.User.FindLookList:input_type -> api.common.ListPageRequest
  4338. 62, // 19: api.user.User.WxConf:input_type -> api.common.WxConfReq
  4339. 63, // 20: api.user.User.FindTagListBySex:input_type -> api.common.SexReq
  4340. 64, // 21: api.user.User.FindOnlineList:input_type -> api.common.ListPage2Request
  4341. 61, // 22: api.user.User.FindWithinSevenDayRoomList:input_type -> api.common.ListPageRequest
  4342. 61, // 23: api.user.User.FindOverSevenDayRoomList:input_type -> api.common.ListPageRequest
  4343. 61, // 24: api.user.User.FindCloseFriendRoomList:input_type -> api.common.ListPageRequest
  4344. 65, // 25: api.user.User.FindChatRecordList:input_type -> api.common.FindChatRecordListRequest
  4345. 66, // 26: api.user.User.FindChatRoomMsg:input_type -> api.common.FindChatRoomMsgRequest
  4346. 60, // 27: api.user.User.GetUserIsLike:input_type -> api.common.PersonParam
  4347. 67, // 28: api.user.User.FindMemeByType:input_type -> api.common.MemeRequest
  4348. 68, // 29: api.user.User.FindChatTopic:input_type -> api.common.FindChatTopicRequest
  4349. 69, // 30: api.user.User.RandomMeme:input_type -> api.common.RandomNum
  4350. 70, // 31: api.user.User.RandomSwiftMessage:input_type -> api.common.RandomNumAndSex
  4351. 55, // 32: api.user.User.FindMemeTitle:input_type -> google.protobuf.Empty
  4352. 60, // 33: api.user.User.UserGetChatCard:input_type -> api.common.PersonParam
  4353. 55, // 34: api.user.User.FindChatTopicTitle:input_type -> google.protobuf.Empty
  4354. 60, // 35: api.user.User.UserLike:input_type -> api.common.PersonParam
  4355. 60, // 36: api.user.User.UserUnLike:input_type -> api.common.PersonParam
  4356. 71, // 37: api.user.User.Report:input_type -> api.common.ReportChatRequest
  4357. 55, // 38: api.user.User.FindOverSevenDayAvatar:input_type -> google.protobuf.Empty
  4358. 72, // 39: api.user.User.UpdateLastScripID:input_type -> api.common.UpdateLastScripIDRequest
  4359. 32, // 40: api.user.User.CreateScrip:input_type -> api.user.CreateScripRequest
  4360. 31, // 41: api.user.User.DeleteScrip:input_type -> api.user.DeleteScripRequest
  4361. 30, // 42: api.user.User.FindMyScrip:input_type -> api.user.UserFindScripRequest
  4362. 73, // 43: api.user.User.FindOtherScrip:input_type -> api.common.FindScripRequest
  4363. 30, // 44: api.user.User.FindRecommendScrip:input_type -> api.user.UserFindScripRequest
  4364. 29, // 45: api.user.User.PersonLookScrip:input_type -> api.user.PersonLookScripRequest
  4365. 55, // 46: api.user.User.PersonClickLookBack:input_type -> google.protobuf.Empty
  4366. 28, // 47: api.user.User.PersonReplyScrip:input_type -> api.user.ReplyScripRequest
  4367. 74, // 48: api.user.User.UserDeleteChat:input_type -> api.common.RoomIDRequest
  4368. 55, // 49: api.user.User.GetUserAllUnreadNum:input_type -> google.protobuf.Empty
  4369. 60, // 50: api.user.User.GetUserRoomByPerson:input_type -> api.common.PersonParam
  4370. 61, // 51: api.user.User.FindLikeList:input_type -> api.common.ListPageRequest
  4371. 61, // 52: api.user.User.FindLikedList:input_type -> api.common.ListPageRequest
  4372. 74, // 53: api.user.User.UserSetBlackChat:input_type -> api.common.RoomIDRequest
  4373. 75, // 54: api.user.User.CheckUserPartnerIsRelationship:input_type -> api.common.PartnerIDParam
  4374. 44, // 55: api.user.User.GetPartnerCircleInfo:input_type -> api.user.KeyRequest
  4375. 55, // 56: api.user.User.GetLookAndLikeStatisticsMessage:input_type -> google.protobuf.Empty
  4376. 55, // 57: api.user.User.GetUserLookNum:input_type -> google.protobuf.Empty
  4377. 55, // 58: api.user.User.UserFinishInformation:input_type -> google.protobuf.Empty
  4378. 55, // 59: api.user.User.UserInformationStatus:input_type -> google.protobuf.Empty
  4379. 55, // 60: api.user.User.UserGetInformationAward:input_type -> google.protobuf.Empty
  4380. 60, // 61: api.user.User.UnlockLookRecord:input_type -> api.common.PersonParam
  4381. 34, // 62: api.user.User.UserRecharge:input_type -> api.user.UserRechargeRequest
  4382. 34, // 63: api.user.User.UserRechargeVip:input_type -> api.user.UserRechargeRequest
  4383. 55, // 64: api.user.User.FindRechargeList:input_type -> google.protobuf.Empty
  4384. 55, // 65: api.user.User.FindVipRechargeList:input_type -> google.protobuf.Empty
  4385. 49, // 66: api.user.User.FindPayList:input_type -> api.user.FindPayOrderListRequest
  4386. 55, // 67: api.user.User.FindRecommendPersonList:input_type -> google.protobuf.Empty
  4387. 55, // 68: api.user.User.FindMatchingAvatarAndNum:input_type -> google.protobuf.Empty
  4388. 55, // 69: api.user.User.GetWindowInfo:input_type -> google.protobuf.Empty
  4389. 55, // 70: api.user.User.GetUserFreeNum:input_type -> google.protobuf.Empty
  4390. 4, // 71: api.user.User.GetRandomMatching:input_type -> api.user.GetRandomMatchingRequest
  4391. 74, // 72: api.user.User.UnlockVoice:input_type -> api.common.RoomIDRequest
  4392. 74, // 73: api.user.User.UnlockPicture:input_type -> api.common.RoomIDRequest
  4393. 55, // 74: api.user.User.UpdateUserIsRegister:input_type -> google.protobuf.Empty
  4394. 59, // 75: api.user.User.CreateUserPartnerRoom:input_type -> api.common.CreateChatRoomParam
  4395. 14, // 76: api.user.User.SendMessage:input_type -> api.user.SendMessageRequest
  4396. 55, // 77: api.user.User.GetVipInfo:input_type -> google.protobuf.Empty
  4397. 55, // 78: api.user.User.FindHandpickUser:input_type -> google.protobuf.Empty
  4398. 55, // 79: api.user.User.GetUserLookHandPickNum:input_type -> google.protobuf.Empty
  4399. 76, // 80: api.user.User.SetUserLookHandPickNum:input_type -> api.common.PersonIDParam
  4400. 55, // 81: api.user.User.IsCanGetReturnReword:input_type -> google.protobuf.Empty
  4401. 55, // 82: api.user.User.UserGetReturnReword:input_type -> google.protobuf.Empty
  4402. 55, // 83: api.user.User.UserPrivacyStatus:input_type -> google.protobuf.Empty
  4403. 2, // 84: api.user.User.UserSetPrivacyStatus:input_type -> api.user.UserPrivacyStatusInfo
  4404. 77, // 85: api.user.User.ManagerFindUserList:input_type -> api.common.ManagerFindPersonListRequest
  4405. 77, // 86: api.user.User.ManagerFindInformationUserList:input_type -> api.common.ManagerFindPersonListRequest
  4406. 15, // 87: api.user.User.ManagerFindIsCheckQualityUserList:input_type -> api.user.ManagerFindIsCheckQualityUserListRequest
  4407. 77, // 88: api.user.User.ManagerFindHighQualityUserList:input_type -> api.common.ManagerFindPersonListRequest
  4408. 78, // 89: api.user.User.ManagerFindCanHandpickUserList:input_type -> api.common.ManagerFindCanHandpickUserListRequest
  4409. 79, // 90: api.user.User.ManagerSetHandpickUser:input_type -> api.common.ManagerSetHandpickUserRequest
  4410. 80, // 91: api.user.User.ManagerSetHandpickUserOne:input_type -> api.common.ManagerSetHandpickUserOneRequest
  4411. 17, // 92: api.user.User.ManagerMarkHighQualityUser:input_type -> api.user.ManagerMarkHighQualityUserRequest
  4412. 18, // 93: api.user.User.ManagerReMarkHighQualityUser:input_type -> api.user.ManagerReMarkHighQualityUserRequest
  4413. 76, // 94: api.user.User.ManagerMarkHighQualityUserOne:input_type -> api.common.PersonIDParam
  4414. 81, // 95: api.user.User.ManagerSetUserBlack:input_type -> api.common.PersonIDList
  4415. 76, // 96: api.user.User.ManagerDeleteHighQualityUser:input_type -> api.common.PersonIDParam
  4416. 82, // 97: api.user.User.ManagerUpdateUserVoice:input_type -> api.common.ManagerUpdatePersonVoiceRequest
  4417. 83, // 98: api.user.User.ManagerUpdateUserPictures:input_type -> api.common.ManagerUpdatePersonPicturesRequest
  4418. 84, // 99: api.user.User.ManagerUpdateUserSignature:input_type -> api.common.ManagerUpdatePersonSignatureRequest
  4419. 85, // 100: api.user.User.ManagerUpdateUserAvatar:input_type -> api.common.ManagerUpdatePersonAvatarRequest
  4420. 86, // 101: api.user.User.ManagerUpdateUserName:input_type -> api.common.ManagerUpdatePersonNameRequest
  4421. 87, // 102: api.user.User.ManagerUpdateUserWeight:input_type -> api.common.ManagerUpdatePersonWeightRequest
  4422. 88, // 103: api.user.User.ManagerUpdateUserIsBlack:input_type -> api.common.ManagerUpdatePersonIsBlackRequest
  4423. 16, // 104: api.user.User.ManagerUpdateUserCredit:input_type -> api.user.ManagerUpdateUserCreditRequest
  4424. 76, // 105: api.user.User.GetUserDBMsg:input_type -> api.common.PersonIDParam
  4425. 81, // 106: api.user.User.FindUserDBList:input_type -> api.common.PersonIDList
  4426. 89, // 107: api.user.User.UpdateLastScripIDDB:input_type -> api.common.UpdateLastScripIDDBRequest
  4427. 76, // 108: api.user.User.UpdateUserLastLoginTime:input_type -> api.common.PersonIDParam
  4428. 90, // 109: api.user.User.GetUserDBMsgByAccountID:input_type -> api.common.IDParam
  4429. 20, // 110: api.user.User.FindRecommendHighQualityUserDBList:input_type -> api.user.FindRecommendHighQualityUserRequest
  4430. 76, // 111: api.user.User.GetUserDBMsgFromWebsocket:input_type -> api.common.PersonIDParam
  4431. 9, // 112: api.user.User.SendMsgReduceCredit:input_type -> api.user.SendMsgReduceCreditRequest
  4432. 60, // 113: api.user.User.LookBackScripReduceCredit:input_type -> api.common.PersonParam
  4433. 60, // 114: api.user.User.CreateScripReduceCredit:input_type -> api.common.PersonParam
  4434. 60, // 115: api.user.User.ReplyScripReduceCredit:input_type -> api.common.PersonParam
  4435. 60, // 116: api.user.User.MatchingCredit:input_type -> api.common.PersonParam
  4436. 25, // 117: api.user.User.SendNewMessageUnreadReminder:input_type -> api.user.SendNewMessageUnreadReminderRequest
  4437. 76, // 118: api.user.User.SendNewVisitorTemplateReminder:input_type -> api.common.PersonIDParam
  4438. 24, // 119: api.user.User.UpdateUserMatchedNumAndReturnUserMsg:input_type -> api.user.UpdateUserMatchedNumRequest
  4439. 19, // 120: api.user.User.GetRecommendUserDB:input_type -> api.user.GetRecommendUserDBRequest
  4440. 13, // 121: api.user.User.ReportUserBlack:input_type -> api.user.ReportUserBlackRequest
  4441. 12, // 122: api.user.User.AddUserCredit:input_type -> api.user.AddUserCreditRequest
  4442. 76, // 123: api.user.User.UserInformationStatusDB:input_type -> api.common.PersonIDParam
  4443. 10, // 124: api.user.User.UserGetInformationAwardByActivity:input_type -> api.user.UserGetInformationAwardByActivityRequest
  4444. 81, // 125: api.user.User.FindUserVipDBList:input_type -> api.common.PersonIDList
  4445. 5, // 126: api.user.User.MatchUserDBWithoutMap:input_type -> api.user.MatchUserDBWithoutMapRequest
  4446. 91, // 127: api.user.User.GetUserDBAndInit:input_type -> api.common.GetUserDBAndInitReq
  4447. 0, // 128: api.user.User.UpdateToday:input_type -> api.user.UpdateTodayRequest
  4448. 1, // 129: api.user.User.UpdateLastSendTemplateTime:input_type -> api.user.UpdateLastSendTemplateTimeRequest
  4449. 55, // 130: api.user.User.CronRemoveExpirationVip:input_type -> google.protobuf.Empty
  4450. 43, // 131: api.user.User.GetUserInfo:output_type -> api.user.UserInfo
  4451. 55, // 132: api.user.User.SendPhoneCode:output_type -> google.protobuf.Empty
  4452. 55, // 133: api.user.User.CheckPhoneCode:output_type -> google.protobuf.Empty
  4453. 55, // 134: api.user.User.UpdateUserInformation:output_type -> google.protobuf.Empty
  4454. 92, // 135: api.user.User.CreateUserPersonRoom:output_type -> api.chat.RoomReply
  4455. 40, // 136: api.user.User.GetUserBalance:output_type -> api.user.UserBalance
  4456. 93, // 137: api.user.User.UserGetHomeInfo:output_type -> api.common.HomeInfo
  4457. 94, // 138: api.user.User.UserGetPersonLikedAndLooked:output_type -> api.common.LookedAndLikedNum
  4458. 95, // 139: api.user.User.FindLookList:output_type -> api.statistics.LookAndLikeListReply
  4459. 96, // 140: api.user.User.WxConf:output_type -> api.common.WxConfResponse
  4460. 97, // 141: api.user.User.FindTagListBySex:output_type -> api.common.TagListReply
  4461. 98, // 142: api.user.User.FindOnlineList:output_type -> api.common.RecommendPersonListReply
  4462. 41, // 143: api.user.User.FindWithinSevenDayRoomList:output_type -> api.user.UserFindChatListReply
  4463. 41, // 144: api.user.User.FindOverSevenDayRoomList:output_type -> api.user.UserFindChatListReply
  4464. 41, // 145: api.user.User.FindCloseFriendRoomList:output_type -> api.user.UserFindChatListReply
  4465. 99, // 146: api.user.User.FindChatRecordList:output_type -> api.common.ChatRecordListReply
  4466. 100, // 147: api.user.User.FindChatRoomMsg:output_type -> api.common.ChatRoomMsg
  4467. 101, // 148: api.user.User.GetUserIsLike:output_type -> api.common.IsLike
  4468. 102, // 149: api.user.User.FindMemeByType:output_type -> api.common.MemeList
  4469. 103, // 150: api.user.User.FindChatTopic:output_type -> api.common.ChatTopicList
  4470. 104, // 151: api.user.User.RandomMeme:output_type -> api.common.CommonTextList
  4471. 104, // 152: api.user.User.RandomSwiftMessage:output_type -> api.common.CommonTextList
  4472. 105, // 153: api.user.User.FindMemeTitle:output_type -> api.common.MemeTitleList
  4473. 106, // 154: api.user.User.UserGetChatCard:output_type -> api.common.ChatCardInfo
  4474. 105, // 155: api.user.User.FindChatTopicTitle:output_type -> api.common.MemeTitleList
  4475. 55, // 156: api.user.User.UserLike:output_type -> google.protobuf.Empty
  4476. 55, // 157: api.user.User.UserUnLike:output_type -> google.protobuf.Empty
  4477. 55, // 158: api.user.User.Report:output_type -> google.protobuf.Empty
  4478. 107, // 159: api.user.User.FindOverSevenDayAvatar:output_type -> api.common.FindOverSevenDayAvatarReply
  4479. 55, // 160: api.user.User.UpdateLastScripID:output_type -> google.protobuf.Empty
  4480. 108, // 161: api.user.User.CreateScrip:output_type -> api.common.ScripID
  4481. 55, // 162: api.user.User.DeleteScrip:output_type -> google.protobuf.Empty
  4482. 109, // 163: api.user.User.FindMyScrip:output_type -> api.common.ScripReply
  4483. 109, // 164: api.user.User.FindOtherScrip:output_type -> api.common.ScripReply
  4484. 109, // 165: api.user.User.FindRecommendScrip:output_type -> api.common.ScripReply
  4485. 55, // 166: api.user.User.PersonLookScrip:output_type -> google.protobuf.Empty
  4486. 110, // 167: api.user.User.PersonClickLookBack:output_type -> api.common.ScripInfo
  4487. 111, // 168: api.user.User.PersonReplyScrip:output_type -> api.common.ChatRecordInfo
  4488. 55, // 169: api.user.User.UserDeleteChat:output_type -> google.protobuf.Empty
  4489. 112, // 170: api.user.User.GetUserAllUnreadNum:output_type -> api.chat.UnreadNumReply
  4490. 113, // 171: api.user.User.GetUserRoomByPerson:output_type -> api.chat.UserRoomInfo
  4491. 95, // 172: api.user.User.FindLikeList:output_type -> api.statistics.LookAndLikeListReply
  4492. 95, // 173: api.user.User.FindLikedList:output_type -> api.statistics.LookAndLikeListReply
  4493. 55, // 174: api.user.User.UserSetBlackChat:output_type -> google.protobuf.Empty
  4494. 114, // 175: api.user.User.CheckUserPartnerIsRelationship:output_type -> api.chat.CheckUserPartnerIsRelationshipReply
  4495. 115, // 176: api.user.User.GetPartnerCircleInfo:output_type -> api.common.AddFriendMessageInfo
  4496. 116, // 177: api.user.User.GetLookAndLikeStatisticsMessage:output_type -> api.statistics.LookAndLikeMessageReply
  4497. 117, // 178: api.user.User.GetUserLookNum:output_type -> api.statistics.LookMessageReply
  4498. 55, // 179: api.user.User.UserFinishInformation:output_type -> google.protobuf.Empty
  4499. 39, // 180: api.user.User.UserInformationStatus:output_type -> api.user.InformationStatus
  4500. 55, // 181: api.user.User.UserGetInformationAward:output_type -> google.protobuf.Empty
  4501. 55, // 182: api.user.User.UnlockLookRecord:output_type -> google.protobuf.Empty
  4502. 46, // 183: api.user.User.UserRecharge:output_type -> api.user.PayInfo
  4503. 46, // 184: api.user.User.UserRechargeVip:output_type -> api.user.PayInfo
  4504. 35, // 185: api.user.User.FindRechargeList:output_type -> api.user.RechargeList
  4505. 36, // 186: api.user.User.FindVipRechargeList:output_type -> api.user.VipRechargeList
  4506. 48, // 187: api.user.User.FindPayList:output_type -> api.user.PayOrderList
  4507. 98, // 188: api.user.User.FindRecommendPersonList:output_type -> api.common.RecommendPersonListReply
  4508. 33, // 189: api.user.User.FindMatchingAvatarAndNum:output_type -> api.user.FindMatchingAvatarAndNumReply
  4509. 118, // 190: api.user.User.GetWindowInfo:output_type -> api.chat.WindowInfo
  4510. 27, // 191: api.user.User.GetUserFreeNum:output_type -> api.user.UserFreeNum
  4511. 119, // 192: api.user.User.GetRandomMatching:output_type -> api.chat.GetRandomMatchingReply
  4512. 55, // 193: api.user.User.UnlockVoice:output_type -> google.protobuf.Empty
  4513. 55, // 194: api.user.User.UnlockPicture:output_type -> google.protobuf.Empty
  4514. 55, // 195: api.user.User.UpdateUserIsRegister:output_type -> google.protobuf.Empty
  4515. 92, // 196: api.user.User.CreateUserPartnerRoom:output_type -> api.chat.RoomReply
  4516. 120, // 197: api.user.User.SendMessage:output_type -> api.common.SendMessageReply
  4517. 8, // 198: api.user.User.GetVipInfo:output_type -> api.user.VipInfo
  4518. 121, // 199: api.user.User.FindHandpickUser:output_type -> api.common.HandpickPersonListReply
  4519. 6, // 200: api.user.User.GetUserLookHandPickNum:output_type -> api.user.GetUserLookHandPickNumReply
  4520. 55, // 201: api.user.User.SetUserLookHandPickNum:output_type -> google.protobuf.Empty
  4521. 3, // 202: api.user.User.IsCanGetReturnReword:output_type -> api.user.IsCanGetReturnRewordReply
  4522. 55, // 203: api.user.User.UserGetReturnReword:output_type -> google.protobuf.Empty
  4523. 2, // 204: api.user.User.UserPrivacyStatus:output_type -> api.user.UserPrivacyStatusInfo
  4524. 55, // 205: api.user.User.UserSetPrivacyStatus:output_type -> google.protobuf.Empty
  4525. 122, // 206: api.user.User.ManagerFindUserList:output_type -> api.common.ManagerFindPersonListReply
  4526. 122, // 207: api.user.User.ManagerFindInformationUserList:output_type -> api.common.ManagerFindPersonListReply
  4527. 123, // 208: api.user.User.ManagerFindIsCheckQualityUserList:output_type -> api.common.ManagerFindPersonListReply2
  4528. 122, // 209: api.user.User.ManagerFindHighQualityUserList:output_type -> api.common.ManagerFindPersonListReply
  4529. 124, // 210: api.user.User.ManagerFindCanHandpickUserList:output_type -> api.common.ManagerFindCanHandpickUserListReply
  4530. 55, // 211: api.user.User.ManagerSetHandpickUser:output_type -> google.protobuf.Empty
  4531. 55, // 212: api.user.User.ManagerSetHandpickUserOne:output_type -> google.protobuf.Empty
  4532. 55, // 213: api.user.User.ManagerMarkHighQualityUser:output_type -> google.protobuf.Empty
  4533. 55, // 214: api.user.User.ManagerReMarkHighQualityUser:output_type -> google.protobuf.Empty
  4534. 55, // 215: api.user.User.ManagerMarkHighQualityUserOne:output_type -> google.protobuf.Empty
  4535. 55, // 216: api.user.User.ManagerSetUserBlack:output_type -> google.protobuf.Empty
  4536. 55, // 217: api.user.User.ManagerDeleteHighQualityUser:output_type -> google.protobuf.Empty
  4537. 55, // 218: api.user.User.ManagerUpdateUserVoice:output_type -> google.protobuf.Empty
  4538. 55, // 219: api.user.User.ManagerUpdateUserPictures:output_type -> google.protobuf.Empty
  4539. 55, // 220: api.user.User.ManagerUpdateUserSignature:output_type -> google.protobuf.Empty
  4540. 55, // 221: api.user.User.ManagerUpdateUserAvatar:output_type -> google.protobuf.Empty
  4541. 55, // 222: api.user.User.ManagerUpdateUserName:output_type -> google.protobuf.Empty
  4542. 55, // 223: api.user.User.ManagerUpdateUserWeight:output_type -> google.protobuf.Empty
  4543. 55, // 224: api.user.User.ManagerUpdateUserIsBlack:output_type -> google.protobuf.Empty
  4544. 55, // 225: api.user.User.ManagerUpdateUserCredit:output_type -> google.protobuf.Empty
  4545. 125, // 226: api.user.User.GetUserDBMsg:output_type -> api.common.PersonMsg
  4546. 126, // 227: api.user.User.FindUserDBList:output_type -> api.common.PersonDBReply
  4547. 55, // 228: api.user.User.UpdateLastScripIDDB:output_type -> google.protobuf.Empty
  4548. 55, // 229: api.user.User.UpdateUserLastLoginTime:output_type -> google.protobuf.Empty
  4549. 125, // 230: api.user.User.GetUserDBMsgByAccountID:output_type -> api.common.PersonMsg
  4550. 21, // 231: api.user.User.FindRecommendHighQualityUserDBList:output_type -> api.user.FindRecommendHighQualityUserReply
  4551. 23, // 232: api.user.User.GetUserDBMsgFromWebsocket:output_type -> api.user.GetUserDBMsgFromWebsocketReply
  4552. 55, // 233: api.user.User.SendMsgReduceCredit:output_type -> google.protobuf.Empty
  4553. 55, // 234: api.user.User.LookBackScripReduceCredit:output_type -> google.protobuf.Empty
  4554. 55, // 235: api.user.User.CreateScripReduceCredit:output_type -> google.protobuf.Empty
  4555. 55, // 236: api.user.User.ReplyScripReduceCredit:output_type -> google.protobuf.Empty
  4556. 55, // 237: api.user.User.MatchingCredit:output_type -> google.protobuf.Empty
  4557. 55, // 238: api.user.User.SendNewMessageUnreadReminder:output_type -> google.protobuf.Empty
  4558. 55, // 239: api.user.User.SendNewVisitorTemplateReminder:output_type -> google.protobuf.Empty
  4559. 22, // 240: api.user.User.UpdateUserMatchedNumAndReturnUserMsg:output_type -> api.user.UpdateUserMatchedNumAndReturnUserMsgReply
  4560. 127, // 241: api.user.User.GetRecommendUserDB:output_type -> api.common.PersonDB
  4561. 55, // 242: api.user.User.ReportUserBlack:output_type -> google.protobuf.Empty
  4562. 55, // 243: api.user.User.AddUserCredit:output_type -> google.protobuf.Empty
  4563. 39, // 244: api.user.User.UserInformationStatusDB:output_type -> api.user.InformationStatus
  4564. 11, // 245: api.user.User.UserGetInformationAwardByActivity:output_type -> api.user.UserGetInformationAwardByActivityReply
  4565. 7, // 246: api.user.User.FindUserVipDBList:output_type -> api.user.FindUserVipListDBReply
  4566. 127, // 247: api.user.User.MatchUserDBWithoutMap:output_type -> api.common.PersonDB
  4567. 128, // 248: api.user.User.GetUserDBAndInit:output_type -> api.common.PersonDBDetails
  4568. 55, // 249: api.user.User.UpdateToday:output_type -> google.protobuf.Empty
  4569. 55, // 250: api.user.User.UpdateLastSendTemplateTime:output_type -> google.protobuf.Empty
  4570. 55, // 251: api.user.User.CronRemoveExpirationVip:output_type -> google.protobuf.Empty
  4571. 131, // [131:252] is the sub-list for method output_type
  4572. 10, // [10:131] is the sub-list for method input_type
  4573. 10, // [10:10] is the sub-list for extension type_name
  4574. 10, // [10:10] is the sub-list for extension extendee
  4575. 0, // [0:10] is the sub-list for field type_name
  4576. }
  4577. func init() { file_user_proto_init() }
  4578. func file_user_proto_init() {
  4579. if File_user_proto != nil {
  4580. return
  4581. }
  4582. if !protoimpl.UnsafeEnabled {
  4583. file_user_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  4584. switch v := v.(*UpdateTodayRequest); i {
  4585. case 0:
  4586. return &v.state
  4587. case 1:
  4588. return &v.sizeCache
  4589. case 2:
  4590. return &v.unknownFields
  4591. default:
  4592. return nil
  4593. }
  4594. }
  4595. file_user_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  4596. switch v := v.(*UpdateLastSendTemplateTimeRequest); i {
  4597. case 0:
  4598. return &v.state
  4599. case 1:
  4600. return &v.sizeCache
  4601. case 2:
  4602. return &v.unknownFields
  4603. default:
  4604. return nil
  4605. }
  4606. }
  4607. file_user_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  4608. switch v := v.(*UserPrivacyStatusInfo); i {
  4609. case 0:
  4610. return &v.state
  4611. case 1:
  4612. return &v.sizeCache
  4613. case 2:
  4614. return &v.unknownFields
  4615. default:
  4616. return nil
  4617. }
  4618. }
  4619. file_user_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  4620. switch v := v.(*IsCanGetReturnRewordReply); i {
  4621. case 0:
  4622. return &v.state
  4623. case 1:
  4624. return &v.sizeCache
  4625. case 2:
  4626. return &v.unknownFields
  4627. default:
  4628. return nil
  4629. }
  4630. }
  4631. file_user_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  4632. switch v := v.(*GetRandomMatchingRequest); i {
  4633. case 0:
  4634. return &v.state
  4635. case 1:
  4636. return &v.sizeCache
  4637. case 2:
  4638. return &v.unknownFields
  4639. default:
  4640. return nil
  4641. }
  4642. }
  4643. file_user_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  4644. switch v := v.(*MatchUserDBWithoutMapRequest); i {
  4645. case 0:
  4646. return &v.state
  4647. case 1:
  4648. return &v.sizeCache
  4649. case 2:
  4650. return &v.unknownFields
  4651. default:
  4652. return nil
  4653. }
  4654. }
  4655. file_user_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  4656. switch v := v.(*GetUserLookHandPickNumReply); i {
  4657. case 0:
  4658. return &v.state
  4659. case 1:
  4660. return &v.sizeCache
  4661. case 2:
  4662. return &v.unknownFields
  4663. default:
  4664. return nil
  4665. }
  4666. }
  4667. file_user_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  4668. switch v := v.(*FindUserVipListDBReply); i {
  4669. case 0:
  4670. return &v.state
  4671. case 1:
  4672. return &v.sizeCache
  4673. case 2:
  4674. return &v.unknownFields
  4675. default:
  4676. return nil
  4677. }
  4678. }
  4679. file_user_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  4680. switch v := v.(*VipInfo); i {
  4681. case 0:
  4682. return &v.state
  4683. case 1:
  4684. return &v.sizeCache
  4685. case 2:
  4686. return &v.unknownFields
  4687. default:
  4688. return nil
  4689. }
  4690. }
  4691. file_user_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  4692. switch v := v.(*SendMsgReduceCreditRequest); i {
  4693. case 0:
  4694. return &v.state
  4695. case 1:
  4696. return &v.sizeCache
  4697. case 2:
  4698. return &v.unknownFields
  4699. default:
  4700. return nil
  4701. }
  4702. }
  4703. file_user_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  4704. switch v := v.(*UserGetInformationAwardByActivityRequest); i {
  4705. case 0:
  4706. return &v.state
  4707. case 1:
  4708. return &v.sizeCache
  4709. case 2:
  4710. return &v.unknownFields
  4711. default:
  4712. return nil
  4713. }
  4714. }
  4715. file_user_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  4716. switch v := v.(*UserGetInformationAwardByActivityReply); i {
  4717. case 0:
  4718. return &v.state
  4719. case 1:
  4720. return &v.sizeCache
  4721. case 2:
  4722. return &v.unknownFields
  4723. default:
  4724. return nil
  4725. }
  4726. }
  4727. file_user_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  4728. switch v := v.(*AddUserCreditRequest); i {
  4729. case 0:
  4730. return &v.state
  4731. case 1:
  4732. return &v.sizeCache
  4733. case 2:
  4734. return &v.unknownFields
  4735. default:
  4736. return nil
  4737. }
  4738. }
  4739. file_user_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  4740. switch v := v.(*ReportUserBlackRequest); i {
  4741. case 0:
  4742. return &v.state
  4743. case 1:
  4744. return &v.sizeCache
  4745. case 2:
  4746. return &v.unknownFields
  4747. default:
  4748. return nil
  4749. }
  4750. }
  4751. file_user_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  4752. switch v := v.(*SendMessageRequest); i {
  4753. case 0:
  4754. return &v.state
  4755. case 1:
  4756. return &v.sizeCache
  4757. case 2:
  4758. return &v.unknownFields
  4759. default:
  4760. return nil
  4761. }
  4762. }
  4763. file_user_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  4764. switch v := v.(*ManagerFindIsCheckQualityUserListRequest); i {
  4765. case 0:
  4766. return &v.state
  4767. case 1:
  4768. return &v.sizeCache
  4769. case 2:
  4770. return &v.unknownFields
  4771. default:
  4772. return nil
  4773. }
  4774. }
  4775. file_user_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  4776. switch v := v.(*ManagerUpdateUserCreditRequest); i {
  4777. case 0:
  4778. return &v.state
  4779. case 1:
  4780. return &v.sizeCache
  4781. case 2:
  4782. return &v.unknownFields
  4783. default:
  4784. return nil
  4785. }
  4786. }
  4787. file_user_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  4788. switch v := v.(*ManagerMarkHighQualityUserRequest); i {
  4789. case 0:
  4790. return &v.state
  4791. case 1:
  4792. return &v.sizeCache
  4793. case 2:
  4794. return &v.unknownFields
  4795. default:
  4796. return nil
  4797. }
  4798. }
  4799. file_user_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  4800. switch v := v.(*ManagerReMarkHighQualityUserRequest); i {
  4801. case 0:
  4802. return &v.state
  4803. case 1:
  4804. return &v.sizeCache
  4805. case 2:
  4806. return &v.unknownFields
  4807. default:
  4808. return nil
  4809. }
  4810. }
  4811. file_user_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  4812. switch v := v.(*GetRecommendUserDBRequest); i {
  4813. case 0:
  4814. return &v.state
  4815. case 1:
  4816. return &v.sizeCache
  4817. case 2:
  4818. return &v.unknownFields
  4819. default:
  4820. return nil
  4821. }
  4822. }
  4823. file_user_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  4824. switch v := v.(*FindRecommendHighQualityUserRequest); i {
  4825. case 0:
  4826. return &v.state
  4827. case 1:
  4828. return &v.sizeCache
  4829. case 2:
  4830. return &v.unknownFields
  4831. default:
  4832. return nil
  4833. }
  4834. }
  4835. file_user_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  4836. switch v := v.(*FindRecommendHighQualityUserReply); i {
  4837. case 0:
  4838. return &v.state
  4839. case 1:
  4840. return &v.sizeCache
  4841. case 2:
  4842. return &v.unknownFields
  4843. default:
  4844. return nil
  4845. }
  4846. }
  4847. file_user_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  4848. switch v := v.(*UpdateUserMatchedNumAndReturnUserMsgReply); i {
  4849. case 0:
  4850. return &v.state
  4851. case 1:
  4852. return &v.sizeCache
  4853. case 2:
  4854. return &v.unknownFields
  4855. default:
  4856. return nil
  4857. }
  4858. }
  4859. file_user_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  4860. switch v := v.(*GetUserDBMsgFromWebsocketReply); i {
  4861. case 0:
  4862. return &v.state
  4863. case 1:
  4864. return &v.sizeCache
  4865. case 2:
  4866. return &v.unknownFields
  4867. default:
  4868. return nil
  4869. }
  4870. }
  4871. file_user_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  4872. switch v := v.(*UpdateUserMatchedNumRequest); i {
  4873. case 0:
  4874. return &v.state
  4875. case 1:
  4876. return &v.sizeCache
  4877. case 2:
  4878. return &v.unknownFields
  4879. default:
  4880. return nil
  4881. }
  4882. }
  4883. file_user_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  4884. switch v := v.(*SendNewMessageUnreadReminderRequest); i {
  4885. case 0:
  4886. return &v.state
  4887. case 1:
  4888. return &v.sizeCache
  4889. case 2:
  4890. return &v.unknownFields
  4891. default:
  4892. return nil
  4893. }
  4894. }
  4895. file_user_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  4896. switch v := v.(*SendMsgReduceCreditReply); i {
  4897. case 0:
  4898. return &v.state
  4899. case 1:
  4900. return &v.sizeCache
  4901. case 2:
  4902. return &v.unknownFields
  4903. default:
  4904. return nil
  4905. }
  4906. }
  4907. file_user_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  4908. switch v := v.(*UserFreeNum); i {
  4909. case 0:
  4910. return &v.state
  4911. case 1:
  4912. return &v.sizeCache
  4913. case 2:
  4914. return &v.unknownFields
  4915. default:
  4916. return nil
  4917. }
  4918. }
  4919. file_user_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  4920. switch v := v.(*ReplyScripRequest); i {
  4921. case 0:
  4922. return &v.state
  4923. case 1:
  4924. return &v.sizeCache
  4925. case 2:
  4926. return &v.unknownFields
  4927. default:
  4928. return nil
  4929. }
  4930. }
  4931. file_user_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  4932. switch v := v.(*PersonLookScripRequest); i {
  4933. case 0:
  4934. return &v.state
  4935. case 1:
  4936. return &v.sizeCache
  4937. case 2:
  4938. return &v.unknownFields
  4939. default:
  4940. return nil
  4941. }
  4942. }
  4943. file_user_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  4944. switch v := v.(*UserFindScripRequest); i {
  4945. case 0:
  4946. return &v.state
  4947. case 1:
  4948. return &v.sizeCache
  4949. case 2:
  4950. return &v.unknownFields
  4951. default:
  4952. return nil
  4953. }
  4954. }
  4955. file_user_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  4956. switch v := v.(*DeleteScripRequest); i {
  4957. case 0:
  4958. return &v.state
  4959. case 1:
  4960. return &v.sizeCache
  4961. case 2:
  4962. return &v.unknownFields
  4963. default:
  4964. return nil
  4965. }
  4966. }
  4967. file_user_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  4968. switch v := v.(*CreateScripRequest); i {
  4969. case 0:
  4970. return &v.state
  4971. case 1:
  4972. return &v.sizeCache
  4973. case 2:
  4974. return &v.unknownFields
  4975. default:
  4976. return nil
  4977. }
  4978. }
  4979. file_user_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  4980. switch v := v.(*FindMatchingAvatarAndNumReply); i {
  4981. case 0:
  4982. return &v.state
  4983. case 1:
  4984. return &v.sizeCache
  4985. case 2:
  4986. return &v.unknownFields
  4987. default:
  4988. return nil
  4989. }
  4990. }
  4991. file_user_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  4992. switch v := v.(*UserRechargeRequest); i {
  4993. case 0:
  4994. return &v.state
  4995. case 1:
  4996. return &v.sizeCache
  4997. case 2:
  4998. return &v.unknownFields
  4999. default:
  5000. return nil
  5001. }
  5002. }
  5003. file_user_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
  5004. switch v := v.(*RechargeList); i {
  5005. case 0:
  5006. return &v.state
  5007. case 1:
  5008. return &v.sizeCache
  5009. case 2:
  5010. return &v.unknownFields
  5011. default:
  5012. return nil
  5013. }
  5014. }
  5015. file_user_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
  5016. switch v := v.(*VipRechargeList); i {
  5017. case 0:
  5018. return &v.state
  5019. case 1:
  5020. return &v.sizeCache
  5021. case 2:
  5022. return &v.unknownFields
  5023. default:
  5024. return nil
  5025. }
  5026. }
  5027. file_user_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
  5028. switch v := v.(*VipRechargeInfo); i {
  5029. case 0:
  5030. return &v.state
  5031. case 1:
  5032. return &v.sizeCache
  5033. case 2:
  5034. return &v.unknownFields
  5035. default:
  5036. return nil
  5037. }
  5038. }
  5039. file_user_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
  5040. switch v := v.(*RechargeInfo); i {
  5041. case 0:
  5042. return &v.state
  5043. case 1:
  5044. return &v.sizeCache
  5045. case 2:
  5046. return &v.unknownFields
  5047. default:
  5048. return nil
  5049. }
  5050. }
  5051. file_user_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
  5052. switch v := v.(*InformationStatus); i {
  5053. case 0:
  5054. return &v.state
  5055. case 1:
  5056. return &v.sizeCache
  5057. case 2:
  5058. return &v.unknownFields
  5059. default:
  5060. return nil
  5061. }
  5062. }
  5063. file_user_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
  5064. switch v := v.(*UserBalance); i {
  5065. case 0:
  5066. return &v.state
  5067. case 1:
  5068. return &v.sizeCache
  5069. case 2:
  5070. return &v.unknownFields
  5071. default:
  5072. return nil
  5073. }
  5074. }
  5075. file_user_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
  5076. switch v := v.(*UserFindChatListReply); i {
  5077. case 0:
  5078. return &v.state
  5079. case 1:
  5080. return &v.sizeCache
  5081. case 2:
  5082. return &v.unknownFields
  5083. default:
  5084. return nil
  5085. }
  5086. }
  5087. file_user_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
  5088. switch v := v.(*UserChatInfo); i {
  5089. case 0:
  5090. return &v.state
  5091. case 1:
  5092. return &v.sizeCache
  5093. case 2:
  5094. return &v.unknownFields
  5095. default:
  5096. return nil
  5097. }
  5098. }
  5099. file_user_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
  5100. switch v := v.(*UserInfo); i {
  5101. case 0:
  5102. return &v.state
  5103. case 1:
  5104. return &v.sizeCache
  5105. case 2:
  5106. return &v.unknownFields
  5107. default:
  5108. return nil
  5109. }
  5110. }
  5111. file_user_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
  5112. switch v := v.(*KeyRequest); i {
  5113. case 0:
  5114. return &v.state
  5115. case 1:
  5116. return &v.sizeCache
  5117. case 2:
  5118. return &v.unknownFields
  5119. default:
  5120. return nil
  5121. }
  5122. }
  5123. file_user_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
  5124. switch v := v.(*CreatePayRequest); i {
  5125. case 0:
  5126. return &v.state
  5127. case 1:
  5128. return &v.sizeCache
  5129. case 2:
  5130. return &v.unknownFields
  5131. default:
  5132. return nil
  5133. }
  5134. }
  5135. file_user_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
  5136. switch v := v.(*PayInfo); i {
  5137. case 0:
  5138. return &v.state
  5139. case 1:
  5140. return &v.sizeCache
  5141. case 2:
  5142. return &v.unknownFields
  5143. default:
  5144. return nil
  5145. }
  5146. }
  5147. file_user_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {
  5148. switch v := v.(*PayOrderInfo); i {
  5149. case 0:
  5150. return &v.state
  5151. case 1:
  5152. return &v.sizeCache
  5153. case 2:
  5154. return &v.unknownFields
  5155. default:
  5156. return nil
  5157. }
  5158. }
  5159. file_user_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} {
  5160. switch v := v.(*PayOrderList); i {
  5161. case 0:
  5162. return &v.state
  5163. case 1:
  5164. return &v.sizeCache
  5165. case 2:
  5166. return &v.unknownFields
  5167. default:
  5168. return nil
  5169. }
  5170. }
  5171. file_user_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} {
  5172. switch v := v.(*FindPayOrderListRequest); i {
  5173. case 0:
  5174. return &v.state
  5175. case 1:
  5176. return &v.sizeCache
  5177. case 2:
  5178. return &v.unknownFields
  5179. default:
  5180. return nil
  5181. }
  5182. }
  5183. file_user_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} {
  5184. switch v := v.(*PayCallbackReply); i {
  5185. case 0:
  5186. return &v.state
  5187. case 1:
  5188. return &v.sizeCache
  5189. case 2:
  5190. return &v.unknownFields
  5191. default:
  5192. return nil
  5193. }
  5194. }
  5195. }
  5196. type x struct{}
  5197. out := protoimpl.TypeBuilder{
  5198. File: protoimpl.DescBuilder{
  5199. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  5200. RawDescriptor: file_user_proto_rawDesc,
  5201. NumEnums: 0,
  5202. NumMessages: 53,
  5203. NumExtensions: 0,
  5204. NumServices: 1,
  5205. },
  5206. GoTypes: file_user_proto_goTypes,
  5207. DependencyIndexes: file_user_proto_depIdxs,
  5208. MessageInfos: file_user_proto_msgTypes,
  5209. }.Build()
  5210. File_user_proto = out.File
  5211. file_user_proto_rawDesc = nil
  5212. file_user_proto_goTypes = nil
  5213. file_user_proto_depIdxs = nil
  5214. }