user.pb.go 234 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166
  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 GetUserLookHandPickNumReply struct {
  26. state protoimpl.MessageState
  27. sizeCache protoimpl.SizeCache
  28. unknownFields protoimpl.UnknownFields
  29. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"`
  30. UserIdList []string `protobuf:"bytes,2,rep,name=userIdList,proto3" json:"userIdList"`
  31. }
  32. func (x *GetUserLookHandPickNumReply) Reset() {
  33. *x = GetUserLookHandPickNumReply{}
  34. if protoimpl.UnsafeEnabled {
  35. mi := &file_user_proto_msgTypes[0]
  36. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  37. ms.StoreMessageInfo(mi)
  38. }
  39. }
  40. func (x *GetUserLookHandPickNumReply) String() string {
  41. return protoimpl.X.MessageStringOf(x)
  42. }
  43. func (*GetUserLookHandPickNumReply) ProtoMessage() {}
  44. func (x *GetUserLookHandPickNumReply) ProtoReflect() protoreflect.Message {
  45. mi := &file_user_proto_msgTypes[0]
  46. if protoimpl.UnsafeEnabled && x != nil {
  47. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  48. if ms.LoadMessageInfo() == nil {
  49. ms.StoreMessageInfo(mi)
  50. }
  51. return ms
  52. }
  53. return mi.MessageOf(x)
  54. }
  55. // Deprecated: Use GetUserLookHandPickNumReply.ProtoReflect.Descriptor instead.
  56. func (*GetUserLookHandPickNumReply) Descriptor() ([]byte, []int) {
  57. return file_user_proto_rawDescGZIP(), []int{0}
  58. }
  59. func (x *GetUserLookHandPickNumReply) GetNum() int64 {
  60. if x != nil {
  61. return x.Num
  62. }
  63. return 0
  64. }
  65. func (x *GetUserLookHandPickNumReply) GetUserIdList() []string {
  66. if x != nil {
  67. return x.UserIdList
  68. }
  69. return make([]string, 0)
  70. }
  71. type FindUserVipListDBReply struct {
  72. state protoimpl.MessageState
  73. sizeCache protoimpl.SizeCache
  74. unknownFields protoimpl.UnknownFields
  75. 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"`
  76. }
  77. func (x *FindUserVipListDBReply) Reset() {
  78. *x = FindUserVipListDBReply{}
  79. if protoimpl.UnsafeEnabled {
  80. mi := &file_user_proto_msgTypes[1]
  81. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  82. ms.StoreMessageInfo(mi)
  83. }
  84. }
  85. func (x *FindUserVipListDBReply) String() string {
  86. return protoimpl.X.MessageStringOf(x)
  87. }
  88. func (*FindUserVipListDBReply) ProtoMessage() {}
  89. func (x *FindUserVipListDBReply) ProtoReflect() protoreflect.Message {
  90. mi := &file_user_proto_msgTypes[1]
  91. if protoimpl.UnsafeEnabled && x != nil {
  92. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  93. if ms.LoadMessageInfo() == nil {
  94. ms.StoreMessageInfo(mi)
  95. }
  96. return ms
  97. }
  98. return mi.MessageOf(x)
  99. }
  100. // Deprecated: Use FindUserVipListDBReply.ProtoReflect.Descriptor instead.
  101. func (*FindUserVipListDBReply) Descriptor() ([]byte, []int) {
  102. return file_user_proto_rawDescGZIP(), []int{1}
  103. }
  104. func (x *FindUserVipListDBReply) GetVipMap() map[string]*VipInfo {
  105. if x != nil {
  106. return x.VipMap
  107. }
  108. return make(map[string]*VipInfo, 0)
  109. }
  110. type VipInfo struct {
  111. state protoimpl.MessageState
  112. sizeCache protoimpl.SizeCache
  113. unknownFields protoimpl.UnknownFields
  114. IsVip bool `protobuf:"varint,1,opt,name=isVip,proto3" json:"isVip"` // 是否是vip
  115. VipLevel int64 `protobuf:"varint,2,opt,name=vipLevel,proto3" json:"vipLevel"` // vip 等级
  116. GrowthValue int64 `protobuf:"varint,3,opt,name=growthValue,proto3" json:"growthValue"` // vip成长值
  117. RenewalTime int64 `protobuf:"varint,4,opt,name=renewalTime,proto3" json:"renewalTime"` // 会员的续费时间
  118. ExpirationTime int64 `protobuf:"varint,5,opt,name=expirationTime,proto3" json:"expirationTime"` // 会员的到期时间
  119. CreateTime int64 `protobuf:"varint,6,opt,name=createTime,proto3" json:"createTime"` // 会员的开始时间
  120. IsYearVip bool `protobuf:"varint,7,opt,name=isYearVip,proto3" json:"isYearVip"` // 是否是年费vip
  121. VipFunctions []string `protobuf:"bytes,8,rep,name=vipFunctions,proto3" json:"vipFunctions"` // vip功能
  122. UserId string `protobuf:"bytes,9,opt,name=userId,proto3" json:"userId"` // id
  123. }
  124. func (x *VipInfo) Reset() {
  125. *x = VipInfo{}
  126. if protoimpl.UnsafeEnabled {
  127. mi := &file_user_proto_msgTypes[2]
  128. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  129. ms.StoreMessageInfo(mi)
  130. }
  131. }
  132. func (x *VipInfo) String() string {
  133. return protoimpl.X.MessageStringOf(x)
  134. }
  135. func (*VipInfo) ProtoMessage() {}
  136. func (x *VipInfo) ProtoReflect() protoreflect.Message {
  137. mi := &file_user_proto_msgTypes[2]
  138. if protoimpl.UnsafeEnabled && x != nil {
  139. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  140. if ms.LoadMessageInfo() == nil {
  141. ms.StoreMessageInfo(mi)
  142. }
  143. return ms
  144. }
  145. return mi.MessageOf(x)
  146. }
  147. // Deprecated: Use VipInfo.ProtoReflect.Descriptor instead.
  148. func (*VipInfo) Descriptor() ([]byte, []int) {
  149. return file_user_proto_rawDescGZIP(), []int{2}
  150. }
  151. func (x *VipInfo) GetIsVip() bool {
  152. if x != nil {
  153. return x.IsVip
  154. }
  155. return false
  156. }
  157. func (x *VipInfo) GetVipLevel() int64 {
  158. if x != nil {
  159. return x.VipLevel
  160. }
  161. return 0
  162. }
  163. func (x *VipInfo) GetGrowthValue() int64 {
  164. if x != nil {
  165. return x.GrowthValue
  166. }
  167. return 0
  168. }
  169. func (x *VipInfo) GetRenewalTime() int64 {
  170. if x != nil {
  171. return x.RenewalTime
  172. }
  173. return 0
  174. }
  175. func (x *VipInfo) GetExpirationTime() int64 {
  176. if x != nil {
  177. return x.ExpirationTime
  178. }
  179. return 0
  180. }
  181. func (x *VipInfo) GetCreateTime() int64 {
  182. if x != nil {
  183. return x.CreateTime
  184. }
  185. return 0
  186. }
  187. func (x *VipInfo) GetIsYearVip() bool {
  188. if x != nil {
  189. return x.IsYearVip
  190. }
  191. return false
  192. }
  193. func (x *VipInfo) GetVipFunctions() []string {
  194. if x != nil {
  195. return x.VipFunctions
  196. }
  197. return make([]string, 0)
  198. }
  199. func (x *VipInfo) GetUserId() string {
  200. if x != nil {
  201. return x.UserId
  202. }
  203. return ""
  204. }
  205. type SendMsgReduceCreditRequest struct {
  206. state protoimpl.MessageState
  207. sizeCache protoimpl.SizeCache
  208. unknownFields protoimpl.UnknownFields
  209. PersonID string `protobuf:"bytes,1,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  210. IsFree bool `protobuf:"varint,2,opt,name=isFree,proto3" json:"isFree"` // 是否免费
  211. Type string `protobuf:"bytes,3,opt,name=type,proto3" json:"type"` // 消息类型
  212. }
  213. func (x *SendMsgReduceCreditRequest) Reset() {
  214. *x = SendMsgReduceCreditRequest{}
  215. if protoimpl.UnsafeEnabled {
  216. mi := &file_user_proto_msgTypes[3]
  217. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  218. ms.StoreMessageInfo(mi)
  219. }
  220. }
  221. func (x *SendMsgReduceCreditRequest) String() string {
  222. return protoimpl.X.MessageStringOf(x)
  223. }
  224. func (*SendMsgReduceCreditRequest) ProtoMessage() {}
  225. func (x *SendMsgReduceCreditRequest) ProtoReflect() protoreflect.Message {
  226. mi := &file_user_proto_msgTypes[3]
  227. if protoimpl.UnsafeEnabled && x != nil {
  228. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  229. if ms.LoadMessageInfo() == nil {
  230. ms.StoreMessageInfo(mi)
  231. }
  232. return ms
  233. }
  234. return mi.MessageOf(x)
  235. }
  236. // Deprecated: Use SendMsgReduceCreditRequest.ProtoReflect.Descriptor instead.
  237. func (*SendMsgReduceCreditRequest) Descriptor() ([]byte, []int) {
  238. return file_user_proto_rawDescGZIP(), []int{3}
  239. }
  240. func (x *SendMsgReduceCreditRequest) GetPersonID() string {
  241. if x != nil {
  242. return x.PersonID
  243. }
  244. return ""
  245. }
  246. func (x *SendMsgReduceCreditRequest) GetIsFree() bool {
  247. if x != nil {
  248. return x.IsFree
  249. }
  250. return false
  251. }
  252. func (x *SendMsgReduceCreditRequest) GetType() string {
  253. if x != nil {
  254. return x.Type
  255. }
  256. return ""
  257. }
  258. type UserGetInformationAwardByActivityRequest struct {
  259. state protoimpl.MessageState
  260. sizeCache protoimpl.SizeCache
  261. unknownFields protoimpl.UnknownFields
  262. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId"`
  263. Credit int64 `protobuf:"varint,2,opt,name=credit,proto3" json:"credit"`
  264. Desc string `protobuf:"bytes,3,opt,name=desc,proto3" json:"desc"`
  265. }
  266. func (x *UserGetInformationAwardByActivityRequest) Reset() {
  267. *x = UserGetInformationAwardByActivityRequest{}
  268. if protoimpl.UnsafeEnabled {
  269. mi := &file_user_proto_msgTypes[4]
  270. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  271. ms.StoreMessageInfo(mi)
  272. }
  273. }
  274. func (x *UserGetInformationAwardByActivityRequest) String() string {
  275. return protoimpl.X.MessageStringOf(x)
  276. }
  277. func (*UserGetInformationAwardByActivityRequest) ProtoMessage() {}
  278. func (x *UserGetInformationAwardByActivityRequest) ProtoReflect() protoreflect.Message {
  279. mi := &file_user_proto_msgTypes[4]
  280. if protoimpl.UnsafeEnabled && x != nil {
  281. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  282. if ms.LoadMessageInfo() == nil {
  283. ms.StoreMessageInfo(mi)
  284. }
  285. return ms
  286. }
  287. return mi.MessageOf(x)
  288. }
  289. // Deprecated: Use UserGetInformationAwardByActivityRequest.ProtoReflect.Descriptor instead.
  290. func (*UserGetInformationAwardByActivityRequest) Descriptor() ([]byte, []int) {
  291. return file_user_proto_rawDescGZIP(), []int{4}
  292. }
  293. func (x *UserGetInformationAwardByActivityRequest) GetUserId() string {
  294. if x != nil {
  295. return x.UserId
  296. }
  297. return ""
  298. }
  299. func (x *UserGetInformationAwardByActivityRequest) GetCredit() int64 {
  300. if x != nil {
  301. return x.Credit
  302. }
  303. return 0
  304. }
  305. func (x *UserGetInformationAwardByActivityRequest) GetDesc() string {
  306. if x != nil {
  307. return x.Desc
  308. }
  309. return ""
  310. }
  311. type UserGetInformationAwardByActivityReply struct {
  312. state protoimpl.MessageState
  313. sizeCache protoimpl.SizeCache
  314. unknownFields protoimpl.UnknownFields
  315. IsError bool `protobuf:"varint,1,opt,name=isError,proto3" json:"isError"`
  316. }
  317. func (x *UserGetInformationAwardByActivityReply) Reset() {
  318. *x = UserGetInformationAwardByActivityReply{}
  319. if protoimpl.UnsafeEnabled {
  320. mi := &file_user_proto_msgTypes[5]
  321. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  322. ms.StoreMessageInfo(mi)
  323. }
  324. }
  325. func (x *UserGetInformationAwardByActivityReply) String() string {
  326. return protoimpl.X.MessageStringOf(x)
  327. }
  328. func (*UserGetInformationAwardByActivityReply) ProtoMessage() {}
  329. func (x *UserGetInformationAwardByActivityReply) ProtoReflect() protoreflect.Message {
  330. mi := &file_user_proto_msgTypes[5]
  331. if protoimpl.UnsafeEnabled && x != nil {
  332. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  333. if ms.LoadMessageInfo() == nil {
  334. ms.StoreMessageInfo(mi)
  335. }
  336. return ms
  337. }
  338. return mi.MessageOf(x)
  339. }
  340. // Deprecated: Use UserGetInformationAwardByActivityReply.ProtoReflect.Descriptor instead.
  341. func (*UserGetInformationAwardByActivityReply) Descriptor() ([]byte, []int) {
  342. return file_user_proto_rawDescGZIP(), []int{5}
  343. }
  344. func (x *UserGetInformationAwardByActivityReply) GetIsError() bool {
  345. if x != nil {
  346. return x.IsError
  347. }
  348. return false
  349. }
  350. type AddUserCreditRequest struct {
  351. state protoimpl.MessageState
  352. sizeCache protoimpl.SizeCache
  353. unknownFields protoimpl.UnknownFields
  354. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  355. Credit int64 `protobuf:"varint,2,opt,name=credit,proto3" json:"credit"` // 积分
  356. Detail string `protobuf:"bytes,3,opt,name=detail,proto3" json:"detail"`
  357. }
  358. func (x *AddUserCreditRequest) Reset() {
  359. *x = AddUserCreditRequest{}
  360. if protoimpl.UnsafeEnabled {
  361. mi := &file_user_proto_msgTypes[6]
  362. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  363. ms.StoreMessageInfo(mi)
  364. }
  365. }
  366. func (x *AddUserCreditRequest) String() string {
  367. return protoimpl.X.MessageStringOf(x)
  368. }
  369. func (*AddUserCreditRequest) ProtoMessage() {}
  370. func (x *AddUserCreditRequest) ProtoReflect() protoreflect.Message {
  371. mi := &file_user_proto_msgTypes[6]
  372. if protoimpl.UnsafeEnabled && x != nil {
  373. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  374. if ms.LoadMessageInfo() == nil {
  375. ms.StoreMessageInfo(mi)
  376. }
  377. return ms
  378. }
  379. return mi.MessageOf(x)
  380. }
  381. // Deprecated: Use AddUserCreditRequest.ProtoReflect.Descriptor instead.
  382. func (*AddUserCreditRequest) Descriptor() ([]byte, []int) {
  383. return file_user_proto_rawDescGZIP(), []int{6}
  384. }
  385. func (x *AddUserCreditRequest) GetId() string {
  386. if x != nil {
  387. return x.Id
  388. }
  389. return ""
  390. }
  391. func (x *AddUserCreditRequest) GetCredit() int64 {
  392. if x != nil {
  393. return x.Credit
  394. }
  395. return 0
  396. }
  397. func (x *AddUserCreditRequest) GetDetail() string {
  398. if x != nil {
  399. return x.Detail
  400. }
  401. return ""
  402. }
  403. type ReportUserBlackRequest struct {
  404. state protoimpl.MessageState
  405. sizeCache protoimpl.SizeCache
  406. unknownFields protoimpl.UnknownFields
  407. PersonId string `protobuf:"bytes,1,opt,name=personId,proto3" json:"personId"`
  408. Result string `protobuf:"bytes,2,opt,name=result,proto3" json:"result"`
  409. }
  410. func (x *ReportUserBlackRequest) Reset() {
  411. *x = ReportUserBlackRequest{}
  412. if protoimpl.UnsafeEnabled {
  413. mi := &file_user_proto_msgTypes[7]
  414. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  415. ms.StoreMessageInfo(mi)
  416. }
  417. }
  418. func (x *ReportUserBlackRequest) String() string {
  419. return protoimpl.X.MessageStringOf(x)
  420. }
  421. func (*ReportUserBlackRequest) ProtoMessage() {}
  422. func (x *ReportUserBlackRequest) ProtoReflect() protoreflect.Message {
  423. mi := &file_user_proto_msgTypes[7]
  424. if protoimpl.UnsafeEnabled && x != nil {
  425. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  426. if ms.LoadMessageInfo() == nil {
  427. ms.StoreMessageInfo(mi)
  428. }
  429. return ms
  430. }
  431. return mi.MessageOf(x)
  432. }
  433. // Deprecated: Use ReportUserBlackRequest.ProtoReflect.Descriptor instead.
  434. func (*ReportUserBlackRequest) Descriptor() ([]byte, []int) {
  435. return file_user_proto_rawDescGZIP(), []int{7}
  436. }
  437. func (x *ReportUserBlackRequest) GetPersonId() string {
  438. if x != nil {
  439. return x.PersonId
  440. }
  441. return ""
  442. }
  443. func (x *ReportUserBlackRequest) GetResult() string {
  444. if x != nil {
  445. return x.Result
  446. }
  447. return ""
  448. }
  449. type SendMessageRequest struct {
  450. state protoimpl.MessageState
  451. sizeCache protoimpl.SizeCache
  452. unknownFields protoimpl.UnknownFields
  453. RoomId int64 `protobuf:"varint,1,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  454. Message *common.Message `protobuf:"bytes,2,opt,name=message,proto3" json:"message"` // 消息
  455. MsgType string `protobuf:"bytes,3,opt,name=msgType,proto3" json:"msgType"` // 消息类型
  456. WebsocketTag string `protobuf:"bytes,4,opt,name=websocketTag,proto3" json:"websocketTag"`
  457. }
  458. func (x *SendMessageRequest) Reset() {
  459. *x = SendMessageRequest{}
  460. if protoimpl.UnsafeEnabled {
  461. mi := &file_user_proto_msgTypes[8]
  462. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  463. ms.StoreMessageInfo(mi)
  464. }
  465. }
  466. func (x *SendMessageRequest) String() string {
  467. return protoimpl.X.MessageStringOf(x)
  468. }
  469. func (*SendMessageRequest) ProtoMessage() {}
  470. func (x *SendMessageRequest) ProtoReflect() protoreflect.Message {
  471. mi := &file_user_proto_msgTypes[8]
  472. if protoimpl.UnsafeEnabled && x != nil {
  473. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  474. if ms.LoadMessageInfo() == nil {
  475. ms.StoreMessageInfo(mi)
  476. }
  477. return ms
  478. }
  479. return mi.MessageOf(x)
  480. }
  481. // Deprecated: Use SendMessageRequest.ProtoReflect.Descriptor instead.
  482. func (*SendMessageRequest) Descriptor() ([]byte, []int) {
  483. return file_user_proto_rawDescGZIP(), []int{8}
  484. }
  485. func (x *SendMessageRequest) GetRoomId() int64 {
  486. if x != nil {
  487. return x.RoomId
  488. }
  489. return 0
  490. }
  491. func (x *SendMessageRequest) GetMessage() *common.Message {
  492. if x != nil && x.Message != nil {
  493. return x.Message
  494. }
  495. return &common.Message{}
  496. }
  497. func (x *SendMessageRequest) GetMsgType() string {
  498. if x != nil {
  499. return x.MsgType
  500. }
  501. return ""
  502. }
  503. func (x *SendMessageRequest) GetWebsocketTag() string {
  504. if x != nil {
  505. return x.WebsocketTag
  506. }
  507. return ""
  508. }
  509. type ManagerFindIsCheckQualityUserListRequest struct {
  510. state protoimpl.MessageState
  511. sizeCache protoimpl.SizeCache
  512. unknownFields protoimpl.UnknownFields
  513. Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
  514. PageSize int64 `protobuf:"varint,2,opt,name=pageSize,proto3" json:"pageSize"`
  515. Id int64 `protobuf:"varint,3,opt,name=id,proto3" json:"id"` // 用户ID
  516. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name"` // 姓名
  517. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  518. }
  519. func (x *ManagerFindIsCheckQualityUserListRequest) Reset() {
  520. *x = ManagerFindIsCheckQualityUserListRequest{}
  521. if protoimpl.UnsafeEnabled {
  522. mi := &file_user_proto_msgTypes[9]
  523. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  524. ms.StoreMessageInfo(mi)
  525. }
  526. }
  527. func (x *ManagerFindIsCheckQualityUserListRequest) String() string {
  528. return protoimpl.X.MessageStringOf(x)
  529. }
  530. func (*ManagerFindIsCheckQualityUserListRequest) ProtoMessage() {}
  531. func (x *ManagerFindIsCheckQualityUserListRequest) ProtoReflect() protoreflect.Message {
  532. mi := &file_user_proto_msgTypes[9]
  533. if protoimpl.UnsafeEnabled && x != nil {
  534. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  535. if ms.LoadMessageInfo() == nil {
  536. ms.StoreMessageInfo(mi)
  537. }
  538. return ms
  539. }
  540. return mi.MessageOf(x)
  541. }
  542. // Deprecated: Use ManagerFindIsCheckQualityUserListRequest.ProtoReflect.Descriptor instead.
  543. func (*ManagerFindIsCheckQualityUserListRequest) Descriptor() ([]byte, []int) {
  544. return file_user_proto_rawDescGZIP(), []int{9}
  545. }
  546. func (x *ManagerFindIsCheckQualityUserListRequest) GetPage() int64 {
  547. if x != nil {
  548. return x.Page
  549. }
  550. return 0
  551. }
  552. func (x *ManagerFindIsCheckQualityUserListRequest) GetPageSize() int64 {
  553. if x != nil {
  554. return x.PageSize
  555. }
  556. return 0
  557. }
  558. func (x *ManagerFindIsCheckQualityUserListRequest) GetId() int64 {
  559. if x != nil {
  560. return x.Id
  561. }
  562. return 0
  563. }
  564. func (x *ManagerFindIsCheckQualityUserListRequest) GetName() string {
  565. if x != nil {
  566. return x.Name
  567. }
  568. return ""
  569. }
  570. func (x *ManagerFindIsCheckQualityUserListRequest) GetSex() int64 {
  571. if x != nil {
  572. return x.Sex
  573. }
  574. return 0
  575. }
  576. type ManagerUpdateUserCreditRequest struct {
  577. state protoimpl.MessageState
  578. sizeCache protoimpl.SizeCache
  579. unknownFields protoimpl.UnknownFields
  580. PersonId string `protobuf:"bytes,1,opt,name=personId,proto3" json:"personId"`
  581. Num int64 `protobuf:"varint,2,opt,name=num,proto3" json:"num"`
  582. Title string `protobuf:"bytes,3,opt,name=title,proto3" json:"title"`
  583. }
  584. func (x *ManagerUpdateUserCreditRequest) Reset() {
  585. *x = ManagerUpdateUserCreditRequest{}
  586. if protoimpl.UnsafeEnabled {
  587. mi := &file_user_proto_msgTypes[10]
  588. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  589. ms.StoreMessageInfo(mi)
  590. }
  591. }
  592. func (x *ManagerUpdateUserCreditRequest) String() string {
  593. return protoimpl.X.MessageStringOf(x)
  594. }
  595. func (*ManagerUpdateUserCreditRequest) ProtoMessage() {}
  596. func (x *ManagerUpdateUserCreditRequest) ProtoReflect() protoreflect.Message {
  597. mi := &file_user_proto_msgTypes[10]
  598. if protoimpl.UnsafeEnabled && x != nil {
  599. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  600. if ms.LoadMessageInfo() == nil {
  601. ms.StoreMessageInfo(mi)
  602. }
  603. return ms
  604. }
  605. return mi.MessageOf(x)
  606. }
  607. // Deprecated: Use ManagerUpdateUserCreditRequest.ProtoReflect.Descriptor instead.
  608. func (*ManagerUpdateUserCreditRequest) Descriptor() ([]byte, []int) {
  609. return file_user_proto_rawDescGZIP(), []int{10}
  610. }
  611. func (x *ManagerUpdateUserCreditRequest) GetPersonId() string {
  612. if x != nil {
  613. return x.PersonId
  614. }
  615. return ""
  616. }
  617. func (x *ManagerUpdateUserCreditRequest) GetNum() int64 {
  618. if x != nil {
  619. return x.Num
  620. }
  621. return 0
  622. }
  623. func (x *ManagerUpdateUserCreditRequest) GetTitle() string {
  624. if x != nil {
  625. return x.Title
  626. }
  627. return ""
  628. }
  629. type ManagerMarkHighQualityUserRequest struct {
  630. state protoimpl.MessageState
  631. sizeCache protoimpl.SizeCache
  632. unknownFields protoimpl.UnknownFields
  633. PassIds []string `protobuf:"bytes,1,rep,name=passIds,proto3" json:"passIds"`
  634. UnPassIds []string `protobuf:"bytes,2,rep,name=unPassIds,proto3" json:"unPassIds"`
  635. }
  636. func (x *ManagerMarkHighQualityUserRequest) Reset() {
  637. *x = ManagerMarkHighQualityUserRequest{}
  638. if protoimpl.UnsafeEnabled {
  639. mi := &file_user_proto_msgTypes[11]
  640. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  641. ms.StoreMessageInfo(mi)
  642. }
  643. }
  644. func (x *ManagerMarkHighQualityUserRequest) String() string {
  645. return protoimpl.X.MessageStringOf(x)
  646. }
  647. func (*ManagerMarkHighQualityUserRequest) ProtoMessage() {}
  648. func (x *ManagerMarkHighQualityUserRequest) ProtoReflect() protoreflect.Message {
  649. mi := &file_user_proto_msgTypes[11]
  650. if protoimpl.UnsafeEnabled && x != nil {
  651. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  652. if ms.LoadMessageInfo() == nil {
  653. ms.StoreMessageInfo(mi)
  654. }
  655. return ms
  656. }
  657. return mi.MessageOf(x)
  658. }
  659. // Deprecated: Use ManagerMarkHighQualityUserRequest.ProtoReflect.Descriptor instead.
  660. func (*ManagerMarkHighQualityUserRequest) Descriptor() ([]byte, []int) {
  661. return file_user_proto_rawDescGZIP(), []int{11}
  662. }
  663. func (x *ManagerMarkHighQualityUserRequest) GetPassIds() []string {
  664. if x != nil {
  665. return x.PassIds
  666. }
  667. return make([]string, 0)
  668. }
  669. func (x *ManagerMarkHighQualityUserRequest) GetUnPassIds() []string {
  670. if x != nil {
  671. return x.UnPassIds
  672. }
  673. return make([]string, 0)
  674. }
  675. type ManagerReMarkHighQualityUserRequest struct {
  676. state protoimpl.MessageState
  677. sizeCache protoimpl.SizeCache
  678. unknownFields protoimpl.UnknownFields
  679. UserIds []string `protobuf:"bytes,1,rep,name=userIds,proto3" json:"userIds"`
  680. }
  681. func (x *ManagerReMarkHighQualityUserRequest) Reset() {
  682. *x = ManagerReMarkHighQualityUserRequest{}
  683. if protoimpl.UnsafeEnabled {
  684. mi := &file_user_proto_msgTypes[12]
  685. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  686. ms.StoreMessageInfo(mi)
  687. }
  688. }
  689. func (x *ManagerReMarkHighQualityUserRequest) String() string {
  690. return protoimpl.X.MessageStringOf(x)
  691. }
  692. func (*ManagerReMarkHighQualityUserRequest) ProtoMessage() {}
  693. func (x *ManagerReMarkHighQualityUserRequest) ProtoReflect() protoreflect.Message {
  694. mi := &file_user_proto_msgTypes[12]
  695. if protoimpl.UnsafeEnabled && x != nil {
  696. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  697. if ms.LoadMessageInfo() == nil {
  698. ms.StoreMessageInfo(mi)
  699. }
  700. return ms
  701. }
  702. return mi.MessageOf(x)
  703. }
  704. // Deprecated: Use ManagerReMarkHighQualityUserRequest.ProtoReflect.Descriptor instead.
  705. func (*ManagerReMarkHighQualityUserRequest) Descriptor() ([]byte, []int) {
  706. return file_user_proto_rawDescGZIP(), []int{12}
  707. }
  708. func (x *ManagerReMarkHighQualityUserRequest) GetUserIds() []string {
  709. if x != nil {
  710. return x.UserIds
  711. }
  712. return make([]string, 0)
  713. }
  714. type GetRecommendUserDBRequest struct {
  715. state protoimpl.MessageState
  716. sizeCache protoimpl.SizeCache
  717. unknownFields protoimpl.UnknownFields
  718. Sex int64 `protobuf:"varint,2,opt,name=sex,proto3" json:"sex"`
  719. PersonIds []string `protobuf:"bytes,3,rep,name=personIds,proto3" json:"personIds"` // 匹配过的用户
  720. }
  721. func (x *GetRecommendUserDBRequest) Reset() {
  722. *x = GetRecommendUserDBRequest{}
  723. if protoimpl.UnsafeEnabled {
  724. mi := &file_user_proto_msgTypes[13]
  725. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  726. ms.StoreMessageInfo(mi)
  727. }
  728. }
  729. func (x *GetRecommendUserDBRequest) String() string {
  730. return protoimpl.X.MessageStringOf(x)
  731. }
  732. func (*GetRecommendUserDBRequest) ProtoMessage() {}
  733. func (x *GetRecommendUserDBRequest) ProtoReflect() protoreflect.Message {
  734. mi := &file_user_proto_msgTypes[13]
  735. if protoimpl.UnsafeEnabled && x != nil {
  736. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  737. if ms.LoadMessageInfo() == nil {
  738. ms.StoreMessageInfo(mi)
  739. }
  740. return ms
  741. }
  742. return mi.MessageOf(x)
  743. }
  744. // Deprecated: Use GetRecommendUserDBRequest.ProtoReflect.Descriptor instead.
  745. func (*GetRecommendUserDBRequest) Descriptor() ([]byte, []int) {
  746. return file_user_proto_rawDescGZIP(), []int{13}
  747. }
  748. func (x *GetRecommendUserDBRequest) GetSex() int64 {
  749. if x != nil {
  750. return x.Sex
  751. }
  752. return 0
  753. }
  754. func (x *GetRecommendUserDBRequest) GetPersonIds() []string {
  755. if x != nil {
  756. return x.PersonIds
  757. }
  758. return make([]string, 0)
  759. }
  760. type FindRecommendHighQualityUserRequest struct {
  761. state protoimpl.MessageState
  762. sizeCache protoimpl.SizeCache
  763. unknownFields protoimpl.UnknownFields
  764. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"` // 数量
  765. Sex int64 `protobuf:"varint,3,opt,name=sex,proto3" json:"sex"`
  766. PersonId string `protobuf:"bytes,4,opt,name=personId,proto3" json:"personId"` // ID
  767. }
  768. func (x *FindRecommendHighQualityUserRequest) Reset() {
  769. *x = FindRecommendHighQualityUserRequest{}
  770. if protoimpl.UnsafeEnabled {
  771. mi := &file_user_proto_msgTypes[14]
  772. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  773. ms.StoreMessageInfo(mi)
  774. }
  775. }
  776. func (x *FindRecommendHighQualityUserRequest) String() string {
  777. return protoimpl.X.MessageStringOf(x)
  778. }
  779. func (*FindRecommendHighQualityUserRequest) ProtoMessage() {}
  780. func (x *FindRecommendHighQualityUserRequest) ProtoReflect() protoreflect.Message {
  781. mi := &file_user_proto_msgTypes[14]
  782. if protoimpl.UnsafeEnabled && x != nil {
  783. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  784. if ms.LoadMessageInfo() == nil {
  785. ms.StoreMessageInfo(mi)
  786. }
  787. return ms
  788. }
  789. return mi.MessageOf(x)
  790. }
  791. // Deprecated: Use FindRecommendHighQualityUserRequest.ProtoReflect.Descriptor instead.
  792. func (*FindRecommendHighQualityUserRequest) Descriptor() ([]byte, []int) {
  793. return file_user_proto_rawDescGZIP(), []int{14}
  794. }
  795. func (x *FindRecommendHighQualityUserRequest) GetNum() int64 {
  796. if x != nil {
  797. return x.Num
  798. }
  799. return 0
  800. }
  801. func (x *FindRecommendHighQualityUserRequest) GetSex() int64 {
  802. if x != nil {
  803. return x.Sex
  804. }
  805. return 0
  806. }
  807. func (x *FindRecommendHighQualityUserRequest) GetPersonId() string {
  808. if x != nil {
  809. return x.PersonId
  810. }
  811. return ""
  812. }
  813. type FindRecommendHighQualityUserReply struct {
  814. state protoimpl.MessageState
  815. sizeCache protoimpl.SizeCache
  816. unknownFields protoimpl.UnknownFields
  817. PersonIdList []string `protobuf:"bytes,1,rep,name=personIdList,proto3" json:"personIdList"`
  818. }
  819. func (x *FindRecommendHighQualityUserReply) Reset() {
  820. *x = FindRecommendHighQualityUserReply{}
  821. if protoimpl.UnsafeEnabled {
  822. mi := &file_user_proto_msgTypes[15]
  823. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  824. ms.StoreMessageInfo(mi)
  825. }
  826. }
  827. func (x *FindRecommendHighQualityUserReply) String() string {
  828. return protoimpl.X.MessageStringOf(x)
  829. }
  830. func (*FindRecommendHighQualityUserReply) ProtoMessage() {}
  831. func (x *FindRecommendHighQualityUserReply) ProtoReflect() protoreflect.Message {
  832. mi := &file_user_proto_msgTypes[15]
  833. if protoimpl.UnsafeEnabled && x != nil {
  834. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  835. if ms.LoadMessageInfo() == nil {
  836. ms.StoreMessageInfo(mi)
  837. }
  838. return ms
  839. }
  840. return mi.MessageOf(x)
  841. }
  842. // Deprecated: Use FindRecommendHighQualityUserReply.ProtoReflect.Descriptor instead.
  843. func (*FindRecommendHighQualityUserReply) Descriptor() ([]byte, []int) {
  844. return file_user_proto_rawDescGZIP(), []int{15}
  845. }
  846. func (x *FindRecommendHighQualityUserReply) GetPersonIdList() []string {
  847. if x != nil {
  848. return x.PersonIdList
  849. }
  850. return make([]string, 0)
  851. }
  852. type UpdateUserMatchedNumAndReturnUserMsgReply struct {
  853. state protoimpl.MessageState
  854. sizeCache protoimpl.SizeCache
  855. unknownFields protoimpl.UnknownFields
  856. TodayMatchedNum int64 `protobuf:"varint,1,opt,name=todayMatchedNum,proto3" json:"todayMatchedNum"` // 今日被匹配数
  857. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  858. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  859. Sex int64 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"` // 性别
  860. Age int64 `protobuf:"varint,5,opt,name=age,proto3" json:"age"` // 年龄
  861. City string `protobuf:"bytes,6,opt,name=city,proto3" json:"city"` //城市
  862. }
  863. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) Reset() {
  864. *x = UpdateUserMatchedNumAndReturnUserMsgReply{}
  865. if protoimpl.UnsafeEnabled {
  866. mi := &file_user_proto_msgTypes[16]
  867. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  868. ms.StoreMessageInfo(mi)
  869. }
  870. }
  871. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) String() string {
  872. return protoimpl.X.MessageStringOf(x)
  873. }
  874. func (*UpdateUserMatchedNumAndReturnUserMsgReply) ProtoMessage() {}
  875. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) ProtoReflect() protoreflect.Message {
  876. mi := &file_user_proto_msgTypes[16]
  877. if protoimpl.UnsafeEnabled && x != nil {
  878. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  879. if ms.LoadMessageInfo() == nil {
  880. ms.StoreMessageInfo(mi)
  881. }
  882. return ms
  883. }
  884. return mi.MessageOf(x)
  885. }
  886. // Deprecated: Use UpdateUserMatchedNumAndReturnUserMsgReply.ProtoReflect.Descriptor instead.
  887. func (*UpdateUserMatchedNumAndReturnUserMsgReply) Descriptor() ([]byte, []int) {
  888. return file_user_proto_rawDescGZIP(), []int{16}
  889. }
  890. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetTodayMatchedNum() int64 {
  891. if x != nil {
  892. return x.TodayMatchedNum
  893. }
  894. return 0
  895. }
  896. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetNickname() string {
  897. if x != nil {
  898. return x.Nickname
  899. }
  900. return ""
  901. }
  902. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetAvatarUrl() string {
  903. if x != nil {
  904. return x.AvatarUrl
  905. }
  906. return ""
  907. }
  908. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetSex() int64 {
  909. if x != nil {
  910. return x.Sex
  911. }
  912. return 0
  913. }
  914. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetAge() int64 {
  915. if x != nil {
  916. return x.Age
  917. }
  918. return 0
  919. }
  920. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetCity() string {
  921. if x != nil {
  922. return x.City
  923. }
  924. return ""
  925. }
  926. type GetUserDBMsgFromWebsocketReply struct {
  927. state protoimpl.MessageState
  928. sizeCache protoimpl.SizeCache
  929. unknownFields protoimpl.UnknownFields
  930. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  931. Sex int64 `protobuf:"varint,2,opt,name=sex,proto3" json:"sex"` // 性别
  932. Weight int64 `protobuf:"varint,3,opt,name=weight,proto3" json:"weight"` // 权重
  933. WorkingStatus string `protobuf:"bytes,4,opt,name=workingStatus,proto3" json:"workingStatus"` // 工作状态
  934. TodayMatchedNum int64 `protobuf:"varint,5,opt,name=todayMatchedNum,proto3" json:"todayMatchedNum"` // 今日被匹配数
  935. Age int64 `protobuf:"varint,6,opt,name=age,proto3" json:"age"` // 年龄
  936. Province string `protobuf:"bytes,7,opt,name=province,proto3" json:"province"` // 省
  937. City string `protobuf:"bytes,8,opt,name=city,proto3" json:"city"` // 市
  938. }
  939. func (x *GetUserDBMsgFromWebsocketReply) Reset() {
  940. *x = GetUserDBMsgFromWebsocketReply{}
  941. if protoimpl.UnsafeEnabled {
  942. mi := &file_user_proto_msgTypes[17]
  943. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  944. ms.StoreMessageInfo(mi)
  945. }
  946. }
  947. func (x *GetUserDBMsgFromWebsocketReply) String() string {
  948. return protoimpl.X.MessageStringOf(x)
  949. }
  950. func (*GetUserDBMsgFromWebsocketReply) ProtoMessage() {}
  951. func (x *GetUserDBMsgFromWebsocketReply) ProtoReflect() protoreflect.Message {
  952. mi := &file_user_proto_msgTypes[17]
  953. if protoimpl.UnsafeEnabled && x != nil {
  954. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  955. if ms.LoadMessageInfo() == nil {
  956. ms.StoreMessageInfo(mi)
  957. }
  958. return ms
  959. }
  960. return mi.MessageOf(x)
  961. }
  962. // Deprecated: Use GetUserDBMsgFromWebsocketReply.ProtoReflect.Descriptor instead.
  963. func (*GetUserDBMsgFromWebsocketReply) Descriptor() ([]byte, []int) {
  964. return file_user_proto_rawDescGZIP(), []int{17}
  965. }
  966. func (x *GetUserDBMsgFromWebsocketReply) GetId() string {
  967. if x != nil {
  968. return x.Id
  969. }
  970. return ""
  971. }
  972. func (x *GetUserDBMsgFromWebsocketReply) GetSex() int64 {
  973. if x != nil {
  974. return x.Sex
  975. }
  976. return 0
  977. }
  978. func (x *GetUserDBMsgFromWebsocketReply) GetWeight() int64 {
  979. if x != nil {
  980. return x.Weight
  981. }
  982. return 0
  983. }
  984. func (x *GetUserDBMsgFromWebsocketReply) GetWorkingStatus() string {
  985. if x != nil {
  986. return x.WorkingStatus
  987. }
  988. return ""
  989. }
  990. func (x *GetUserDBMsgFromWebsocketReply) GetTodayMatchedNum() int64 {
  991. if x != nil {
  992. return x.TodayMatchedNum
  993. }
  994. return 0
  995. }
  996. func (x *GetUserDBMsgFromWebsocketReply) GetAge() int64 {
  997. if x != nil {
  998. return x.Age
  999. }
  1000. return 0
  1001. }
  1002. func (x *GetUserDBMsgFromWebsocketReply) GetProvince() string {
  1003. if x != nil {
  1004. return x.Province
  1005. }
  1006. return ""
  1007. }
  1008. func (x *GetUserDBMsgFromWebsocketReply) GetCity() string {
  1009. if x != nil {
  1010. return x.City
  1011. }
  1012. return ""
  1013. }
  1014. type UpdateUserMatchedNumRequest struct {
  1015. state protoimpl.MessageState
  1016. sizeCache protoimpl.SizeCache
  1017. unknownFields protoimpl.UnknownFields
  1018. UserId string `protobuf:"bytes,2,opt,name=userId,proto3" json:"userId"`
  1019. }
  1020. func (x *UpdateUserMatchedNumRequest) Reset() {
  1021. *x = UpdateUserMatchedNumRequest{}
  1022. if protoimpl.UnsafeEnabled {
  1023. mi := &file_user_proto_msgTypes[18]
  1024. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1025. ms.StoreMessageInfo(mi)
  1026. }
  1027. }
  1028. func (x *UpdateUserMatchedNumRequest) String() string {
  1029. return protoimpl.X.MessageStringOf(x)
  1030. }
  1031. func (*UpdateUserMatchedNumRequest) ProtoMessage() {}
  1032. func (x *UpdateUserMatchedNumRequest) ProtoReflect() protoreflect.Message {
  1033. mi := &file_user_proto_msgTypes[18]
  1034. if protoimpl.UnsafeEnabled && x != nil {
  1035. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1036. if ms.LoadMessageInfo() == nil {
  1037. ms.StoreMessageInfo(mi)
  1038. }
  1039. return ms
  1040. }
  1041. return mi.MessageOf(x)
  1042. }
  1043. // Deprecated: Use UpdateUserMatchedNumRequest.ProtoReflect.Descriptor instead.
  1044. func (*UpdateUserMatchedNumRequest) Descriptor() ([]byte, []int) {
  1045. return file_user_proto_rawDescGZIP(), []int{18}
  1046. }
  1047. func (x *UpdateUserMatchedNumRequest) GetUserId() string {
  1048. if x != nil {
  1049. return x.UserId
  1050. }
  1051. return ""
  1052. }
  1053. type SendNewMessageUnreadReminderRequest struct {
  1054. state protoimpl.MessageState
  1055. sizeCache protoimpl.SizeCache
  1056. unknownFields protoimpl.UnknownFields
  1057. PersonId string `protobuf:"bytes,1,opt,name=personId,proto3" json:"personId"`
  1058. SendPersonId string `protobuf:"bytes,2,opt,name=sendPersonId,proto3" json:"sendPersonId"`
  1059. }
  1060. func (x *SendNewMessageUnreadReminderRequest) Reset() {
  1061. *x = SendNewMessageUnreadReminderRequest{}
  1062. if protoimpl.UnsafeEnabled {
  1063. mi := &file_user_proto_msgTypes[19]
  1064. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1065. ms.StoreMessageInfo(mi)
  1066. }
  1067. }
  1068. func (x *SendNewMessageUnreadReminderRequest) String() string {
  1069. return protoimpl.X.MessageStringOf(x)
  1070. }
  1071. func (*SendNewMessageUnreadReminderRequest) ProtoMessage() {}
  1072. func (x *SendNewMessageUnreadReminderRequest) ProtoReflect() protoreflect.Message {
  1073. mi := &file_user_proto_msgTypes[19]
  1074. if protoimpl.UnsafeEnabled && x != nil {
  1075. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1076. if ms.LoadMessageInfo() == nil {
  1077. ms.StoreMessageInfo(mi)
  1078. }
  1079. return ms
  1080. }
  1081. return mi.MessageOf(x)
  1082. }
  1083. // Deprecated: Use SendNewMessageUnreadReminderRequest.ProtoReflect.Descriptor instead.
  1084. func (*SendNewMessageUnreadReminderRequest) Descriptor() ([]byte, []int) {
  1085. return file_user_proto_rawDescGZIP(), []int{19}
  1086. }
  1087. func (x *SendNewMessageUnreadReminderRequest) GetPersonId() string {
  1088. if x != nil {
  1089. return x.PersonId
  1090. }
  1091. return ""
  1092. }
  1093. func (x *SendNewMessageUnreadReminderRequest) GetSendPersonId() string {
  1094. if x != nil {
  1095. return x.SendPersonId
  1096. }
  1097. return ""
  1098. }
  1099. type SendMsgReduceCreditReply struct {
  1100. state protoimpl.MessageState
  1101. sizeCache protoimpl.SizeCache
  1102. unknownFields protoimpl.UnknownFields
  1103. IsSendReminder bool `protobuf:"varint,1,opt,name=isSendReminder,proto3" json:"isSendReminder"` // 是否发送免费次数用完提醒
  1104. }
  1105. func (x *SendMsgReduceCreditReply) Reset() {
  1106. *x = SendMsgReduceCreditReply{}
  1107. if protoimpl.UnsafeEnabled {
  1108. mi := &file_user_proto_msgTypes[20]
  1109. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1110. ms.StoreMessageInfo(mi)
  1111. }
  1112. }
  1113. func (x *SendMsgReduceCreditReply) String() string {
  1114. return protoimpl.X.MessageStringOf(x)
  1115. }
  1116. func (*SendMsgReduceCreditReply) ProtoMessage() {}
  1117. func (x *SendMsgReduceCreditReply) ProtoReflect() protoreflect.Message {
  1118. mi := &file_user_proto_msgTypes[20]
  1119. if protoimpl.UnsafeEnabled && x != nil {
  1120. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1121. if ms.LoadMessageInfo() == nil {
  1122. ms.StoreMessageInfo(mi)
  1123. }
  1124. return ms
  1125. }
  1126. return mi.MessageOf(x)
  1127. }
  1128. // Deprecated: Use SendMsgReduceCreditReply.ProtoReflect.Descriptor instead.
  1129. func (*SendMsgReduceCreditReply) Descriptor() ([]byte, []int) {
  1130. return file_user_proto_rawDescGZIP(), []int{20}
  1131. }
  1132. func (x *SendMsgReduceCreditReply) GetIsSendReminder() bool {
  1133. if x != nil {
  1134. return x.IsSendReminder
  1135. }
  1136. return false
  1137. }
  1138. type UserFreeNum struct {
  1139. state protoimpl.MessageState
  1140. sizeCache protoimpl.SizeCache
  1141. unknownFields protoimpl.UnknownFields
  1142. ReplyScripNum int64 `protobuf:"varint,1,opt,name=replyScripNum,proto3" json:"replyScripNum"` // 今日可免费回复纸条的次数
  1143. CreateScripNum int64 `protobuf:"varint,2,opt,name=createScripNum,proto3" json:"createScripNum"` // 今日免费创建纸条的次数
  1144. MatchingNum int64 `protobuf:"varint,3,opt,name=matchingNum,proto3" json:"matchingNum"` // 今日免费匹配数
  1145. }
  1146. func (x *UserFreeNum) Reset() {
  1147. *x = UserFreeNum{}
  1148. if protoimpl.UnsafeEnabled {
  1149. mi := &file_user_proto_msgTypes[21]
  1150. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1151. ms.StoreMessageInfo(mi)
  1152. }
  1153. }
  1154. func (x *UserFreeNum) String() string {
  1155. return protoimpl.X.MessageStringOf(x)
  1156. }
  1157. func (*UserFreeNum) ProtoMessage() {}
  1158. func (x *UserFreeNum) ProtoReflect() protoreflect.Message {
  1159. mi := &file_user_proto_msgTypes[21]
  1160. if protoimpl.UnsafeEnabled && x != nil {
  1161. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1162. if ms.LoadMessageInfo() == nil {
  1163. ms.StoreMessageInfo(mi)
  1164. }
  1165. return ms
  1166. }
  1167. return mi.MessageOf(x)
  1168. }
  1169. // Deprecated: Use UserFreeNum.ProtoReflect.Descriptor instead.
  1170. func (*UserFreeNum) Descriptor() ([]byte, []int) {
  1171. return file_user_proto_rawDescGZIP(), []int{21}
  1172. }
  1173. func (x *UserFreeNum) GetReplyScripNum() int64 {
  1174. if x != nil {
  1175. return x.ReplyScripNum
  1176. }
  1177. return 0
  1178. }
  1179. func (x *UserFreeNum) GetCreateScripNum() int64 {
  1180. if x != nil {
  1181. return x.CreateScripNum
  1182. }
  1183. return 0
  1184. }
  1185. func (x *UserFreeNum) GetMatchingNum() int64 {
  1186. if x != nil {
  1187. return x.MatchingNum
  1188. }
  1189. return 0
  1190. }
  1191. type ReplyScripRequest struct {
  1192. state protoimpl.MessageState
  1193. sizeCache protoimpl.SizeCache
  1194. unknownFields protoimpl.UnknownFields
  1195. ScripId int64 `protobuf:"varint,4,opt,name=scripId,proto3" json:"scripId"` // 小纸条ID
  1196. Message *common.Message `protobuf:"bytes,5,opt,name=message,proto3" json:"message"` // 回复内容 只需要提供 回复小纸条的内容 或 回复小纸条的素材链接
  1197. MsgType string `protobuf:"bytes,6,opt,name=msgType,proto3" json:"msgType"`
  1198. }
  1199. func (x *ReplyScripRequest) Reset() {
  1200. *x = ReplyScripRequest{}
  1201. if protoimpl.UnsafeEnabled {
  1202. mi := &file_user_proto_msgTypes[22]
  1203. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1204. ms.StoreMessageInfo(mi)
  1205. }
  1206. }
  1207. func (x *ReplyScripRequest) String() string {
  1208. return protoimpl.X.MessageStringOf(x)
  1209. }
  1210. func (*ReplyScripRequest) ProtoMessage() {}
  1211. func (x *ReplyScripRequest) ProtoReflect() protoreflect.Message {
  1212. mi := &file_user_proto_msgTypes[22]
  1213. if protoimpl.UnsafeEnabled && x != nil {
  1214. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1215. if ms.LoadMessageInfo() == nil {
  1216. ms.StoreMessageInfo(mi)
  1217. }
  1218. return ms
  1219. }
  1220. return mi.MessageOf(x)
  1221. }
  1222. // Deprecated: Use ReplyScripRequest.ProtoReflect.Descriptor instead.
  1223. func (*ReplyScripRequest) Descriptor() ([]byte, []int) {
  1224. return file_user_proto_rawDescGZIP(), []int{22}
  1225. }
  1226. func (x *ReplyScripRequest) GetScripId() int64 {
  1227. if x != nil {
  1228. return x.ScripId
  1229. }
  1230. return 0
  1231. }
  1232. func (x *ReplyScripRequest) GetMessage() *common.Message {
  1233. if x != nil && x.Message != nil {
  1234. return x.Message
  1235. }
  1236. return &common.Message{}
  1237. }
  1238. func (x *ReplyScripRequest) GetMsgType() string {
  1239. if x != nil {
  1240. return x.MsgType
  1241. }
  1242. return ""
  1243. }
  1244. type PersonLookScripRequest struct {
  1245. state protoimpl.MessageState
  1246. sizeCache protoimpl.SizeCache
  1247. unknownFields protoimpl.UnknownFields
  1248. ScripId int64 `protobuf:"varint,3,opt,name=scripId,proto3" json:"scripId"` // 纸条id
  1249. }
  1250. func (x *PersonLookScripRequest) Reset() {
  1251. *x = PersonLookScripRequest{}
  1252. if protoimpl.UnsafeEnabled {
  1253. mi := &file_user_proto_msgTypes[23]
  1254. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1255. ms.StoreMessageInfo(mi)
  1256. }
  1257. }
  1258. func (x *PersonLookScripRequest) String() string {
  1259. return protoimpl.X.MessageStringOf(x)
  1260. }
  1261. func (*PersonLookScripRequest) ProtoMessage() {}
  1262. func (x *PersonLookScripRequest) ProtoReflect() protoreflect.Message {
  1263. mi := &file_user_proto_msgTypes[23]
  1264. if protoimpl.UnsafeEnabled && x != nil {
  1265. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1266. if ms.LoadMessageInfo() == nil {
  1267. ms.StoreMessageInfo(mi)
  1268. }
  1269. return ms
  1270. }
  1271. return mi.MessageOf(x)
  1272. }
  1273. // Deprecated: Use PersonLookScripRequest.ProtoReflect.Descriptor instead.
  1274. func (*PersonLookScripRequest) Descriptor() ([]byte, []int) {
  1275. return file_user_proto_rawDescGZIP(), []int{23}
  1276. }
  1277. func (x *PersonLookScripRequest) GetScripId() int64 {
  1278. if x != nil {
  1279. return x.ScripId
  1280. }
  1281. return 0
  1282. }
  1283. type UserFindScripRequest struct {
  1284. state protoimpl.MessageState
  1285. sizeCache protoimpl.SizeCache
  1286. unknownFields protoimpl.UnknownFields
  1287. NextId int64 `protobuf:"varint,3,opt,name=nextId,proto3" json:"nextId"`
  1288. Offset int64 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset"`
  1289. }
  1290. func (x *UserFindScripRequest) Reset() {
  1291. *x = UserFindScripRequest{}
  1292. if protoimpl.UnsafeEnabled {
  1293. mi := &file_user_proto_msgTypes[24]
  1294. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1295. ms.StoreMessageInfo(mi)
  1296. }
  1297. }
  1298. func (x *UserFindScripRequest) String() string {
  1299. return protoimpl.X.MessageStringOf(x)
  1300. }
  1301. func (*UserFindScripRequest) ProtoMessage() {}
  1302. func (x *UserFindScripRequest) ProtoReflect() protoreflect.Message {
  1303. mi := &file_user_proto_msgTypes[24]
  1304. if protoimpl.UnsafeEnabled && x != nil {
  1305. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1306. if ms.LoadMessageInfo() == nil {
  1307. ms.StoreMessageInfo(mi)
  1308. }
  1309. return ms
  1310. }
  1311. return mi.MessageOf(x)
  1312. }
  1313. // Deprecated: Use UserFindScripRequest.ProtoReflect.Descriptor instead.
  1314. func (*UserFindScripRequest) Descriptor() ([]byte, []int) {
  1315. return file_user_proto_rawDescGZIP(), []int{24}
  1316. }
  1317. func (x *UserFindScripRequest) GetNextId() int64 {
  1318. if x != nil {
  1319. return x.NextId
  1320. }
  1321. return 0
  1322. }
  1323. func (x *UserFindScripRequest) GetOffset() int64 {
  1324. if x != nil {
  1325. return x.Offset
  1326. }
  1327. return 0
  1328. }
  1329. type DeleteScripRequest struct {
  1330. state protoimpl.MessageState
  1331. sizeCache protoimpl.SizeCache
  1332. unknownFields protoimpl.UnknownFields
  1333. ScripId int64 `protobuf:"varint,1,opt,name=scripId,proto3" json:"scripId"` // 纸条id
  1334. }
  1335. func (x *DeleteScripRequest) Reset() {
  1336. *x = DeleteScripRequest{}
  1337. if protoimpl.UnsafeEnabled {
  1338. mi := &file_user_proto_msgTypes[25]
  1339. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1340. ms.StoreMessageInfo(mi)
  1341. }
  1342. }
  1343. func (x *DeleteScripRequest) String() string {
  1344. return protoimpl.X.MessageStringOf(x)
  1345. }
  1346. func (*DeleteScripRequest) ProtoMessage() {}
  1347. func (x *DeleteScripRequest) ProtoReflect() protoreflect.Message {
  1348. mi := &file_user_proto_msgTypes[25]
  1349. if protoimpl.UnsafeEnabled && x != nil {
  1350. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1351. if ms.LoadMessageInfo() == nil {
  1352. ms.StoreMessageInfo(mi)
  1353. }
  1354. return ms
  1355. }
  1356. return mi.MessageOf(x)
  1357. }
  1358. // Deprecated: Use DeleteScripRequest.ProtoReflect.Descriptor instead.
  1359. func (*DeleteScripRequest) Descriptor() ([]byte, []int) {
  1360. return file_user_proto_rawDescGZIP(), []int{25}
  1361. }
  1362. func (x *DeleteScripRequest) GetScripId() int64 {
  1363. if x != nil {
  1364. return x.ScripId
  1365. }
  1366. return 0
  1367. }
  1368. type CreateScripRequest struct {
  1369. state protoimpl.MessageState
  1370. sizeCache protoimpl.SizeCache
  1371. unknownFields protoimpl.UnknownFields
  1372. Text string `protobuf:"bytes,1,opt,name=text,proto3" json:"text"` // 纸条内容
  1373. PictureUrl string `protobuf:"bytes,2,opt,name=pictureUrl,proto3" json:"pictureUrl"` // 纸条背景图
  1374. }
  1375. func (x *CreateScripRequest) Reset() {
  1376. *x = CreateScripRequest{}
  1377. if protoimpl.UnsafeEnabled {
  1378. mi := &file_user_proto_msgTypes[26]
  1379. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1380. ms.StoreMessageInfo(mi)
  1381. }
  1382. }
  1383. func (x *CreateScripRequest) String() string {
  1384. return protoimpl.X.MessageStringOf(x)
  1385. }
  1386. func (*CreateScripRequest) ProtoMessage() {}
  1387. func (x *CreateScripRequest) ProtoReflect() protoreflect.Message {
  1388. mi := &file_user_proto_msgTypes[26]
  1389. if protoimpl.UnsafeEnabled && x != nil {
  1390. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1391. if ms.LoadMessageInfo() == nil {
  1392. ms.StoreMessageInfo(mi)
  1393. }
  1394. return ms
  1395. }
  1396. return mi.MessageOf(x)
  1397. }
  1398. // Deprecated: Use CreateScripRequest.ProtoReflect.Descriptor instead.
  1399. func (*CreateScripRequest) Descriptor() ([]byte, []int) {
  1400. return file_user_proto_rawDescGZIP(), []int{26}
  1401. }
  1402. func (x *CreateScripRequest) GetText() string {
  1403. if x != nil {
  1404. return x.Text
  1405. }
  1406. return ""
  1407. }
  1408. func (x *CreateScripRequest) GetPictureUrl() string {
  1409. if x != nil {
  1410. return x.PictureUrl
  1411. }
  1412. return ""
  1413. }
  1414. type FindMatchingAvatarAndNumReply struct {
  1415. state protoimpl.MessageState
  1416. sizeCache protoimpl.SizeCache
  1417. unknownFields protoimpl.UnknownFields
  1418. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"` // 匹配人数
  1419. List []string `protobuf:"bytes,2,rep,name=list,proto3" json:"list"` // 头像列表
  1420. }
  1421. func (x *FindMatchingAvatarAndNumReply) Reset() {
  1422. *x = FindMatchingAvatarAndNumReply{}
  1423. if protoimpl.UnsafeEnabled {
  1424. mi := &file_user_proto_msgTypes[27]
  1425. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1426. ms.StoreMessageInfo(mi)
  1427. }
  1428. }
  1429. func (x *FindMatchingAvatarAndNumReply) String() string {
  1430. return protoimpl.X.MessageStringOf(x)
  1431. }
  1432. func (*FindMatchingAvatarAndNumReply) ProtoMessage() {}
  1433. func (x *FindMatchingAvatarAndNumReply) ProtoReflect() protoreflect.Message {
  1434. mi := &file_user_proto_msgTypes[27]
  1435. if protoimpl.UnsafeEnabled && x != nil {
  1436. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1437. if ms.LoadMessageInfo() == nil {
  1438. ms.StoreMessageInfo(mi)
  1439. }
  1440. return ms
  1441. }
  1442. return mi.MessageOf(x)
  1443. }
  1444. // Deprecated: Use FindMatchingAvatarAndNumReply.ProtoReflect.Descriptor instead.
  1445. func (*FindMatchingAvatarAndNumReply) Descriptor() ([]byte, []int) {
  1446. return file_user_proto_rawDescGZIP(), []int{27}
  1447. }
  1448. func (x *FindMatchingAvatarAndNumReply) GetNum() int64 {
  1449. if x != nil {
  1450. return x.Num
  1451. }
  1452. return 0
  1453. }
  1454. func (x *FindMatchingAvatarAndNumReply) GetList() []string {
  1455. if x != nil {
  1456. return x.List
  1457. }
  1458. return make([]string, 0)
  1459. }
  1460. type UserRechargeRequest struct {
  1461. state protoimpl.MessageState
  1462. sizeCache protoimpl.SizeCache
  1463. unknownFields protoimpl.UnknownFields
  1464. RechargeTemplateId int64 `protobuf:"varint,1,opt,name=RechargeTemplateId,proto3" json:"RechargeTemplateId"` // 充值套餐ID
  1465. }
  1466. func (x *UserRechargeRequest) Reset() {
  1467. *x = UserRechargeRequest{}
  1468. if protoimpl.UnsafeEnabled {
  1469. mi := &file_user_proto_msgTypes[28]
  1470. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1471. ms.StoreMessageInfo(mi)
  1472. }
  1473. }
  1474. func (x *UserRechargeRequest) String() string {
  1475. return protoimpl.X.MessageStringOf(x)
  1476. }
  1477. func (*UserRechargeRequest) ProtoMessage() {}
  1478. func (x *UserRechargeRequest) ProtoReflect() protoreflect.Message {
  1479. mi := &file_user_proto_msgTypes[28]
  1480. if protoimpl.UnsafeEnabled && x != nil {
  1481. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1482. if ms.LoadMessageInfo() == nil {
  1483. ms.StoreMessageInfo(mi)
  1484. }
  1485. return ms
  1486. }
  1487. return mi.MessageOf(x)
  1488. }
  1489. // Deprecated: Use UserRechargeRequest.ProtoReflect.Descriptor instead.
  1490. func (*UserRechargeRequest) Descriptor() ([]byte, []int) {
  1491. return file_user_proto_rawDescGZIP(), []int{28}
  1492. }
  1493. func (x *UserRechargeRequest) GetRechargeTemplateId() int64 {
  1494. if x != nil {
  1495. return x.RechargeTemplateId
  1496. }
  1497. return 0
  1498. }
  1499. type RechargeList struct {
  1500. state protoimpl.MessageState
  1501. sizeCache protoimpl.SizeCache
  1502. unknownFields protoimpl.UnknownFields
  1503. List []*RechargeInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1504. }
  1505. func (x *RechargeList) Reset() {
  1506. *x = RechargeList{}
  1507. if protoimpl.UnsafeEnabled {
  1508. mi := &file_user_proto_msgTypes[29]
  1509. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1510. ms.StoreMessageInfo(mi)
  1511. }
  1512. }
  1513. func (x *RechargeList) String() string {
  1514. return protoimpl.X.MessageStringOf(x)
  1515. }
  1516. func (*RechargeList) ProtoMessage() {}
  1517. func (x *RechargeList) ProtoReflect() protoreflect.Message {
  1518. mi := &file_user_proto_msgTypes[29]
  1519. if protoimpl.UnsafeEnabled && x != nil {
  1520. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1521. if ms.LoadMessageInfo() == nil {
  1522. ms.StoreMessageInfo(mi)
  1523. }
  1524. return ms
  1525. }
  1526. return mi.MessageOf(x)
  1527. }
  1528. // Deprecated: Use RechargeList.ProtoReflect.Descriptor instead.
  1529. func (*RechargeList) Descriptor() ([]byte, []int) {
  1530. return file_user_proto_rawDescGZIP(), []int{29}
  1531. }
  1532. func (x *RechargeList) GetList() []*RechargeInfo {
  1533. if x != nil {
  1534. return x.List
  1535. }
  1536. return make([]*RechargeInfo, 0)
  1537. }
  1538. type VipRechargeList struct {
  1539. state protoimpl.MessageState
  1540. sizeCache protoimpl.SizeCache
  1541. unknownFields protoimpl.UnknownFields
  1542. List []*VipRechargeInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1543. }
  1544. func (x *VipRechargeList) Reset() {
  1545. *x = VipRechargeList{}
  1546. if protoimpl.UnsafeEnabled {
  1547. mi := &file_user_proto_msgTypes[30]
  1548. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1549. ms.StoreMessageInfo(mi)
  1550. }
  1551. }
  1552. func (x *VipRechargeList) String() string {
  1553. return protoimpl.X.MessageStringOf(x)
  1554. }
  1555. func (*VipRechargeList) ProtoMessage() {}
  1556. func (x *VipRechargeList) ProtoReflect() protoreflect.Message {
  1557. mi := &file_user_proto_msgTypes[30]
  1558. if protoimpl.UnsafeEnabled && x != nil {
  1559. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1560. if ms.LoadMessageInfo() == nil {
  1561. ms.StoreMessageInfo(mi)
  1562. }
  1563. return ms
  1564. }
  1565. return mi.MessageOf(x)
  1566. }
  1567. // Deprecated: Use VipRechargeList.ProtoReflect.Descriptor instead.
  1568. func (*VipRechargeList) Descriptor() ([]byte, []int) {
  1569. return file_user_proto_rawDescGZIP(), []int{30}
  1570. }
  1571. func (x *VipRechargeList) GetList() []*VipRechargeInfo {
  1572. if x != nil {
  1573. return x.List
  1574. }
  1575. return make([]*VipRechargeInfo, 0)
  1576. }
  1577. type VipRechargeInfo struct {
  1578. state protoimpl.MessageState
  1579. sizeCache protoimpl.SizeCache
  1580. unknownFields protoimpl.UnknownFields
  1581. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1582. Label string `protobuf:"bytes,2,opt,name=label,proto3" json:"label"` // 标题
  1583. Price int64 `protobuf:"varint,3,opt,name=price,proto3" json:"price"` // 价格
  1584. OriginPrice int64 `protobuf:"varint,4,opt,name=originPrice,proto3" json:"originPrice"` // 原价
  1585. AveragePerDayPrice int64 `protobuf:"varint,5,opt,name=averagePerDayPrice,proto3" json:"averagePerDayPrice"` // 日常价格
  1586. AdditionalCoin int64 `protobuf:"varint,6,opt,name=additionalCoin,proto3" json:"additionalCoin"` // 赠送的积分
  1587. Description string `protobuf:"bytes,7,opt,name=description,proto3" json:"description"` // 描述
  1588. }
  1589. func (x *VipRechargeInfo) Reset() {
  1590. *x = VipRechargeInfo{}
  1591. if protoimpl.UnsafeEnabled {
  1592. mi := &file_user_proto_msgTypes[31]
  1593. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1594. ms.StoreMessageInfo(mi)
  1595. }
  1596. }
  1597. func (x *VipRechargeInfo) String() string {
  1598. return protoimpl.X.MessageStringOf(x)
  1599. }
  1600. func (*VipRechargeInfo) ProtoMessage() {}
  1601. func (x *VipRechargeInfo) ProtoReflect() protoreflect.Message {
  1602. mi := &file_user_proto_msgTypes[31]
  1603. if protoimpl.UnsafeEnabled && x != nil {
  1604. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1605. if ms.LoadMessageInfo() == nil {
  1606. ms.StoreMessageInfo(mi)
  1607. }
  1608. return ms
  1609. }
  1610. return mi.MessageOf(x)
  1611. }
  1612. // Deprecated: Use VipRechargeInfo.ProtoReflect.Descriptor instead.
  1613. func (*VipRechargeInfo) Descriptor() ([]byte, []int) {
  1614. return file_user_proto_rawDescGZIP(), []int{31}
  1615. }
  1616. func (x *VipRechargeInfo) GetId() int64 {
  1617. if x != nil {
  1618. return x.Id
  1619. }
  1620. return 0
  1621. }
  1622. func (x *VipRechargeInfo) GetLabel() string {
  1623. if x != nil {
  1624. return x.Label
  1625. }
  1626. return ""
  1627. }
  1628. func (x *VipRechargeInfo) GetPrice() int64 {
  1629. if x != nil {
  1630. return x.Price
  1631. }
  1632. return 0
  1633. }
  1634. func (x *VipRechargeInfo) GetOriginPrice() int64 {
  1635. if x != nil {
  1636. return x.OriginPrice
  1637. }
  1638. return 0
  1639. }
  1640. func (x *VipRechargeInfo) GetAveragePerDayPrice() int64 {
  1641. if x != nil {
  1642. return x.AveragePerDayPrice
  1643. }
  1644. return 0
  1645. }
  1646. func (x *VipRechargeInfo) GetAdditionalCoin() int64 {
  1647. if x != nil {
  1648. return x.AdditionalCoin
  1649. }
  1650. return 0
  1651. }
  1652. func (x *VipRechargeInfo) GetDescription() string {
  1653. if x != nil {
  1654. return x.Description
  1655. }
  1656. return ""
  1657. }
  1658. type RechargeInfo struct {
  1659. state protoimpl.MessageState
  1660. sizeCache protoimpl.SizeCache
  1661. unknownFields protoimpl.UnknownFields
  1662. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1663. Price int64 `protobuf:"varint,2,opt,name=price,proto3" json:"price"`
  1664. Credit int64 `protobuf:"varint,3,opt,name=credit,proto3" json:"credit"` // 积分
  1665. GiveCredit int64 `protobuf:"varint,4,opt,name=giveCredit,proto3" json:"giveCredit"` // 赠送的积分
  1666. Description string `protobuf:"bytes,5,opt,name=description,proto3" json:"description"` // 描述
  1667. Title string `protobuf:"bytes,6,opt,name=title,proto3" json:"title"` // 标题
  1668. }
  1669. func (x *RechargeInfo) Reset() {
  1670. *x = RechargeInfo{}
  1671. if protoimpl.UnsafeEnabled {
  1672. mi := &file_user_proto_msgTypes[32]
  1673. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1674. ms.StoreMessageInfo(mi)
  1675. }
  1676. }
  1677. func (x *RechargeInfo) String() string {
  1678. return protoimpl.X.MessageStringOf(x)
  1679. }
  1680. func (*RechargeInfo) ProtoMessage() {}
  1681. func (x *RechargeInfo) ProtoReflect() protoreflect.Message {
  1682. mi := &file_user_proto_msgTypes[32]
  1683. if protoimpl.UnsafeEnabled && x != nil {
  1684. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1685. if ms.LoadMessageInfo() == nil {
  1686. ms.StoreMessageInfo(mi)
  1687. }
  1688. return ms
  1689. }
  1690. return mi.MessageOf(x)
  1691. }
  1692. // Deprecated: Use RechargeInfo.ProtoReflect.Descriptor instead.
  1693. func (*RechargeInfo) Descriptor() ([]byte, []int) {
  1694. return file_user_proto_rawDescGZIP(), []int{32}
  1695. }
  1696. func (x *RechargeInfo) GetId() int64 {
  1697. if x != nil {
  1698. return x.Id
  1699. }
  1700. return 0
  1701. }
  1702. func (x *RechargeInfo) GetPrice() int64 {
  1703. if x != nil {
  1704. return x.Price
  1705. }
  1706. return 0
  1707. }
  1708. func (x *RechargeInfo) GetCredit() int64 {
  1709. if x != nil {
  1710. return x.Credit
  1711. }
  1712. return 0
  1713. }
  1714. func (x *RechargeInfo) GetGiveCredit() int64 {
  1715. if x != nil {
  1716. return x.GiveCredit
  1717. }
  1718. return 0
  1719. }
  1720. func (x *RechargeInfo) GetDescription() string {
  1721. if x != nil {
  1722. return x.Description
  1723. }
  1724. return ""
  1725. }
  1726. func (x *RechargeInfo) GetTitle() string {
  1727. if x != nil {
  1728. return x.Title
  1729. }
  1730. return ""
  1731. }
  1732. type InformationStatus struct {
  1733. state protoimpl.MessageState
  1734. sizeCache protoimpl.SizeCache
  1735. unknownFields protoimpl.UnknownFields
  1736. IsFinishInformation bool `protobuf:"varint,1,opt,name=isFinishInformation,proto3" json:"isFinishInformation"` //是否完善资料
  1737. IsGetAward bool `protobuf:"varint,2,opt,name=isGetAward,proto3" json:"isGetAward"` // 是否领取奖励
  1738. Credit int64 `protobuf:"varint,3,opt,name=credit,proto3" json:"credit"` // 奖励的金额
  1739. }
  1740. func (x *InformationStatus) Reset() {
  1741. *x = InformationStatus{}
  1742. if protoimpl.UnsafeEnabled {
  1743. mi := &file_user_proto_msgTypes[33]
  1744. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1745. ms.StoreMessageInfo(mi)
  1746. }
  1747. }
  1748. func (x *InformationStatus) String() string {
  1749. return protoimpl.X.MessageStringOf(x)
  1750. }
  1751. func (*InformationStatus) ProtoMessage() {}
  1752. func (x *InformationStatus) ProtoReflect() protoreflect.Message {
  1753. mi := &file_user_proto_msgTypes[33]
  1754. if protoimpl.UnsafeEnabled && x != nil {
  1755. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1756. if ms.LoadMessageInfo() == nil {
  1757. ms.StoreMessageInfo(mi)
  1758. }
  1759. return ms
  1760. }
  1761. return mi.MessageOf(x)
  1762. }
  1763. // Deprecated: Use InformationStatus.ProtoReflect.Descriptor instead.
  1764. func (*InformationStatus) Descriptor() ([]byte, []int) {
  1765. return file_user_proto_rawDescGZIP(), []int{33}
  1766. }
  1767. func (x *InformationStatus) GetIsFinishInformation() bool {
  1768. if x != nil {
  1769. return x.IsFinishInformation
  1770. }
  1771. return false
  1772. }
  1773. func (x *InformationStatus) GetIsGetAward() bool {
  1774. if x != nil {
  1775. return x.IsGetAward
  1776. }
  1777. return false
  1778. }
  1779. func (x *InformationStatus) GetCredit() int64 {
  1780. if x != nil {
  1781. return x.Credit
  1782. }
  1783. return 0
  1784. }
  1785. type UserBalance struct {
  1786. state protoimpl.MessageState
  1787. sizeCache protoimpl.SizeCache
  1788. unknownFields protoimpl.UnknownFields
  1789. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  1790. Credit int64 `protobuf:"varint,2,opt,name=credit,proto3" json:"credit"` // 积分
  1791. }
  1792. func (x *UserBalance) Reset() {
  1793. *x = UserBalance{}
  1794. if protoimpl.UnsafeEnabled {
  1795. mi := &file_user_proto_msgTypes[34]
  1796. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1797. ms.StoreMessageInfo(mi)
  1798. }
  1799. }
  1800. func (x *UserBalance) String() string {
  1801. return protoimpl.X.MessageStringOf(x)
  1802. }
  1803. func (*UserBalance) ProtoMessage() {}
  1804. func (x *UserBalance) ProtoReflect() protoreflect.Message {
  1805. mi := &file_user_proto_msgTypes[34]
  1806. if protoimpl.UnsafeEnabled && x != nil {
  1807. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1808. if ms.LoadMessageInfo() == nil {
  1809. ms.StoreMessageInfo(mi)
  1810. }
  1811. return ms
  1812. }
  1813. return mi.MessageOf(x)
  1814. }
  1815. // Deprecated: Use UserBalance.ProtoReflect.Descriptor instead.
  1816. func (*UserBalance) Descriptor() ([]byte, []int) {
  1817. return file_user_proto_rawDescGZIP(), []int{34}
  1818. }
  1819. func (x *UserBalance) GetId() string {
  1820. if x != nil {
  1821. return x.Id
  1822. }
  1823. return ""
  1824. }
  1825. func (x *UserBalance) GetCredit() int64 {
  1826. if x != nil {
  1827. return x.Credit
  1828. }
  1829. return 0
  1830. }
  1831. type UserFindChatListReply struct {
  1832. state protoimpl.MessageState
  1833. sizeCache protoimpl.SizeCache
  1834. unknownFields protoimpl.UnknownFields
  1835. List []*UserChatInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1836. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  1837. }
  1838. func (x *UserFindChatListReply) Reset() {
  1839. *x = UserFindChatListReply{}
  1840. if protoimpl.UnsafeEnabled {
  1841. mi := &file_user_proto_msgTypes[35]
  1842. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1843. ms.StoreMessageInfo(mi)
  1844. }
  1845. }
  1846. func (x *UserFindChatListReply) String() string {
  1847. return protoimpl.X.MessageStringOf(x)
  1848. }
  1849. func (*UserFindChatListReply) ProtoMessage() {}
  1850. func (x *UserFindChatListReply) ProtoReflect() protoreflect.Message {
  1851. mi := &file_user_proto_msgTypes[35]
  1852. if protoimpl.UnsafeEnabled && x != nil {
  1853. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1854. if ms.LoadMessageInfo() == nil {
  1855. ms.StoreMessageInfo(mi)
  1856. }
  1857. return ms
  1858. }
  1859. return mi.MessageOf(x)
  1860. }
  1861. // Deprecated: Use UserFindChatListReply.ProtoReflect.Descriptor instead.
  1862. func (*UserFindChatListReply) Descriptor() ([]byte, []int) {
  1863. return file_user_proto_rawDescGZIP(), []int{35}
  1864. }
  1865. func (x *UserFindChatListReply) GetList() []*UserChatInfo {
  1866. if x != nil {
  1867. return x.List
  1868. }
  1869. return make([]*UserChatInfo, 0)
  1870. }
  1871. func (x *UserFindChatListReply) GetNextId() int64 {
  1872. if x != nil {
  1873. return x.NextId
  1874. }
  1875. return 0
  1876. }
  1877. type UserChatInfo struct {
  1878. state protoimpl.MessageState
  1879. sizeCache protoimpl.SizeCache
  1880. unknownFields protoimpl.UnknownFields
  1881. PersonId string `protobuf:"bytes,2,opt,name=personId,proto3" json:"personId"` // 用户ID
  1882. UnreadNum int64 `protobuf:"varint,3,opt,name=unreadNum,proto3" json:"unreadNum"` // 用户未读数
  1883. LastContent string `protobuf:"bytes,4,opt,name=lastContent,proto3" json:"lastContent"` // 上次发送内容
  1884. LastTime int64 `protobuf:"varint,5,opt,name=lastTime,proto3" json:"lastTime"` // 上次发送时间
  1885. Likeability int64 `protobuf:"varint,6,opt,name=likeability,proto3" json:"likeability"` // 好感度
  1886. Sex int64 `protobuf:"varint,8,opt,name=sex,proto3" json:"sex"` // 性别
  1887. AvatarUrl string `protobuf:"bytes,9,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像
  1888. Nickname string `protobuf:"bytes,10,opt,name=nickname,proto3" json:"nickname"` // 昵称
  1889. Age int64 `protobuf:"varint,11,opt,name=age,proto3" json:"age"` // 年龄
  1890. RoomId int64 `protobuf:"varint,12,opt,name=roomId,proto3" json:"roomId"` // 房间号ID
  1891. IsVip bool `protobuf:"varint,15,opt,name=isVip,proto3" json:"isVip"` // 是否是Vip
  1892. VipLevel int64 `protobuf:"varint,16,opt,name=vipLevel,proto3" json:"vipLevel"` // vip等级
  1893. IsYearVip bool `protobuf:"varint,17,opt,name=isYearVip,proto3" json:"isYearVip"` // 是否是年费Vip
  1894. VipFunctions []string `protobuf:"bytes,18,rep,name=vipFunctions,proto3" json:"vipFunctions"` // vip功能
  1895. }
  1896. func (x *UserChatInfo) Reset() {
  1897. *x = UserChatInfo{}
  1898. if protoimpl.UnsafeEnabled {
  1899. mi := &file_user_proto_msgTypes[36]
  1900. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1901. ms.StoreMessageInfo(mi)
  1902. }
  1903. }
  1904. func (x *UserChatInfo) String() string {
  1905. return protoimpl.X.MessageStringOf(x)
  1906. }
  1907. func (*UserChatInfo) ProtoMessage() {}
  1908. func (x *UserChatInfo) ProtoReflect() protoreflect.Message {
  1909. mi := &file_user_proto_msgTypes[36]
  1910. if protoimpl.UnsafeEnabled && x != nil {
  1911. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1912. if ms.LoadMessageInfo() == nil {
  1913. ms.StoreMessageInfo(mi)
  1914. }
  1915. return ms
  1916. }
  1917. return mi.MessageOf(x)
  1918. }
  1919. // Deprecated: Use UserChatInfo.ProtoReflect.Descriptor instead.
  1920. func (*UserChatInfo) Descriptor() ([]byte, []int) {
  1921. return file_user_proto_rawDescGZIP(), []int{36}
  1922. }
  1923. func (x *UserChatInfo) GetPersonId() string {
  1924. if x != nil {
  1925. return x.PersonId
  1926. }
  1927. return ""
  1928. }
  1929. func (x *UserChatInfo) GetUnreadNum() int64 {
  1930. if x != nil {
  1931. return x.UnreadNum
  1932. }
  1933. return 0
  1934. }
  1935. func (x *UserChatInfo) GetLastContent() string {
  1936. if x != nil {
  1937. return x.LastContent
  1938. }
  1939. return ""
  1940. }
  1941. func (x *UserChatInfo) GetLastTime() int64 {
  1942. if x != nil {
  1943. return x.LastTime
  1944. }
  1945. return 0
  1946. }
  1947. func (x *UserChatInfo) GetLikeability() int64 {
  1948. if x != nil {
  1949. return x.Likeability
  1950. }
  1951. return 0
  1952. }
  1953. func (x *UserChatInfo) GetSex() int64 {
  1954. if x != nil {
  1955. return x.Sex
  1956. }
  1957. return 0
  1958. }
  1959. func (x *UserChatInfo) GetAvatarUrl() string {
  1960. if x != nil {
  1961. return x.AvatarUrl
  1962. }
  1963. return ""
  1964. }
  1965. func (x *UserChatInfo) GetNickname() string {
  1966. if x != nil {
  1967. return x.Nickname
  1968. }
  1969. return ""
  1970. }
  1971. func (x *UserChatInfo) GetAge() int64 {
  1972. if x != nil {
  1973. return x.Age
  1974. }
  1975. return 0
  1976. }
  1977. func (x *UserChatInfo) GetRoomId() int64 {
  1978. if x != nil {
  1979. return x.RoomId
  1980. }
  1981. return 0
  1982. }
  1983. func (x *UserChatInfo) GetIsVip() bool {
  1984. if x != nil {
  1985. return x.IsVip
  1986. }
  1987. return false
  1988. }
  1989. func (x *UserChatInfo) GetVipLevel() int64 {
  1990. if x != nil {
  1991. return x.VipLevel
  1992. }
  1993. return 0
  1994. }
  1995. func (x *UserChatInfo) GetIsYearVip() bool {
  1996. if x != nil {
  1997. return x.IsYearVip
  1998. }
  1999. return false
  2000. }
  2001. func (x *UserChatInfo) GetVipFunctions() []string {
  2002. if x != nil {
  2003. return x.VipFunctions
  2004. }
  2005. return make([]string, 0)
  2006. }
  2007. type UserInfo struct {
  2008. state protoimpl.MessageState
  2009. sizeCache protoimpl.SizeCache
  2010. unknownFields protoimpl.UnknownFields
  2011. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  2012. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  2013. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  2014. Age int64 `protobuf:"varint,4,opt,name=age,proto3" json:"age"` // 年龄
  2015. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  2016. Constellation string `protobuf:"bytes,6,opt,name=constellation,proto3" json:"constellation"` // 星座
  2017. Credit int64 `protobuf:"varint,7,opt,name=credit,proto3" json:"credit"` // 积分
  2018. TagList []int64 `protobuf:"varint,8,rep,packed,name=tagList,proto3" json:"tagList"` // 标签
  2019. Signature string `protobuf:"bytes,9,opt,name=signature,proto3" json:"signature"` // 签名
  2020. IntroduceVoice string `protobuf:"bytes,10,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
  2021. Province string `protobuf:"bytes,11,opt,name=province,proto3" json:"province"` // 省
  2022. City string `protobuf:"bytes,12,opt,name=city,proto3" json:"city"` // 市
  2023. Area string `protobuf:"bytes,13,opt,name=area,proto3" json:"area"` // 区
  2024. UserId int64 `protobuf:"varint,14,opt,name=userId,proto3" json:"userId"` // 用户ID
  2025. IsBlack bool `protobuf:"varint,15,opt,name=isBlack,proto3" json:"isBlack"` // 是否被封号
  2026. IsRegister bool `protobuf:"varint,16,opt,name=isRegister,proto3" json:"isRegister"` // 是否注册
  2027. UpdateNicknameNum int64 `protobuf:"varint,17,opt,name=UpdateNicknameNum,proto3" json:"UpdateNicknameNum"` // 今日更新昵称数
  2028. UpdateAvatarUrlNum int64 `protobuf:"varint,18,opt,name=UpdateAvatarUrlNum,proto3" json:"UpdateAvatarUrlNum"` // 今日更新头像数
  2029. UpdatePicturesNum int64 `protobuf:"varint,19,opt,name=UpdatePicturesNum,proto3" json:"UpdatePicturesNum"` // 今日更新相册数
  2030. UpdateSignatureNum int64 `protobuf:"varint,20,opt,name=UpdateSignatureNum,proto3" json:"UpdateSignatureNum"` // 今日更新签名数
  2031. }
  2032. func (x *UserInfo) Reset() {
  2033. *x = UserInfo{}
  2034. if protoimpl.UnsafeEnabled {
  2035. mi := &file_user_proto_msgTypes[37]
  2036. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2037. ms.StoreMessageInfo(mi)
  2038. }
  2039. }
  2040. func (x *UserInfo) String() string {
  2041. return protoimpl.X.MessageStringOf(x)
  2042. }
  2043. func (*UserInfo) ProtoMessage() {}
  2044. func (x *UserInfo) ProtoReflect() protoreflect.Message {
  2045. mi := &file_user_proto_msgTypes[37]
  2046. if protoimpl.UnsafeEnabled && x != nil {
  2047. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2048. if ms.LoadMessageInfo() == nil {
  2049. ms.StoreMessageInfo(mi)
  2050. }
  2051. return ms
  2052. }
  2053. return mi.MessageOf(x)
  2054. }
  2055. // Deprecated: Use UserInfo.ProtoReflect.Descriptor instead.
  2056. func (*UserInfo) Descriptor() ([]byte, []int) {
  2057. return file_user_proto_rawDescGZIP(), []int{37}
  2058. }
  2059. func (x *UserInfo) GetId() string {
  2060. if x != nil {
  2061. return x.Id
  2062. }
  2063. return ""
  2064. }
  2065. func (x *UserInfo) GetNickname() string {
  2066. if x != nil {
  2067. return x.Nickname
  2068. }
  2069. return ""
  2070. }
  2071. func (x *UserInfo) GetAvatarUrl() string {
  2072. if x != nil {
  2073. return x.AvatarUrl
  2074. }
  2075. return ""
  2076. }
  2077. func (x *UserInfo) GetAge() int64 {
  2078. if x != nil {
  2079. return x.Age
  2080. }
  2081. return 0
  2082. }
  2083. func (x *UserInfo) GetSex() int64 {
  2084. if x != nil {
  2085. return x.Sex
  2086. }
  2087. return 0
  2088. }
  2089. func (x *UserInfo) GetConstellation() string {
  2090. if x != nil {
  2091. return x.Constellation
  2092. }
  2093. return ""
  2094. }
  2095. func (x *UserInfo) GetCredit() int64 {
  2096. if x != nil {
  2097. return x.Credit
  2098. }
  2099. return 0
  2100. }
  2101. func (x *UserInfo) GetTagList() []int64 {
  2102. if x != nil {
  2103. return x.TagList
  2104. }
  2105. return make([]int64, 0)
  2106. }
  2107. func (x *UserInfo) GetSignature() string {
  2108. if x != nil {
  2109. return x.Signature
  2110. }
  2111. return ""
  2112. }
  2113. func (x *UserInfo) GetIntroduceVoice() string {
  2114. if x != nil {
  2115. return x.IntroduceVoice
  2116. }
  2117. return ""
  2118. }
  2119. func (x *UserInfo) GetProvince() string {
  2120. if x != nil {
  2121. return x.Province
  2122. }
  2123. return ""
  2124. }
  2125. func (x *UserInfo) GetCity() string {
  2126. if x != nil {
  2127. return x.City
  2128. }
  2129. return ""
  2130. }
  2131. func (x *UserInfo) GetArea() string {
  2132. if x != nil {
  2133. return x.Area
  2134. }
  2135. return ""
  2136. }
  2137. func (x *UserInfo) GetUserId() int64 {
  2138. if x != nil {
  2139. return x.UserId
  2140. }
  2141. return 0
  2142. }
  2143. func (x *UserInfo) GetIsBlack() bool {
  2144. if x != nil {
  2145. return x.IsBlack
  2146. }
  2147. return false
  2148. }
  2149. func (x *UserInfo) GetIsRegister() bool {
  2150. if x != nil {
  2151. return x.IsRegister
  2152. }
  2153. return false
  2154. }
  2155. func (x *UserInfo) GetUpdateNicknameNum() int64 {
  2156. if x != nil {
  2157. return x.UpdateNicknameNum
  2158. }
  2159. return 0
  2160. }
  2161. func (x *UserInfo) GetUpdateAvatarUrlNum() int64 {
  2162. if x != nil {
  2163. return x.UpdateAvatarUrlNum
  2164. }
  2165. return 0
  2166. }
  2167. func (x *UserInfo) GetUpdatePicturesNum() int64 {
  2168. if x != nil {
  2169. return x.UpdatePicturesNum
  2170. }
  2171. return 0
  2172. }
  2173. func (x *UserInfo) GetUpdateSignatureNum() int64 {
  2174. if x != nil {
  2175. return x.UpdateSignatureNum
  2176. }
  2177. return 0
  2178. }
  2179. type KeyRequest struct {
  2180. state protoimpl.MessageState
  2181. sizeCache protoimpl.SizeCache
  2182. unknownFields protoimpl.UnknownFields
  2183. Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key"`
  2184. }
  2185. func (x *KeyRequest) Reset() {
  2186. *x = KeyRequest{}
  2187. if protoimpl.UnsafeEnabled {
  2188. mi := &file_user_proto_msgTypes[38]
  2189. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2190. ms.StoreMessageInfo(mi)
  2191. }
  2192. }
  2193. func (x *KeyRequest) String() string {
  2194. return protoimpl.X.MessageStringOf(x)
  2195. }
  2196. func (*KeyRequest) ProtoMessage() {}
  2197. func (x *KeyRequest) ProtoReflect() protoreflect.Message {
  2198. mi := &file_user_proto_msgTypes[38]
  2199. if protoimpl.UnsafeEnabled && x != nil {
  2200. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2201. if ms.LoadMessageInfo() == nil {
  2202. ms.StoreMessageInfo(mi)
  2203. }
  2204. return ms
  2205. }
  2206. return mi.MessageOf(x)
  2207. }
  2208. // Deprecated: Use KeyRequest.ProtoReflect.Descriptor instead.
  2209. func (*KeyRequest) Descriptor() ([]byte, []int) {
  2210. return file_user_proto_rawDescGZIP(), []int{38}
  2211. }
  2212. func (x *KeyRequest) GetKey() string {
  2213. if x != nil {
  2214. return x.Key
  2215. }
  2216. return ""
  2217. }
  2218. type CreatePayRequest struct {
  2219. state protoimpl.MessageState
  2220. sizeCache protoimpl.SizeCache
  2221. unknownFields protoimpl.UnknownFields
  2222. Money int64 `protobuf:"varint,1,opt,name=money,proto3" json:"money"` // 支付金额 单位 分
  2223. Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type"` // 类型
  2224. OpenId string `protobuf:"bytes,3,opt,name=openId,proto3" json:"openId"`
  2225. Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description"`
  2226. Attach string `protobuf:"bytes,5,opt,name=attach,proto3" json:"attach"`
  2227. }
  2228. func (x *CreatePayRequest) Reset() {
  2229. *x = CreatePayRequest{}
  2230. if protoimpl.UnsafeEnabled {
  2231. mi := &file_user_proto_msgTypes[39]
  2232. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2233. ms.StoreMessageInfo(mi)
  2234. }
  2235. }
  2236. func (x *CreatePayRequest) String() string {
  2237. return protoimpl.X.MessageStringOf(x)
  2238. }
  2239. func (*CreatePayRequest) ProtoMessage() {}
  2240. func (x *CreatePayRequest) ProtoReflect() protoreflect.Message {
  2241. mi := &file_user_proto_msgTypes[39]
  2242. if protoimpl.UnsafeEnabled && x != nil {
  2243. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2244. if ms.LoadMessageInfo() == nil {
  2245. ms.StoreMessageInfo(mi)
  2246. }
  2247. return ms
  2248. }
  2249. return mi.MessageOf(x)
  2250. }
  2251. // Deprecated: Use CreatePayRequest.ProtoReflect.Descriptor instead.
  2252. func (*CreatePayRequest) Descriptor() ([]byte, []int) {
  2253. return file_user_proto_rawDescGZIP(), []int{39}
  2254. }
  2255. func (x *CreatePayRequest) GetMoney() int64 {
  2256. if x != nil {
  2257. return x.Money
  2258. }
  2259. return 0
  2260. }
  2261. func (x *CreatePayRequest) GetType() string {
  2262. if x != nil {
  2263. return x.Type
  2264. }
  2265. return ""
  2266. }
  2267. func (x *CreatePayRequest) GetOpenId() string {
  2268. if x != nil {
  2269. return x.OpenId
  2270. }
  2271. return ""
  2272. }
  2273. func (x *CreatePayRequest) GetDescription() string {
  2274. if x != nil {
  2275. return x.Description
  2276. }
  2277. return ""
  2278. }
  2279. func (x *CreatePayRequest) GetAttach() string {
  2280. if x != nil {
  2281. return x.Attach
  2282. }
  2283. return ""
  2284. }
  2285. type PayInfo struct {
  2286. state protoimpl.MessageState
  2287. sizeCache protoimpl.SizeCache
  2288. unknownFields protoimpl.UnknownFields
  2289. PayInfo *structpb.Value `protobuf:"bytes,1,opt,name=payInfo,proto3" json:"payInfo"`
  2290. OrderId int64 `protobuf:"varint,2,opt,name=orderId,proto3" json:"orderId"`
  2291. }
  2292. func (x *PayInfo) Reset() {
  2293. *x = PayInfo{}
  2294. if protoimpl.UnsafeEnabled {
  2295. mi := &file_user_proto_msgTypes[40]
  2296. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2297. ms.StoreMessageInfo(mi)
  2298. }
  2299. }
  2300. func (x *PayInfo) String() string {
  2301. return protoimpl.X.MessageStringOf(x)
  2302. }
  2303. func (*PayInfo) ProtoMessage() {}
  2304. func (x *PayInfo) ProtoReflect() protoreflect.Message {
  2305. mi := &file_user_proto_msgTypes[40]
  2306. if protoimpl.UnsafeEnabled && x != nil {
  2307. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2308. if ms.LoadMessageInfo() == nil {
  2309. ms.StoreMessageInfo(mi)
  2310. }
  2311. return ms
  2312. }
  2313. return mi.MessageOf(x)
  2314. }
  2315. // Deprecated: Use PayInfo.ProtoReflect.Descriptor instead.
  2316. func (*PayInfo) Descriptor() ([]byte, []int) {
  2317. return file_user_proto_rawDescGZIP(), []int{40}
  2318. }
  2319. func (x *PayInfo) GetPayInfo() *structpb.Value {
  2320. if x != nil && x.PayInfo != nil {
  2321. return x.PayInfo
  2322. }
  2323. return &structpb.Value{}
  2324. }
  2325. func (x *PayInfo) GetOrderId() int64 {
  2326. if x != nil {
  2327. return x.OrderId
  2328. }
  2329. return 0
  2330. }
  2331. type PayOrderInfo struct {
  2332. state protoimpl.MessageState
  2333. sizeCache protoimpl.SizeCache
  2334. unknownFields protoimpl.UnknownFields
  2335. UserID string `protobuf:"bytes,1,opt,name=userID,proto3" json:"userID"`
  2336. OrderID int64 `protobuf:"varint,2,opt,name=orderID,proto3" json:"orderID"` // 订单的唯一ID
  2337. Money int64 `protobuf:"varint,3,opt,name=money,proto3" json:"money"` // 支付金额 ,单位分
  2338. Type string `protobuf:"bytes,4,opt,name=type,proto3" json:"type"` // 类型
  2339. TransactionID string `protobuf:"bytes,5,opt,name=TransactionID,proto3" json:"TransactionID"`
  2340. OpenId string `protobuf:"bytes,6,opt,name=openId,proto3" json:"openId"`
  2341. Description string `protobuf:"bytes,7,opt,name=description,proto3" json:"description"`
  2342. Status string `protobuf:"bytes,9,opt,name=status,proto3" json:"status"` // 状态
  2343. PayTime int64 `protobuf:"varint,10,opt,name=payTime,proto3" json:"payTime"` // 支付时间
  2344. CreateTime int64 `protobuf:"varint,11,opt,name=createTime,proto3" json:"createTime"` // 创建时间
  2345. }
  2346. func (x *PayOrderInfo) Reset() {
  2347. *x = PayOrderInfo{}
  2348. if protoimpl.UnsafeEnabled {
  2349. mi := &file_user_proto_msgTypes[41]
  2350. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2351. ms.StoreMessageInfo(mi)
  2352. }
  2353. }
  2354. func (x *PayOrderInfo) String() string {
  2355. return protoimpl.X.MessageStringOf(x)
  2356. }
  2357. func (*PayOrderInfo) ProtoMessage() {}
  2358. func (x *PayOrderInfo) ProtoReflect() protoreflect.Message {
  2359. mi := &file_user_proto_msgTypes[41]
  2360. if protoimpl.UnsafeEnabled && x != nil {
  2361. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2362. if ms.LoadMessageInfo() == nil {
  2363. ms.StoreMessageInfo(mi)
  2364. }
  2365. return ms
  2366. }
  2367. return mi.MessageOf(x)
  2368. }
  2369. // Deprecated: Use PayOrderInfo.ProtoReflect.Descriptor instead.
  2370. func (*PayOrderInfo) Descriptor() ([]byte, []int) {
  2371. return file_user_proto_rawDescGZIP(), []int{41}
  2372. }
  2373. func (x *PayOrderInfo) GetUserID() string {
  2374. if x != nil {
  2375. return x.UserID
  2376. }
  2377. return ""
  2378. }
  2379. func (x *PayOrderInfo) GetOrderID() int64 {
  2380. if x != nil {
  2381. return x.OrderID
  2382. }
  2383. return 0
  2384. }
  2385. func (x *PayOrderInfo) GetMoney() int64 {
  2386. if x != nil {
  2387. return x.Money
  2388. }
  2389. return 0
  2390. }
  2391. func (x *PayOrderInfo) GetType() string {
  2392. if x != nil {
  2393. return x.Type
  2394. }
  2395. return ""
  2396. }
  2397. func (x *PayOrderInfo) GetTransactionID() string {
  2398. if x != nil {
  2399. return x.TransactionID
  2400. }
  2401. return ""
  2402. }
  2403. func (x *PayOrderInfo) GetOpenId() string {
  2404. if x != nil {
  2405. return x.OpenId
  2406. }
  2407. return ""
  2408. }
  2409. func (x *PayOrderInfo) GetDescription() string {
  2410. if x != nil {
  2411. return x.Description
  2412. }
  2413. return ""
  2414. }
  2415. func (x *PayOrderInfo) GetStatus() string {
  2416. if x != nil {
  2417. return x.Status
  2418. }
  2419. return ""
  2420. }
  2421. func (x *PayOrderInfo) GetPayTime() int64 {
  2422. if x != nil {
  2423. return x.PayTime
  2424. }
  2425. return 0
  2426. }
  2427. func (x *PayOrderInfo) GetCreateTime() int64 {
  2428. if x != nil {
  2429. return x.CreateTime
  2430. }
  2431. return 0
  2432. }
  2433. type PayOrderList struct {
  2434. state protoimpl.MessageState
  2435. sizeCache protoimpl.SizeCache
  2436. unknownFields protoimpl.UnknownFields
  2437. List []*PayOrderInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  2438. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  2439. }
  2440. func (x *PayOrderList) Reset() {
  2441. *x = PayOrderList{}
  2442. if protoimpl.UnsafeEnabled {
  2443. mi := &file_user_proto_msgTypes[42]
  2444. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2445. ms.StoreMessageInfo(mi)
  2446. }
  2447. }
  2448. func (x *PayOrderList) String() string {
  2449. return protoimpl.X.MessageStringOf(x)
  2450. }
  2451. func (*PayOrderList) ProtoMessage() {}
  2452. func (x *PayOrderList) ProtoReflect() protoreflect.Message {
  2453. mi := &file_user_proto_msgTypes[42]
  2454. if protoimpl.UnsafeEnabled && x != nil {
  2455. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2456. if ms.LoadMessageInfo() == nil {
  2457. ms.StoreMessageInfo(mi)
  2458. }
  2459. return ms
  2460. }
  2461. return mi.MessageOf(x)
  2462. }
  2463. // Deprecated: Use PayOrderList.ProtoReflect.Descriptor instead.
  2464. func (*PayOrderList) Descriptor() ([]byte, []int) {
  2465. return file_user_proto_rawDescGZIP(), []int{42}
  2466. }
  2467. func (x *PayOrderList) GetList() []*PayOrderInfo {
  2468. if x != nil {
  2469. return x.List
  2470. }
  2471. return make([]*PayOrderInfo, 0)
  2472. }
  2473. func (x *PayOrderList) GetNextId() int64 {
  2474. if x != nil {
  2475. return x.NextId
  2476. }
  2477. return 0
  2478. }
  2479. type FindPayOrderListRequest struct {
  2480. state protoimpl.MessageState
  2481. sizeCache protoimpl.SizeCache
  2482. unknownFields protoimpl.UnknownFields
  2483. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  2484. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  2485. Status string `protobuf:"bytes,3,opt,name=status,proto3" json:"status"`
  2486. }
  2487. func (x *FindPayOrderListRequest) Reset() {
  2488. *x = FindPayOrderListRequest{}
  2489. if protoimpl.UnsafeEnabled {
  2490. mi := &file_user_proto_msgTypes[43]
  2491. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2492. ms.StoreMessageInfo(mi)
  2493. }
  2494. }
  2495. func (x *FindPayOrderListRequest) String() string {
  2496. return protoimpl.X.MessageStringOf(x)
  2497. }
  2498. func (*FindPayOrderListRequest) ProtoMessage() {}
  2499. func (x *FindPayOrderListRequest) ProtoReflect() protoreflect.Message {
  2500. mi := &file_user_proto_msgTypes[43]
  2501. if protoimpl.UnsafeEnabled && x != nil {
  2502. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2503. if ms.LoadMessageInfo() == nil {
  2504. ms.StoreMessageInfo(mi)
  2505. }
  2506. return ms
  2507. }
  2508. return mi.MessageOf(x)
  2509. }
  2510. // Deprecated: Use FindPayOrderListRequest.ProtoReflect.Descriptor instead.
  2511. func (*FindPayOrderListRequest) Descriptor() ([]byte, []int) {
  2512. return file_user_proto_rawDescGZIP(), []int{43}
  2513. }
  2514. func (x *FindPayOrderListRequest) GetNextId() int64 {
  2515. if x != nil {
  2516. return x.NextId
  2517. }
  2518. return 0
  2519. }
  2520. func (x *FindPayOrderListRequest) GetOffset() int64 {
  2521. if x != nil {
  2522. return x.Offset
  2523. }
  2524. return 0
  2525. }
  2526. func (x *FindPayOrderListRequest) GetStatus() string {
  2527. if x != nil {
  2528. return x.Status
  2529. }
  2530. return ""
  2531. }
  2532. type PayCallbackReply struct {
  2533. state protoimpl.MessageState
  2534. sizeCache protoimpl.SizeCache
  2535. unknownFields protoimpl.UnknownFields
  2536. Result []byte `protobuf:"bytes,1,opt,name=result,proto3" json:"result"`
  2537. }
  2538. func (x *PayCallbackReply) Reset() {
  2539. *x = PayCallbackReply{}
  2540. if protoimpl.UnsafeEnabled {
  2541. mi := &file_user_proto_msgTypes[44]
  2542. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2543. ms.StoreMessageInfo(mi)
  2544. }
  2545. }
  2546. func (x *PayCallbackReply) String() string {
  2547. return protoimpl.X.MessageStringOf(x)
  2548. }
  2549. func (*PayCallbackReply) ProtoMessage() {}
  2550. func (x *PayCallbackReply) ProtoReflect() protoreflect.Message {
  2551. mi := &file_user_proto_msgTypes[44]
  2552. if protoimpl.UnsafeEnabled && x != nil {
  2553. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2554. if ms.LoadMessageInfo() == nil {
  2555. ms.StoreMessageInfo(mi)
  2556. }
  2557. return ms
  2558. }
  2559. return mi.MessageOf(x)
  2560. }
  2561. // Deprecated: Use PayCallbackReply.ProtoReflect.Descriptor instead.
  2562. func (*PayCallbackReply) Descriptor() ([]byte, []int) {
  2563. return file_user_proto_rawDescGZIP(), []int{44}
  2564. }
  2565. func (x *PayCallbackReply) GetResult() []byte {
  2566. if x != nil {
  2567. return x.Result
  2568. }
  2569. return make([]byte, 0)
  2570. }
  2571. var File_user_proto protoreflect.FileDescriptor
  2572. var file_user_proto_rawDesc = []byte{
  2573. 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x08, 0x61, 0x70,
  2574. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
  2575. 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70,
  2576. 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f,
  2577. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2578. 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  2579. 0x75, 0x66, 0x2f, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
  2580. 0x13, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x70,
  2581. 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2582. 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x61,
  2583. 0x70, 0x69, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2f, 0x73, 0x74,
  2584. 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x4f,
  2585. 0x0a, 0x1b, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x6f, 0x6b, 0x48, 0x61, 0x6e,
  2586. 0x64, 0x50, 0x69, 0x63, 0x6b, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x10, 0x0a,
  2587. 0x03, 0x6e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75, 0x6d, 0x12,
  2588. 0x1e, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20,
  2589. 0x03, 0x28, 0x09, 0x52, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x22,
  2590. 0xac, 0x01, 0x0a, 0x16, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x56, 0x69, 0x70, 0x4c,
  2591. 0x69, 0x73, 0x74, 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x44, 0x0a, 0x06, 0x76, 0x69,
  2592. 0x70, 0x4d, 0x61, 0x70, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x61, 0x70, 0x69,
  2593. 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x56, 0x69,
  2594. 0x70, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x2e, 0x56, 0x69, 0x70,
  2595. 0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x06, 0x76, 0x69, 0x70, 0x4d, 0x61, 0x70,
  2596. 0x1a, 0x4c, 0x0a, 0x0b, 0x56, 0x69, 0x70, 0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12,
  2597. 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65,
  2598. 0x79, 0x12, 0x27, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
  2599. 0x32, 0x11, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x56, 0x69, 0x70, 0x49,
  2600. 0x6e, 0x66, 0x6f, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xa1,
  2601. 0x02, 0x0a, 0x07, 0x56, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x73,
  2602. 0x56, 0x69, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x69, 0x73, 0x56, 0x69, 0x70,
  2603. 0x12, 0x1a, 0x0a, 0x08, 0x76, 0x69, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01,
  2604. 0x28, 0x03, 0x52, 0x08, 0x76, 0x69, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x20, 0x0a, 0x0b,
  2605. 0x67, 0x72, 0x6f, 0x77, 0x74, 0x68, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
  2606. 0x03, 0x52, 0x0b, 0x67, 0x72, 0x6f, 0x77, 0x74, 0x68, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x20,
  2607. 0x0a, 0x0b, 0x72, 0x65, 0x6e, 0x65, 0x77, 0x61, 0x6c, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x04, 0x20,
  2608. 0x01, 0x28, 0x03, 0x52, 0x0b, 0x72, 0x65, 0x6e, 0x65, 0x77, 0x61, 0x6c, 0x54, 0x69, 0x6d, 0x65,
  2609. 0x12, 0x26, 0x0a, 0x0e, 0x65, 0x78, 0x70, 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x69,
  2610. 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x65, 0x78, 0x70, 0x69, 0x72, 0x61,
  2611. 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61,
  2612. 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x63, 0x72,
  2613. 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x69, 0x73, 0x59, 0x65,
  2614. 0x61, 0x72, 0x56, 0x69, 0x70, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x59,
  2615. 0x65, 0x61, 0x72, 0x56, 0x69, 0x70, 0x12, 0x22, 0x0a, 0x0c, 0x76, 0x69, 0x70, 0x46, 0x75, 0x6e,
  2616. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x08, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x76, 0x69,
  2617. 0x70, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73,
  2618. 0x65, 0x72, 0x49, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72,
  2619. 0x49, 0x64, 0x22, 0x64, 0x0a, 0x1a, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x64,
  2620. 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2621. 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01,
  2622. 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06,
  2623. 0x69, 0x73, 0x46, 0x72, 0x65, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73,
  2624. 0x46, 0x72, 0x65, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01,
  2625. 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22, 0x6e, 0x0a, 0x28, 0x55, 0x73, 0x65, 0x72,
  2626. 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x77,
  2627. 0x61, 0x72, 0x64, 0x42, 0x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71,
  2628. 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01,
  2629. 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06,
  2630. 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72,
  2631. 0x65, 0x64, 0x69, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x65, 0x73, 0x63, 0x18, 0x03, 0x20, 0x01,
  2632. 0x28, 0x09, 0x52, 0x04, 0x64, 0x65, 0x73, 0x63, 0x22, 0x42, 0x0a, 0x26, 0x55, 0x73, 0x65, 0x72,
  2633. 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x77,
  2634. 0x61, 0x72, 0x64, 0x42, 0x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x52, 0x65, 0x70,
  2635. 0x6c, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x69, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x01, 0x20,
  2636. 0x01, 0x28, 0x08, 0x52, 0x07, 0x69, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x56, 0x0a, 0x14,
  2637. 0x41, 0x64, 0x64, 0x55, 0x73, 0x65, 0x72, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x52, 0x65, 0x71,
  2638. 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  2639. 0x52, 0x02, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x02,
  2640. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x16, 0x0a, 0x06,
  2641. 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x64, 0x65,
  2642. 0x74, 0x61, 0x69, 0x6c, 0x22, 0x4c, 0x0a, 0x16, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x55, 0x73,
  2643. 0x65, 0x72, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a,
  2644. 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  2645. 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65,
  2646. 0x73, 0x75, 0x6c, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75,
  2647. 0x6c, 0x74, 0x22, 0x99, 0x01, 0x0a, 0x12, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61,
  2648. 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f,
  2649. 0x6d, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49,
  2650. 0x64, 0x12, 0x2d, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01,
  2651. 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2652. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  2653. 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
  2654. 0x09, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x77, 0x65,
  2655. 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x54, 0x61, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
  2656. 0x52, 0x0c, 0x77, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x54, 0x61, 0x67, 0x22, 0x90,
  2657. 0x01, 0x0a, 0x28, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x49, 0x73,
  2658. 0x43, 0x68, 0x65, 0x63, 0x6b, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72,
  2659. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x70,
  2660. 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x70, 0x61, 0x67, 0x65, 0x12,
  2661. 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  2662. 0x03, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69,
  2663. 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e,
  2664. 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12,
  2665. 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65,
  2666. 0x78, 0x22, 0x64, 0x0a, 0x1e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61,
  2667. 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75,
  2668. 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18,
  2669. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12,
  2670. 0x10, 0x0a, 0x03, 0x6e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75,
  2671. 0x6d, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  2672. 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x22, 0x5b, 0x0a, 0x21, 0x4d, 0x61, 0x6e, 0x61, 0x67,
  2673. 0x65, 0x72, 0x4d, 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74,
  2674. 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07,
  2675. 0x70, 0x61, 0x73, 0x73, 0x49, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x70,
  2676. 0x61, 0x73, 0x73, 0x49, 0x64, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x6e, 0x50, 0x61, 0x73, 0x73,
  2677. 0x49, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x75, 0x6e, 0x50, 0x61, 0x73,
  2678. 0x73, 0x49, 0x64, 0x73, 0x22, 0x3f, 0x0a, 0x23, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x52,
  2679. 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79,
  2680. 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x75,
  2681. 0x73, 0x65, 0x72, 0x49, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x75, 0x73,
  2682. 0x65, 0x72, 0x49, 0x64, 0x73, 0x22, 0x4b, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f,
  2683. 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x52, 0x65, 0x71, 0x75, 0x65,
  2684. 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  2685. 0x03, 0x73, 0x65, 0x78, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64,
  2686. 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  2687. 0x64, 0x73, 0x22, 0x65, 0x0a, 0x23, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d,
  2688. 0x65, 0x6e, 0x64, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73,
  2689. 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6e, 0x75, 0x6d,
  2690. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75, 0x6d, 0x12, 0x10, 0x0a, 0x03, 0x73,
  2691. 0x65, 0x78, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1a, 0x0a,
  2692. 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
  2693. 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x47, 0x0a, 0x21, 0x46, 0x69, 0x6e,
  2694. 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75,
  2695. 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x22,
  2696. 0x0a, 0x0c, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x01,
  2697. 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x4c, 0x69,
  2698. 0x73, 0x74, 0x22, 0xc7, 0x01, 0x0a, 0x29, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65,
  2699. 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x41, 0x6e, 0x64, 0x52, 0x65,
  2700. 0x74, 0x75, 0x72, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x70, 0x6c, 0x79,
  2701. 0x12, 0x28, 0x0a, 0x0f, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64,
  2702. 0x4e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0f, 0x74, 0x6f, 0x64, 0x61, 0x79,
  2703. 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69,
  2704. 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69,
  2705. 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72,
  2706. 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61,
  2707. 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28,
  2708. 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x05, 0x20,
  2709. 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79,
  2710. 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x22, 0xec, 0x01, 0x0a,
  2711. 0x1e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67, 0x46, 0x72, 0x6f,
  2712. 0x6d, 0x57, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12,
  2713. 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12,
  2714. 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65,
  2715. 0x78, 0x12, 0x16, 0x0a, 0x06, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28,
  2716. 0x03, 0x52, 0x06, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x77, 0x6f, 0x72,
  2717. 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
  2718. 0x52, 0x0d, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12,
  2719. 0x28, 0x0a, 0x0f, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e,
  2720. 0x75, 0x6d, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0f, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x4d,
  2721. 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65,
  2722. 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70,
  2723. 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70,
  2724. 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18,
  2725. 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x22, 0x35, 0x0a, 0x1b, 0x55,
  2726. 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64,
  2727. 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73,
  2728. 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72,
  2729. 0x49, 0x64, 0x22, 0x65, 0x0a, 0x23, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77, 0x4d, 0x65, 0x73,
  2730. 0x73, 0x61, 0x67, 0x65, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64,
  2731. 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72,
  2732. 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72,
  2733. 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x73, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72,
  2734. 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x73, 0x65, 0x6e,
  2735. 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x42, 0x0a, 0x18, 0x53, 0x65, 0x6e,
  2736. 0x64, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74,
  2737. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x73, 0x53, 0x65, 0x6e, 0x64, 0x52,
  2738. 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x69,
  2739. 0x73, 0x53, 0x65, 0x6e, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x22, 0x7d, 0x0a,
  2740. 0x0b, 0x55, 0x73, 0x65, 0x72, 0x46, 0x72, 0x65, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x24, 0x0a, 0x0d,
  2741. 0x72, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4e, 0x75, 0x6d, 0x18, 0x01, 0x20,
  2742. 0x01, 0x28, 0x03, 0x52, 0x0d, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4e,
  2743. 0x75, 0x6d, 0x12, 0x26, 0x0a, 0x0e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69,
  2744. 0x70, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x63, 0x72, 0x65, 0x61,
  2745. 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4e, 0x75, 0x6d, 0x12, 0x20, 0x0a, 0x0b, 0x6d, 0x61,
  2746. 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52,
  2747. 0x0b, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4e, 0x75, 0x6d, 0x22, 0x76, 0x0a, 0x11,
  2748. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2749. 0x74, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01,
  2750. 0x28, 0x03, 0x52, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x12, 0x2d, 0x0a, 0x07, 0x6d,
  2751. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61,
  2752. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2753. 0x65, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73,
  2754. 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x73, 0x67,
  2755. 0x54, 0x79, 0x70, 0x65, 0x22, 0x32, 0x0a, 0x16, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x6f,
  2756. 0x6f, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18,
  2757. 0x0a, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52,
  2758. 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x22, 0x46, 0x0a, 0x14, 0x55, 0x73, 0x65, 0x72,
  2759. 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2760. 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,
  2761. 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73,
  2762. 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74,
  2763. 0x22, 0x2e, 0x0a, 0x12, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52,
  2764. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49,
  2765. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64,
  2766. 0x22, 0x48, 0x0a, 0x12, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52,
  2767. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x65, 0x78, 0x74, 0x18, 0x01,
  2768. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x65, 0x78, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x69,
  2769. 0x63, 0x74, 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
  2770. 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x22, 0x45, 0x0a, 0x1d, 0x46, 0x69,
  2771. 0x6e, 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72,
  2772. 0x41, 0x6e, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6e,
  2773. 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75, 0x6d, 0x12, 0x12, 0x0a,
  2774. 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x6c, 0x69, 0x73,
  2775. 0x74, 0x22, 0x45, 0x0a, 0x13, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67,
  2776. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2e, 0x0a, 0x12, 0x52, 0x65, 0x63, 0x68,
  2777. 0x61, 0x72, 0x67, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x18, 0x01,
  2778. 0x20, 0x01, 0x28, 0x03, 0x52, 0x12, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x54, 0x65,
  2779. 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x22, 0x3a, 0x0a, 0x0c, 0x52, 0x65, 0x63, 0x68,
  2780. 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2a, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74,
  2781. 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65,
  2782. 0x72, 0x2e, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04,
  2783. 0x6c, 0x69, 0x73, 0x74, 0x22, 0x40, 0x0a, 0x0f, 0x56, 0x69, 0x70, 0x52, 0x65, 0x63, 0x68, 0x61,
  2784. 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2d, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18,
  2785. 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72,
  2786. 0x2e, 0x56, 0x69, 0x70, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f,
  2787. 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xe9, 0x01, 0x0a, 0x0f, 0x56, 0x69, 0x70, 0x52, 0x65,
  2788. 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
  2789. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x61,
  2790. 0x62, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c,
  2791. 0x12, 0x14, 0x0a, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52,
  2792. 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e,
  2793. 0x50, 0x72, 0x69, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6f, 0x72, 0x69,
  2794. 0x67, 0x69, 0x6e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x12, 0x2e, 0x0a, 0x12, 0x61, 0x76, 0x65, 0x72,
  2795. 0x61, 0x67, 0x65, 0x50, 0x65, 0x72, 0x44, 0x61, 0x79, 0x50, 0x72, 0x69, 0x63, 0x65, 0x18, 0x05,
  2796. 0x20, 0x01, 0x28, 0x03, 0x52, 0x12, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x50, 0x65, 0x72,
  2797. 0x44, 0x61, 0x79, 0x50, 0x72, 0x69, 0x63, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x61, 0x64, 0x64, 0x69,
  2798. 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x43, 0x6f, 0x69, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03,
  2799. 0x52, 0x0e, 0x61, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x43, 0x6f, 0x69, 0x6e,
  2800. 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18,
  2801. 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
  2802. 0x6f, 0x6e, 0x22, 0xa4, 0x01, 0x0a, 0x0c, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x49,
  2803. 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  2804. 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01,
  2805. 0x28, 0x03, 0x52, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65,
  2806. 0x64, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69,
  2807. 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x67, 0x69, 0x76, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18,
  2808. 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x67, 0x69, 0x76, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69,
  2809. 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  2810. 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
  2811. 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x06, 0x20, 0x01,
  2812. 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x22, 0x7d, 0x0a, 0x11, 0x49, 0x6e, 0x66,
  2813. 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x30,
  2814. 0x0a, 0x13, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d,
  2815. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x13, 0x69, 0x73, 0x46,
  2816. 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  2817. 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x73, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72, 0x64, 0x18, 0x02,
  2818. 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72, 0x64,
  2819. 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,
  2820. 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x22, 0x35, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72,
  2821. 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
  2822. 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69,
  2823. 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x22,
  2824. 0x5b, 0x0a, 0x15, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x4c,
  2825. 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x2a, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74,
  2826. 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65,
  2827. 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x43, 0x68, 0x61, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04,
  2828. 0x6c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x02,
  2829. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x22, 0x92, 0x03, 0x0a,
  2830. 0x0c, 0x55, 0x73, 0x65, 0x72, 0x43, 0x68, 0x61, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1a, 0x0a,
  2831. 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  2832. 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x6e, 0x72,
  2833. 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x75, 0x6e,
  2834. 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x43,
  2835. 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6c, 0x61,
  2836. 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x61, 0x73,
  2837. 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6c, 0x61, 0x73,
  2838. 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x69, 0x6b, 0x65, 0x61, 0x62, 0x69,
  2839. 0x6c, 0x69, 0x74, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6c, 0x69, 0x6b, 0x65,
  2840. 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x08,
  2841. 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61,
  2842. 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76,
  2843. 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e,
  2844. 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e,
  2845. 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03,
  2846. 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18,
  2847. 0x0c, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x12, 0x14, 0x0a,
  2848. 0x05, 0x69, 0x73, 0x56, 0x69, 0x70, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x69, 0x73,
  2849. 0x56, 0x69, 0x70, 0x12, 0x1a, 0x0a, 0x08, 0x76, 0x69, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x18,
  2850. 0x10, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x76, 0x69, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x12,
  2851. 0x1c, 0x0a, 0x09, 0x69, 0x73, 0x59, 0x65, 0x61, 0x72, 0x56, 0x69, 0x70, 0x18, 0x11, 0x20, 0x01,
  2852. 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x59, 0x65, 0x61, 0x72, 0x56, 0x69, 0x70, 0x12, 0x22, 0x0a,
  2853. 0x0c, 0x76, 0x69, 0x70, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x12, 0x20,
  2854. 0x03, 0x28, 0x09, 0x52, 0x0c, 0x76, 0x69, 0x70, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  2855. 0x73, 0x22, 0xe8, 0x04, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e,
  2856. 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a,
  2857. 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  2858. 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76,
  2859. 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61,
  2860. 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18,
  2861. 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65,
  2862. 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x24, 0x0a, 0x0d,
  2863. 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20,
  2864. 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69,
  2865. 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x07, 0x20, 0x01,
  2866. 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x74, 0x61,
  2867. 0x67, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x08, 0x20, 0x03, 0x28, 0x03, 0x52, 0x07, 0x74, 0x61, 0x67,
  2868. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72,
  2869. 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75,
  2870. 0x72, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56,
  2871. 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72,
  2872. 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72,
  2873. 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72,
  2874. 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0x0c,
  2875. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72,
  2876. 0x65, 0x61, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61, 0x12, 0x16,
  2877. 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  2878. 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x69, 0x73, 0x42, 0x6c, 0x61, 0x63,
  2879. 0x6b, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x69, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b,
  2880. 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x18, 0x10,
  2881. 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72,
  2882. 0x12, 0x2c, 0x0a, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x69, 0x63, 0x6b, 0x6e, 0x61,
  2883. 0x6d, 0x65, 0x4e, 0x75, 0x6d, 0x18, 0x11, 0x20, 0x01, 0x28, 0x03, 0x52, 0x11, 0x55, 0x70, 0x64,
  2884. 0x61, 0x74, 0x65, 0x4e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x2e,
  2885. 0x0a, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72,
  2886. 0x6c, 0x4e, 0x75, 0x6d, 0x18, 0x12, 0x20, 0x01, 0x28, 0x03, 0x52, 0x12, 0x55, 0x70, 0x64, 0x61,
  2887. 0x74, 0x65, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x4e, 0x75, 0x6d, 0x12, 0x2c,
  2888. 0x0a, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73,
  2889. 0x4e, 0x75, 0x6d, 0x18, 0x13, 0x20, 0x01, 0x28, 0x03, 0x52, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74,
  2890. 0x65, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x4e, 0x75, 0x6d, 0x12, 0x2e, 0x0a, 0x12,
  2891. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x4e,
  2892. 0x75, 0x6d, 0x18, 0x14, 0x20, 0x01, 0x28, 0x03, 0x52, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  2893. 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x4e, 0x75, 0x6d, 0x22, 0x1e, 0x0a, 0x0a,
  2894. 0x4b, 0x65, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65,
  2895. 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x22, 0x8e, 0x01, 0x0a,
  2896. 0x10, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x61, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2897. 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  2898. 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18,
  2899. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6f,
  2900. 0x70, 0x65, 0x6e, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x70, 0x65,
  2901. 0x6e, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
  2902. 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69,
  2903. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x18,
  2904. 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x22, 0x55, 0x0a,
  2905. 0x07, 0x50, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x30, 0x0a, 0x07, 0x70, 0x61, 0x79, 0x49,
  2906. 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  2907. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x56, 0x61, 0x6c, 0x75,
  2908. 0x65, 0x52, 0x07, 0x70, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x72,
  2909. 0x64, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6f, 0x72, 0x64,
  2910. 0x65, 0x72, 0x49, 0x64, 0x22, 0x9c, 0x02, 0x0a, 0x0c, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65,
  2911. 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18,
  2912. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x18, 0x0a,
  2913. 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07,
  2914. 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79,
  2915. 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x12, 0x12, 0x0a,
  2916. 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70,
  2917. 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,
  2918. 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61,
  2919. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49,
  2920. 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x12,
  2921. 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07,
  2922. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
  2923. 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28,
  2924. 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x61, 0x79,
  2925. 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x70, 0x61, 0x79, 0x54,
  2926. 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d,
  2927. 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54,
  2928. 0x69, 0x6d, 0x65, 0x22, 0x52, 0x0a, 0x0c, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c,
  2929. 0x69, 0x73, 0x74, 0x12, 0x2a, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28,
  2930. 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x79,
  2931. 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12,
  2932. 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  2933. 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x22, 0x61, 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64, 0x50,
  2934. 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65,
  2935. 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01,
  2936. 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66,
  2937. 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73,
  2938. 0x65, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01,
  2939. 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x2a, 0x0a, 0x10, 0x50, 0x61,
  2940. 0x79, 0x43, 0x61, 0x6c, 0x6c, 0x62, 0x61, 0x63, 0x6b, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x16,
  2941. 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06,
  2942. 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x32, 0xac, 0x63, 0x0a, 0x04, 0x55, 0x73, 0x65, 0x72, 0x12,
  2943. 0x54, 0x0a, 0x0b, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16,
  2944. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  2945. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65,
  2946. 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x19, 0x82, 0xd3, 0xe4, 0x93,
  2947. 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e,
  2948. 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x69, 0x0a, 0x0d, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f,
  2949. 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  2950. 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64,
  2951. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  2952. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  2953. 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  2954. 0x73, 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x64, 0x65, 0x2f, 0x73, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a,
  2955. 0x12, 0x6c, 0x0a, 0x0e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f,
  2956. 0x64, 0x65, 0x12, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2957. 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65,
  2958. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  2959. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1f, 0x82,
  2960. 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  2961. 0x2f, 0x63, 0x6f, 0x64, 0x65, 0x2f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x7e,
  2962. 0x0a, 0x15, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f,
  2963. 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  2964. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x72,
  2965. 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e,
  2966. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  2967. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f,
  2968. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x2f,
  2969. 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0x6e,
  2970. 0x0a, 0x14, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x73,
  2971. 0x6f, 0x6e, 0x52, 0x6f, 0x6f, 0x6d, 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  2972. 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f,
  2973. 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68,
  2974. 0x61, 0x74, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3,
  2975. 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  2976. 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x5d,
  2977. 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65,
  2978. 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  2979. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75,
  2980. 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x22,
  2981. 0x1c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x22, 0x11, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  2982. 0x65, 0x72, 0x2f, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x5b, 0x0a,
  2983. 0x0f, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f,
  2984. 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65,
  2985. 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2986. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x22,
  2987. 0x19, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  2988. 0x65, 0x72, 0x2f, 0x68, 0x6f, 0x6d, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6f, 0x0a, 0x1b, 0x55, 0x73,
  2989. 0x65, 0x72, 0x47, 0x65, 0x74, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x6b, 0x65, 0x64,
  2990. 0x41, 0x6e, 0x64, 0x4c, 0x6f, 0x6f, 0x6b, 0x65, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2991. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72,
  2992. 0x61, 0x6d, 0x1a, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2993. 0x4c, 0x6f, 0x6f, 0x6b, 0x65, 0x64, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x4e, 0x75,
  2994. 0x6d, 0x22, 0x18, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x12, 0x22, 0x0d, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  2995. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x0c, 0x46,
  2996. 0x69, 0x6e, 0x64, 0x4c, 0x6f, 0x6f, 0x6b, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70,
  2997. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67,
  2998. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73,
  2999. 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e,
  3000. 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1e,
  3001. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  3002. 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x5c,
  3003. 0x0a, 0x06, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x12, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3004. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x71, 0x1a,
  3005. 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x57, 0x78, 0x43,
  3006. 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x1f, 0x82, 0xd3, 0xe4,
  3007. 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x77, 0x78, 0x2f, 0x6a, 0x73, 0x73,
  3008. 0x64, 0x6b, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x5f, 0x0a, 0x10,
  3009. 0x46, 0x69, 0x6e, 0x64, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x79, 0x53, 0x65, 0x78,
  3010. 0x12, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65,
  3011. 0x78, 0x52, 0x65, 0x71, 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  3012. 0x6e, 0x2e, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1d,
  3013. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  3014. 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x74, 0x61, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x76, 0x0a,
  3015. 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12,
  3016. 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73,
  3017. 0x74, 0x50, 0x61, 0x67, 0x65, 0x32, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e,
  3018. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d,
  3019. 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  3020. 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70,
  3021. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6f, 0x6e, 0x6c, 0x69,
  3022. 0x6e, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x81, 0x01, 0x0a, 0x1a, 0x46, 0x69, 0x6e, 0x64, 0x57, 0x69,
  3023. 0x74, 0x68, 0x69, 0x6e, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x52, 0x6f, 0x6f, 0x6d,
  3024. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  3025. 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  3026. 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65,
  3027. 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70,
  3028. 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69,
  3029. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f,
  3030. 0x77, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0x7d, 0x0a, 0x18, 0x46, 0x69, 0x6e,
  3031. 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x52, 0x6f, 0x6f,
  3032. 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3033. 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  3034. 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73,
  3035. 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  3036. 0x70, 0x6c, 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70,
  3037. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74,
  3038. 0x2f, 0x6f, 0x76, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x7e, 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64,
  3039. 0x43, 0x6c, 0x6f, 0x73, 0x65, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c,
  3040. 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  3041. 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  3042. 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72,
  3043. 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c,
  3044. 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  3045. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x66,
  3046. 0x72, 0x69, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x7e, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64,
  3047. 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x25,
  3048. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64,
  3049. 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  3050. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3051. 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73,
  3052. 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15,
  3053. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x72,
  3054. 0x65, 0x63, 0x6f, 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x72, 0x0a, 0x0f, 0x46, 0x69, 0x6e, 0x64,
  3055. 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x12, 0x22, 0x2e, 0x61, 0x70,
  3056. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61,
  3057. 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  3058. 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61,
  3059. 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c,
  3060. 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74,
  3061. 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x2f, 0x6d, 0x73, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x59, 0x0a, 0x0d,
  3062. 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x17, 0x2e,
  3063. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f,
  3064. 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  3065. 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x22, 0x1b, 0x82, 0xd3, 0xe4, 0x93,
  3066. 0x02, 0x15, 0x22, 0x10, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x73,
  3067. 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x64, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4d,
  3068. 0x65, 0x6d, 0x65, 0x42, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3069. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  3070. 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3071. 0x4d, 0x65, 0x6d, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d,
  3072. 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64,
  3073. 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f, 0x74, 0x79, 0x70, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a,
  3074. 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x12, 0x20,
  3075. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64,
  3076. 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  3077. 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68,
  3078. 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x1f, 0x82, 0xd3, 0xe4,
  3079. 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66,
  3080. 0x69, 0x6e, 0x64, 0x2f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x0a,
  3081. 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x65, 0x6d, 0x65, 0x12, 0x15, 0x2e, 0x61, 0x70, 0x69,
  3082. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x75,
  3083. 0x6d, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43,
  3084. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x25, 0x82,
  3085. 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  3086. 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f,
  3087. 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x75, 0x0a, 0x12, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x53, 0x77,
  3088. 0x69, 0x66, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69,
  3089. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x75,
  3090. 0x6d, 0x41, 0x6e, 0x64, 0x53, 0x65, 0x78, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3091. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x4c,
  3092. 0x69, 0x73, 0x74, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70,
  3093. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x74, 0x6f, 0x70, 0x69,
  3094. 0x63, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x68, 0x0a, 0x0d, 0x46,
  3095. 0x69, 0x6e, 0x64, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x16, 0x2e, 0x67,
  3096. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  3097. 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  3098. 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22,
  3099. 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  3100. 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f, 0x74, 0x69, 0x74,
  3101. 0x6c, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x64, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74,
  3102. 0x43, 0x68, 0x61, 0x74, 0x43, 0x61, 0x72, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3103. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61,
  3104. 0x6d, 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43,
  3105. 0x68, 0x61, 0x74, 0x43, 0x61, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1e, 0x82, 0xd3, 0xe4,
  3106. 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63,
  3107. 0x68, 0x61, 0x74, 0x2f, 0x63, 0x61, 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x12, 0x46,
  3108. 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x54, 0x69, 0x74, 0x6c,
  3109. 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3110. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3111. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65,
  3112. 0x4c, 0x69, 0x73, 0x74, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61,
  3113. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x63, 0x68, 0x61,
  3114. 0x74, 0x2f, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x56, 0x0a, 0x08, 0x55, 0x73,
  3115. 0x65, 0x72, 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  3116. 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a,
  3117. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  3118. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x19, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x22,
  3119. 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x3a,
  3120. 0x01, 0x2a, 0x12, 0x5a, 0x0a, 0x0a, 0x55, 0x73, 0x65, 0x72, 0x55, 0x6e, 0x4c, 0x69, 0x6b, 0x65,
  3121. 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65,
  3122. 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  3123. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  3124. 0x79, 0x22, 0x1b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x22, 0x10, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  3125. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x6e, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x5c,
  3126. 0x0a, 0x06, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3127. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x43, 0x68, 0x61, 0x74,
  3128. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  3129. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
  3130. 0x1b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x22, 0x10, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  3131. 0x65, 0x72, 0x2f, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x80, 0x01, 0x0a,
  3132. 0x16, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61,
  3133. 0x79, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  3134. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a,
  3135. 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e,
  3136. 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x41, 0x76, 0x61,
  3137. 0x74, 0x61, 0x72, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f,
  3138. 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6f, 0x76, 0x65, 0x72,
  3139. 0x2f, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12,
  3140. 0x79, 0x0a, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72,
  3141. 0x69, 0x70, 0x49, 0x44, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  3142. 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69,
  3143. 0x70, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  3144. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  3145. 0x74, 0x79, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69,
  3146. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x61, 0x73, 0x74,
  3147. 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x63, 0x0a, 0x0b, 0x43, 0x72,
  3148. 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3149. 0x75, 0x73, 0x65, 0x72, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70,
  3150. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3151. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x22, 0x21, 0x82, 0xd3,
  3152. 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  3153. 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12,
  3154. 0x66, 0x0a, 0x0b, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1c,
  3155. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
  3156. 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67,
  3157. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  3158. 0x6d, 0x70, 0x74, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61,
  3159. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x64, 0x65,
  3160. 0x6c, 0x65, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6b, 0x0a, 0x0b, 0x46, 0x69, 0x6e, 0x64, 0x4d,
  3161. 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65,
  3162. 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52,
  3163. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  3164. 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x24,
  3165. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  3166. 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x73, 0x65, 0x6c,
  3167. 0x66, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x74, 0x68, 0x65,
  3168. 0x72, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  3169. 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71,
  3170. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  3171. 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3,
  3172. 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  3173. 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6f, 0x74, 0x68, 0x65, 0x72,
  3174. 0x3a, 0x01, 0x2a, 0x12, 0x77, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d,
  3175. 0x6d, 0x65, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3176. 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72,
  3177. 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3178. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c,
  3179. 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  3180. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f,
  3181. 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x6c, 0x0a, 0x0f,
  3182. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x6f, 0x6f, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12,
  3183. 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f,
  3184. 0x6e, 0x4c, 0x6f, 0x6f, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  3185. 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3186. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  3187. 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72,
  3188. 0x69, 0x70, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x6a, 0x0a, 0x13, 0x50, 0x65,
  3189. 0x72, 0x73, 0x6f, 0x6e, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x4c, 0x6f, 0x6f, 0x6b, 0x42, 0x61, 0x63,
  3190. 0x6b, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3191. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3192. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f,
  3193. 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  3194. 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x2f, 0x62,
  3195. 0x61, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x10, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  3196. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69,
  3197. 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70,
  3198. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3199. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49,
  3200. 0x6e, 0x66, 0x6f, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70,
  3201. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x72, 0x65, 0x70,
  3202. 0x6c, 0x79, 0x3a, 0x01, 0x2a, 0x12, 0x65, 0x0a, 0x0e, 0x55, 0x73, 0x65, 0x72, 0x44, 0x65, 0x6c,
  3203. 0x65, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3204. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65,
  3205. 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3206. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93,
  3207. 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68,
  3208. 0x61, 0x74, 0x2f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x13,
  3209. 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x41, 0x6c, 0x6c, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64,
  3210. 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  3211. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x18, 0x2e, 0x61, 0x70,
  3212. 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d,
  3213. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f,
  3214. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x75, 0x6e,
  3215. 0x72, 0x65, 0x61, 0x64, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x13, 0x47,
  3216. 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x42, 0x79, 0x50, 0x65, 0x72, 0x73,
  3217. 0x6f, 0x6e, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3218. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x61, 0x70,
  3219. 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x49,
  3220. 0x6e, 0x66, 0x6f, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70,
  3221. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x2f, 0x69, 0x6e, 0x66, 0x6f,
  3222. 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x0c, 0x46, 0x69, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c,
  3223. 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  3224. 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  3225. 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63,
  3226. 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73,
  3227. 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13,
  3228. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6c,
  3229. 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x73, 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x4c, 0x69,
  3230. 0x6b, 0x65, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3231. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71,
  3232. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69,
  3233. 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b,
  3234. 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93,
  3235. 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69,
  3236. 0x73, 0x74, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x65, 0x0a, 0x10, 0x55,
  3237. 0x73, 0x65, 0x72, 0x53, 0x65, 0x74, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x43, 0x68, 0x61, 0x74, 0x12,
  3238. 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f,
  3239. 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  3240. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  3241. 0x74, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69,
  3242. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x65, 0x74, 0x2f, 0x62, 0x6c, 0x61, 0x63, 0x6b, 0x3a,
  3243. 0x01, 0x2a, 0x12, 0x94, 0x01, 0x0a, 0x1e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72,
  3244. 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f,
  3245. 0x6e, 0x73, 0x68, 0x69, 0x70, 0x12, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  3246. 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61,
  3247. 0x6d, 0x1a, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x43, 0x68, 0x65,
  3248. 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x73, 0x52,
  3249. 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79,
  3250. 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  3251. 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x2f, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69,
  3252. 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x14, 0x47, 0x65, 0x74,
  3253. 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x49, 0x6e, 0x66,
  3254. 0x6f, 0x12, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4b, 0x65, 0x79,
  3255. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3256. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x4d, 0x65,
  3257. 0x73, 0x73, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  3258. 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x69, 0x72,
  3259. 0x63, 0x6c, 0x65, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x86, 0x01, 0x0a, 0x1f,
  3260. 0x47, 0x65, 0x74, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x53, 0x74,
  3261. 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12,
  3262. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  3263. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74,
  3264. 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64,
  3265. 0x4c, 0x69, 0x6b, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79,
  3266. 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  3267. 0x73, 0x65, 0x72, 0x2f, 0x6e, 0x75, 0x6d, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x5f, 0x6c, 0x6f, 0x6f,
  3268. 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x69, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c,
  3269. 0x6f, 0x6f, 0x6b, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  3270. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x20,
  3271. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e,
  3272. 0x4c, 0x6f, 0x6f, 0x6b, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79,
  3273. 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  3274. 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12,
  3275. 0x70, 0x0a, 0x15, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66,
  3276. 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  3277. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  3278. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  3279. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21,
  3280. 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f,
  3281. 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x3a, 0x01,
  3282. 0x2a, 0x12, 0x75, 0x0a, 0x15, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61,
  3283. 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  3284. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  3285. 0x74, 0x79, 0x1a, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x49, 0x6e,
  3286. 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22,
  3287. 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  3288. 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x73,
  3289. 0x74, 0x61, 0x74, 0x75, 0x73, 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x17, 0x55, 0x73, 0x65, 0x72,
  3290. 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x77,
  3291. 0x61, 0x72, 0x64, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  3292. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  3293. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  3294. 0x70, 0x74, 0x79, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70,
  3295. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69,
  3296. 0x6f, 0x6e, 0x2f, 0x61, 0x77, 0x61, 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x65, 0x0a, 0x10, 0x55,
  3297. 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x4c, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x12,
  3298. 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72,
  3299. 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  3300. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  3301. 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  3302. 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x2f, 0x75, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x3a,
  3303. 0x01, 0x2a, 0x12, 0x5f, 0x0a, 0x0c, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72,
  3304. 0x67, 0x65, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73,
  3305. 0x65, 0x72, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  3306. 0x74, 0x1a, 0x11, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x79,
  3307. 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61,
  3308. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65,
  3309. 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68, 0x61,
  3310. 0x72, 0x67, 0x65, 0x56, 0x69, 0x70, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65,
  3311. 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x52, 0x65,
  3312. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x11, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72,
  3313. 0x2e, 0x50, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b,
  3314. 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x63, 0x68,
  3315. 0x61, 0x72, 0x67, 0x65, 0x2f, 0x76, 0x69, 0x70, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x10, 0x46,
  3316. 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12,
  3317. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  3318. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
  3319. 0x65, 0x72, 0x2e, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22,
  3320. 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  3321. 0x65, 0x72, 0x2f, 0x72, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x2f, 0x6c, 0x69, 0x73, 0x74,
  3322. 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x13, 0x46, 0x69, 0x6e, 0x64, 0x56, 0x69, 0x70, 0x52, 0x65,
  3323. 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  3324. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  3325. 0x74, 0x79, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x56, 0x69,
  3326. 0x70, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x26, 0x82,
  3327. 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  3328. 0x2f, 0x72, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x2f, 0x76, 0x69, 0x70, 0x2f, 0x6c, 0x69,
  3329. 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x67, 0x0a, 0x0b, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x61, 0x79,
  3330. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  3331. 0x46, 0x69, 0x6e, 0x64, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74,
  3332. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
  3333. 0x65, 0x72, 0x2e, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x22,
  3334. 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  3335. 0x65, 0x72, 0x2f, 0x70, 0x61, 0x79, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x7c,
  3336. 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50,
  3337. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  3338. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  3339. 0x79, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52,
  3340. 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69,
  3341. 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22,
  3342. 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f,
  3343. 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x82, 0x01, 0x0a,
  3344. 0x18, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x41, 0x76, 0x61,
  3345. 0x74, 0x61, 0x72, 0x41, 0x6e, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  3346. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  3347. 0x79, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e,
  3348. 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x41,
  3349. 0x6e, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93,
  3350. 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6d, 0x61,
  3351. 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x2f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x3a, 0x01,
  3352. 0x2a, 0x12, 0x63, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x49, 0x6e,
  3353. 0x66, 0x6f, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3354. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69,
  3355. 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x49, 0x6e, 0x66, 0x6f,
  3356. 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  3357. 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2f,
  3358. 0x67, 0x65, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x5e, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65,
  3359. 0x72, 0x46, 0x72, 0x65, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  3360. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  3361. 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72,
  3362. 0x46, 0x72, 0x65, 0x65, 0x4e, 0x75, 0x6d, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22,
  3363. 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x72, 0x65, 0x65, 0x2f,
  3364. 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x6f, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x52, 0x61, 0x6e,
  3365. 0x64, 0x6f, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x12, 0x12, 0x2e, 0x61, 0x70,
  3366. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x78, 0x52, 0x65, 0x71, 0x1a,
  3367. 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x61,
  3368. 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x70, 0x6c,
  3369. 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  3370. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x2f, 0x6d, 0x61, 0x74, 0x63,
  3371. 0x68, 0x69, 0x6e, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x63, 0x0a, 0x0b, 0x55, 0x6e, 0x6c, 0x6f, 0x63,
  3372. 0x6b, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  3373. 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  3374. 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3375. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  3376. 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x6e, 0x6c,
  3377. 0x6f, 0x63, 0x6b, 0x2f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x67, 0x0a, 0x0d,
  3378. 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x12, 0x19, 0x2e,
  3379. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49,
  3380. 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  3381. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  3382. 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  3383. 0x73, 0x65, 0x72, 0x2f, 0x75, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x2f, 0x70, 0x69, 0x63, 0x74, 0x75,
  3384. 0x72, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6c, 0x0a, 0x14, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55,
  3385. 0x73, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x12, 0x16, 0x2e,
  3386. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  3387. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  3388. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x24, 0x82,
  3389. 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  3390. 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x2f, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72,
  3391. 0x3a, 0x01, 0x2a, 0x12, 0x77, 0x0a, 0x15, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65,
  3392. 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x12, 0x1f, 0x2e, 0x61,
  3393. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
  3394. 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x13, 0x2e,
  3395. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x70,
  3396. 0x6c, 0x79, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69,
  3397. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x2f, 0x72, 0x6f, 0x6f,
  3398. 0x6d, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x6c, 0x0a, 0x0b,
  3399. 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x1c, 0x2e, 0x61, 0x70,
  3400. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61,
  3401. 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3402. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61,
  3403. 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22,
  3404. 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6d, 0x65, 0x73, 0x73, 0x61,
  3405. 0x67, 0x65, 0x2f, 0x73, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x51, 0x0a, 0x0a, 0x47, 0x65,
  3406. 0x74, 0x56, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  3407. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  3408. 0x1a, 0x11, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x56, 0x69, 0x70, 0x49,
  3409. 0x6e, 0x66, 0x6f, 0x22, 0x18, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x12, 0x22, 0x0d, 0x2f, 0x61, 0x70,
  3410. 0x69, 0x2f, 0x76, 0x69, 0x70, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x6e, 0x0a,
  3411. 0x10, 0x46, 0x69, 0x6e, 0x64, 0x48, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x55, 0x73, 0x65,
  3412. 0x72, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3413. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x23, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3414. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x48, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x50,
  3415. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1d,
  3416. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x68, 0x61, 0x6e,
  3417. 0x64, 0x70, 0x69, 0x63, 0x6b, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x7f, 0x0a,
  3418. 0x16, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x6f, 0x6b, 0x48, 0x61, 0x6e, 0x64,
  3419. 0x50, 0x69, 0x63, 0x6b, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  3420. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a,
  3421. 0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73,
  3422. 0x65, 0x72, 0x4c, 0x6f, 0x6f, 0x6b, 0x48, 0x61, 0x6e, 0x64, 0x50, 0x69, 0x63, 0x6b, 0x4e, 0x75,
  3423. 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b,
  3424. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x2f, 0x68,
  3425. 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x77,
  3426. 0x0a, 0x16, 0x53, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x6f, 0x6b, 0x48, 0x61, 0x6e,
  3427. 0x64, 0x50, 0x69, 0x63, 0x6b, 0x4e, 0x75, 0x6d, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3428. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61,
  3429. 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  3430. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2a, 0x82, 0xd3, 0xe4,
  3431. 0x93, 0x02, 0x24, 0x22, 0x1f, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c,
  3432. 0x6f, 0x6f, 0x6b, 0x2f, 0x68, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x2f, 0x6e, 0x75, 0x6d,
  3433. 0x2f, 0x73, 0x65, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x8a, 0x01, 0x0a, 0x13, 0x4d, 0x61, 0x6e, 0x61,
  3434. 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12,
  3435. 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e,
  3436. 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69,
  3437. 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3438. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69,
  3439. 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c,
  3440. 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  3441. 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73,
  3442. 0x74, 0x3a, 0x01, 0x2a, 0x12, 0xa1, 0x01, 0x0a, 0x1e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  3443. 0x46, 0x69, 0x6e, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x55,
  3444. 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3445. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64,
  3446. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  3447. 0x74, 0x1a, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d,
  3448. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  3449. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x2d, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  3450. 0x27, 0x22, 0x22, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f,
  3451. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d,
  3452. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0xb2, 0x01, 0x0a, 0x21, 0x4d, 0x61, 0x6e,
  3453. 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x49, 0x73, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x51,
  3454. 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x32,
  3455. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  3456. 0x72, 0x46, 0x69, 0x6e, 0x64, 0x49, 0x73, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x51, 0x75, 0x61, 0x6c,
  3457. 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65,
  3458. 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3459. 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f,
  3460. 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x32, 0x22, 0x30, 0x82, 0xd3, 0xe4,
  3461. 0x93, 0x02, 0x2a, 0x22, 0x25, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  3462. 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x69, 0x73, 0x63, 0x68,
  3463. 0x65, 0x63, 0x6b, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x3a, 0x01, 0x2a, 0x12, 0x9d, 0x01,
  3464. 0x0a, 0x1e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x48, 0x69, 0x67,
  3465. 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74,
  3466. 0x12, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61,
  3467. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c,
  3468. 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x61, 0x70, 0x69,
  3469. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46,
  3470. 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70,
  3471. 0x6c, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69,
  3472. 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79,
  3473. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0xb0, 0x01,
  3474. 0x0a, 0x1e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x61, 0x6e,
  3475. 0x48, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74,
  3476. 0x12, 0x31, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61,
  3477. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x61, 0x6e, 0x48, 0x61, 0x6e, 0x64,
  3478. 0x70, 0x69, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75,
  3479. 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  3480. 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x61, 0x6e, 0x48,
  3481. 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52,
  3482. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x2a, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x24, 0x22, 0x1f, 0x2f, 0x61,
  3483. 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x68, 0x61, 0x6e, 0x64, 0x70,
  3484. 0x69, 0x63, 0x6b, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a,
  3485. 0x12, 0x86, 0x01, 0x0a, 0x16, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x53, 0x65, 0x74, 0x48,
  3486. 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x12, 0x29, 0x2e, 0x61, 0x70,
  3487. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  3488. 0x53, 0x65, 0x74, 0x48, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x52,
  3489. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  3490. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x29,
  3491. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e,
  3492. 0x61, 0x67, 0x65, 0x72, 0x2f, 0x68, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x2f, 0x75, 0x73,
  3493. 0x65, 0x72, 0x2f, 0x73, 0x65, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x90, 0x01, 0x0a, 0x19, 0x4d, 0x61,
  3494. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x53, 0x65, 0x74, 0x48, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b,
  3495. 0x55, 0x73, 0x65, 0x72, 0x4f, 0x6e, 0x65, 0x12, 0x2c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3496. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x53, 0x65, 0x74, 0x48,
  3497. 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x4f, 0x6e, 0x65, 0x52, 0x65,
  3498. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  3499. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2d, 0x82,
  3500. 0xd3, 0xe4, 0x93, 0x02, 0x27, 0x22, 0x22, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61,
  3501. 0x67, 0x65, 0x72, 0x2f, 0x68, 0x61, 0x6e, 0x64, 0x70, 0x69, 0x63, 0x6b, 0x2f, 0x75, 0x73, 0x65,
  3502. 0x72, 0x2f, 0x73, 0x65, 0x74, 0x2f, 0x6f, 0x6e, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x8b, 0x01, 0x0a,
  3503. 0x1a, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4d, 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67, 0x68,
  3504. 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x12, 0x2b, 0x2e, 0x61, 0x70,
  3505. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4d, 0x61,
  3506. 0x72, 0x6b, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65,
  3507. 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  3508. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  3509. 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d,
  3510. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x2f, 0x75,
  3511. 0x73, 0x65, 0x72, 0x2f, 0x73, 0x65, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x92, 0x01, 0x0a, 0x1c, 0x4d,
  3512. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x52, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67, 0x68,
  3513. 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x12, 0x2d, 0x2e, 0x61, 0x70,
  3514. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x52, 0x65,
  3515. 0x4d, 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55,
  3516. 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  3517. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  3518. 0x74, 0x79, 0x22, 0x2b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x25, 0x22, 0x20, 0x2f, 0x61, 0x70, 0x69,
  3519. 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79,
  3520. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x3a, 0x01, 0x2a, 0x12,
  3521. 0x80, 0x01, 0x0a, 0x1d, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4d, 0x61, 0x72, 0x6b, 0x48,
  3522. 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x4f, 0x6e,
  3523. 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50,
  3524. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67,
  3525. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  3526. 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x26, 0x22, 0x21, 0x2f, 0x61,
  3527. 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x71, 0x75, 0x61, 0x6c, 0x69,
  3528. 0x74, 0x79, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x65, 0x74, 0x2f, 0x6f, 0x6e, 0x65, 0x3a,
  3529. 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x13, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x53, 0x65, 0x74,
  3530. 0x55, 0x73, 0x65, 0x72, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x12, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3531. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x4c,
  3532. 0x69, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  3533. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4,
  3534. 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  3535. 0x72, 0x2f, 0x62, 0x6c, 0x61, 0x63, 0x6b, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6d, 0x6f, 0x72,
  3536. 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x7e, 0x0a, 0x1c, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x44,
  3537. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79,
  3538. 0x55, 0x73, 0x65, 0x72, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  3539. 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a,
  3540. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  3541. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x25, 0x22,
  3542. 0x20, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x71, 0x75,
  3543. 0x61, 0x6c, 0x69, 0x74, 0x79, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x64, 0x65, 0x6c, 0x65, 0x74,
  3544. 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x88, 0x01, 0x0a, 0x16, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  3545. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12,
  3546. 0x2b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e,
  3547. 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  3548. 0x56, 0x6f, 0x69, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67,
  3549. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  3550. 0x6d, 0x70, 0x74, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61,
  3551. 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  3552. 0x56, 0x6f, 0x69, 0x63, 0x65, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12,
  3553. 0x91, 0x01, 0x0a, 0x19, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74,
  3554. 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x12, 0x2e, 0x2e,
  3555. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67,
  3556. 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x69,
  3557. 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e,
  3558. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  3559. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x26, 0x22, 0x21, 0x2f,
  3560. 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72,
  3561. 0x2f, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
  3562. 0x3a, 0x01, 0x2a, 0x12, 0x94, 0x01, 0x0a, 0x1a, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55,
  3563. 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75,
  3564. 0x72, 0x65, 0x12, 0x2f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3565. 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72,
  3566. 0x73, 0x6f, 0x6e, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x52, 0x65, 0x71, 0x75,
  3567. 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  3568. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2d, 0x82, 0xd3, 0xe4,
  3569. 0x93, 0x02, 0x27, 0x22, 0x22, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  3570. 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65,
  3571. 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x8b, 0x01, 0x0a, 0x17, 0x4d,
  3572. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72,
  3573. 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x12, 0x2c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  3574. 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74,
  3575. 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x52, 0x65, 0x71,
  3576. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  3577. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2a, 0x82, 0xd3,
  3578. 0xe4, 0x93, 0x02, 0x24, 0x22, 0x1f, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67,
  3579. 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x2f, 0x75,
  3580. 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x85, 0x01, 0x0a, 0x15, 0x4d, 0x61, 0x6e,
  3581. 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61,
  3582. 0x6d, 0x65, 0x12, 0x2a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3583. 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72,
  3584. 0x73, 0x6f, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16,
  3585. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  3586. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d,
  3587. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65,
  3588. 0x72, 0x2f, 0x6e, 0x61, 0x6d, 0x65, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a,
  3589. 0x12, 0x8b, 0x01, 0x0a, 0x17, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61,
  3590. 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x57, 0x65, 0x69, 0x67, 0x68, 0x74, 0x12, 0x2c, 0x2e, 0x61,
  3591. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  3592. 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x57, 0x65, 0x69,
  3593. 0x67, 0x68, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  3594. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  3595. 0x74, 0x79, 0x22, 0x2a, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x24, 0x22, 0x1f, 0x2f, 0x61, 0x70, 0x69,
  3596. 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x77, 0x65,
  3597. 0x69, 0x67, 0x68, 0x74, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x8c,
  3598. 0x01, 0x0a, 0x18, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  3599. 0x55, 0x73, 0x65, 0x72, 0x49, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x12, 0x2d, 0x2e, 0x61, 0x70,
  3600. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  3601. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x73, 0x42, 0x6c,
  3602. 0x61, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  3603. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  3604. 0x74, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69,
  3605. 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x62, 0x6c,
  3606. 0x61, 0x63, 0x6b, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x84, 0x01,
  3607. 0x0a, 0x17, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55,
  3608. 0x73, 0x65, 0x72, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3609. 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61,
  3610. 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75,
  3611. 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  3612. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4,
  3613. 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  3614. 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x2f, 0x61, 0x64,
  3615. 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x40, 0x0a, 0x0c, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x44,
  3616. 0x42, 0x4d, 0x73, 0x67, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  3617. 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a,
  3618. 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72,
  3619. 0x73, 0x6f, 0x6e, 0x4d, 0x73, 0x67, 0x12, 0x45, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73,
  3620. 0x65, 0x72, 0x44, 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  3621. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x4c, 0x69,
  3622. 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  3623. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x57, 0x0a,
  3624. 0x13, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69, 0x70,
  3625. 0x49, 0x44, 0x44, 0x42, 0x12, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  3626. 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69,
  3627. 0x70, 0x49, 0x44, 0x44, 0x42, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67,
  3628. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  3629. 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x58, 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65,
  3630. 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4c, 0x69, 0x73,
  3631. 0x74, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46,
  3632. 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75,
  3633. 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  3634. 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
  3635. 0x12, 0x4e, 0x0a, 0x17, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x61,
  3636. 0x73, 0x74, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70,
  3637. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  3638. 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  3639. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00,
  3640. 0x12, 0x45, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67,
  3641. 0x42, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x13, 0x2e, 0x61, 0x70,
  3642. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d,
  3643. 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65,
  3644. 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x73, 0x67, 0x12, 0x82, 0x01, 0x0a, 0x22, 0x46, 0x69, 0x6e, 0x64,
  3645. 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61,
  3646. 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2d,
  3647. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65,
  3648. 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69,
  3649. 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e,
  3650. 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63,
  3651. 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74,
  3652. 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x60, 0x0a, 0x19,
  3653. 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67, 0x46, 0x72, 0x6f, 0x6d,
  3654. 0x57, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  3655. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50,
  3656. 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  3657. 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67, 0x46, 0x72, 0x6f, 0x6d,
  3658. 0x57, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x53,
  3659. 0x0a, 0x13, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43,
  3660. 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72,
  3661. 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72,
  3662. 0x65, 0x64, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  3663. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  3664. 0x70, 0x74, 0x79, 0x12, 0x4c, 0x0a, 0x19, 0x4c, 0x6f, 0x6f, 0x6b, 0x42, 0x61, 0x63, 0x6b, 0x53,
  3665. 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74,
  3666. 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65,
  3667. 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  3668. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  3669. 0x79, 0x12, 0x4a, 0x0a, 0x17, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70,
  3670. 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61,
  3671. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  3672. 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  3673. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x49, 0x0a,
  3674. 0x16, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x64, 0x75, 0x63,
  3675. 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3676. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d,
  3677. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  3678. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x41, 0x0a, 0x0e, 0x4d, 0x61, 0x74, 0x63,
  3679. 0x68, 0x69, 0x6e, 0x67, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69,
  3680. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61,
  3681. 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  3682. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x67, 0x0a, 0x1c, 0x53,
  3683. 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x55, 0x6e, 0x72,
  3684. 0x65, 0x61, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x2d, 0x2e, 0x61, 0x70,
  3685. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77, 0x4d, 0x65,
  3686. 0x73, 0x73, 0x61, 0x67, 0x65, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e,
  3687. 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  3688. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  3689. 0x74, 0x79, 0x22, 0x00, 0x12, 0x55, 0x0a, 0x1e, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77, 0x56,
  3690. 0x69, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x52, 0x65,
  3691. 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  3692. 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61,
  3693. 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3694. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x84, 0x01, 0x0a, 0x24,
  3695. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65,
  3696. 0x64, 0x4e, 0x75, 0x6d, 0x41, 0x6e, 0x64, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x55, 0x73, 0x65,
  3697. 0x72, 0x4d, 0x73, 0x67, 0x12, 0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  3698. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65,
  3699. 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x61, 0x70,
  3700. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65,
  3701. 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x41, 0x6e, 0x64, 0x52, 0x65,
  3702. 0x74, 0x75, 0x72, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x70, 0x6c, 0x79,
  3703. 0x22, 0x00, 0x12, 0x51, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65,
  3704. 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x12, 0x23, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75,
  3705. 0x73, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64,
  3706. 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e,
  3707. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f,
  3708. 0x6e, 0x44, 0x42, 0x22, 0x00, 0x12, 0x4d, 0x0a, 0x0f, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x55,
  3709. 0x73, 0x65, 0x72, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75,
  3710. 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x6c,
  3711. 0x61, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  3712. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  3713. 0x74, 0x79, 0x22, 0x00, 0x12, 0x49, 0x0a, 0x0d, 0x41, 0x64, 0x64, 0x55, 0x73, 0x65, 0x72, 0x43,
  3714. 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72,
  3715. 0x2e, 0x41, 0x64, 0x64, 0x55, 0x73, 0x65, 0x72, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x52, 0x65,
  3716. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  3717. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12,
  3718. 0x53, 0x0a, 0x17, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69,
  3719. 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x44, 0x42, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69,
  3720. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44,
  3721. 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72,
  3722. 0x2e, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74,
  3723. 0x75, 0x73, 0x22, 0x00, 0x12, 0x8b, 0x01, 0x0a, 0x21, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74,
  3724. 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x77, 0x61, 0x72, 0x64,
  3725. 0x42, 0x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x12, 0x32, 0x2e, 0x61, 0x70, 0x69,
  3726. 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66,
  3727. 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x77, 0x61, 0x72, 0x64, 0x42, 0x79, 0x41,
  3728. 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30,
  3729. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65,
  3730. 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x77, 0x61, 0x72,
  3731. 0x64, 0x42, 0x79, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x52, 0x65, 0x70, 0x6c, 0x79,
  3732. 0x22, 0x00, 0x12, 0x51, 0x0a, 0x11, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x56, 0x69,
  3733. 0x70, 0x44, 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  3734. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x4c, 0x69, 0x73,
  3735. 0x74, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e,
  3736. 0x64, 0x55, 0x73, 0x65, 0x72, 0x56, 0x69, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x42, 0x52, 0x65,
  3737. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x42, 0x3d, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65,
  3738. 0x72, 0x50, 0x01, 0x5a, 0x2f, 0x67, 0x69, 0x74, 0x2e, 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e,
  3739. 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2f, 0x70, 0x77, 0x2d, 0x70, 0x72,
  3740. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x3b,
  3741. 0x75, 0x73, 0x65, 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  3742. }
  3743. var (
  3744. file_user_proto_rawDescOnce sync.Once
  3745. file_user_proto_rawDescData = file_user_proto_rawDesc
  3746. )
  3747. func file_user_proto_rawDescGZIP() []byte {
  3748. file_user_proto_rawDescOnce.Do(func() {
  3749. file_user_proto_rawDescData = protoimpl.X.CompressGZIP(file_user_proto_rawDescData)
  3750. })
  3751. return file_user_proto_rawDescData
  3752. }
  3753. var file_user_proto_msgTypes = make([]protoimpl.MessageInfo, 46)
  3754. var file_user_proto_goTypes = []interface{}{
  3755. (*GetUserLookHandPickNumReply)(nil), // 0: api.user.GetUserLookHandPickNumReply
  3756. (*FindUserVipListDBReply)(nil), // 1: api.user.FindUserVipListDBReply
  3757. (*VipInfo)(nil), // 2: api.user.VipInfo
  3758. (*SendMsgReduceCreditRequest)(nil), // 3: api.user.SendMsgReduceCreditRequest
  3759. (*UserGetInformationAwardByActivityRequest)(nil), // 4: api.user.UserGetInformationAwardByActivityRequest
  3760. (*UserGetInformationAwardByActivityReply)(nil), // 5: api.user.UserGetInformationAwardByActivityReply
  3761. (*AddUserCreditRequest)(nil), // 6: api.user.AddUserCreditRequest
  3762. (*ReportUserBlackRequest)(nil), // 7: api.user.ReportUserBlackRequest
  3763. (*SendMessageRequest)(nil), // 8: api.user.SendMessageRequest
  3764. (*ManagerFindIsCheckQualityUserListRequest)(nil), // 9: api.user.ManagerFindIsCheckQualityUserListRequest
  3765. (*ManagerUpdateUserCreditRequest)(nil), // 10: api.user.ManagerUpdateUserCreditRequest
  3766. (*ManagerMarkHighQualityUserRequest)(nil), // 11: api.user.ManagerMarkHighQualityUserRequest
  3767. (*ManagerReMarkHighQualityUserRequest)(nil), // 12: api.user.ManagerReMarkHighQualityUserRequest
  3768. (*GetRecommendUserDBRequest)(nil), // 13: api.user.GetRecommendUserDBRequest
  3769. (*FindRecommendHighQualityUserRequest)(nil), // 14: api.user.FindRecommendHighQualityUserRequest
  3770. (*FindRecommendHighQualityUserReply)(nil), // 15: api.user.FindRecommendHighQualityUserReply
  3771. (*UpdateUserMatchedNumAndReturnUserMsgReply)(nil), // 16: api.user.UpdateUserMatchedNumAndReturnUserMsgReply
  3772. (*GetUserDBMsgFromWebsocketReply)(nil), // 17: api.user.GetUserDBMsgFromWebsocketReply
  3773. (*UpdateUserMatchedNumRequest)(nil), // 18: api.user.UpdateUserMatchedNumRequest
  3774. (*SendNewMessageUnreadReminderRequest)(nil), // 19: api.user.SendNewMessageUnreadReminderRequest
  3775. (*SendMsgReduceCreditReply)(nil), // 20: api.user.SendMsgReduceCreditReply
  3776. (*UserFreeNum)(nil), // 21: api.user.UserFreeNum
  3777. (*ReplyScripRequest)(nil), // 22: api.user.ReplyScripRequest
  3778. (*PersonLookScripRequest)(nil), // 23: api.user.PersonLookScripRequest
  3779. (*UserFindScripRequest)(nil), // 24: api.user.UserFindScripRequest
  3780. (*DeleteScripRequest)(nil), // 25: api.user.DeleteScripRequest
  3781. (*CreateScripRequest)(nil), // 26: api.user.CreateScripRequest
  3782. (*FindMatchingAvatarAndNumReply)(nil), // 27: api.user.FindMatchingAvatarAndNumReply
  3783. (*UserRechargeRequest)(nil), // 28: api.user.UserRechargeRequest
  3784. (*RechargeList)(nil), // 29: api.user.RechargeList
  3785. (*VipRechargeList)(nil), // 30: api.user.VipRechargeList
  3786. (*VipRechargeInfo)(nil), // 31: api.user.VipRechargeInfo
  3787. (*RechargeInfo)(nil), // 32: api.user.RechargeInfo
  3788. (*InformationStatus)(nil), // 33: api.user.InformationStatus
  3789. (*UserBalance)(nil), // 34: api.user.UserBalance
  3790. (*UserFindChatListReply)(nil), // 35: api.user.UserFindChatListReply
  3791. (*UserChatInfo)(nil), // 36: api.user.UserChatInfo
  3792. (*UserInfo)(nil), // 37: api.user.UserInfo
  3793. (*KeyRequest)(nil), // 38: api.user.KeyRequest
  3794. (*CreatePayRequest)(nil), // 39: api.user.CreatePayRequest
  3795. (*PayInfo)(nil), // 40: api.user.PayInfo
  3796. (*PayOrderInfo)(nil), // 41: api.user.PayOrderInfo
  3797. (*PayOrderList)(nil), // 42: api.user.PayOrderList
  3798. (*FindPayOrderListRequest)(nil), // 43: api.user.FindPayOrderListRequest
  3799. (*PayCallbackReply)(nil), // 44: api.user.PayCallbackReply
  3800. nil, // 45: api.user.FindUserVipListDBReply.VipMapEntry
  3801. (*common.Message)(nil), // 46: api.common.Message
  3802. (*structpb.Value)(nil), // 47: google.protobuf.Value
  3803. (*emptypb.Empty)(nil), // 48: google.protobuf.Empty
  3804. (*common.SendPhoneCodeRequest)(nil), // 49: api.common.SendPhoneCodeRequest
  3805. (*common.CheckPhoneCodeRequest)(nil), // 50: api.common.CheckPhoneCodeRequest
  3806. (*common.UpdateInformationRequest)(nil), // 51: api.common.UpdateInformationRequest
  3807. (*common.CreateChatRoomParam)(nil), // 52: api.common.CreateChatRoomParam
  3808. (*common.PersonParam)(nil), // 53: api.common.PersonParam
  3809. (*common.ListPageRequest)(nil), // 54: api.common.ListPageRequest
  3810. (*common.WxConfReq)(nil), // 55: api.common.WxConfReq
  3811. (*common.SexReq)(nil), // 56: api.common.SexReq
  3812. (*common.ListPage2Request)(nil), // 57: api.common.ListPage2Request
  3813. (*common.FindChatRecordListRequest)(nil), // 58: api.common.FindChatRecordListRequest
  3814. (*common.FindChatRoomMsgRequest)(nil), // 59: api.common.FindChatRoomMsgRequest
  3815. (*common.MemeRequest)(nil), // 60: api.common.MemeRequest
  3816. (*common.FindChatTopicRequest)(nil), // 61: api.common.FindChatTopicRequest
  3817. (*common.RandomNum)(nil), // 62: api.common.RandomNum
  3818. (*common.RandomNumAndSex)(nil), // 63: api.common.RandomNumAndSex
  3819. (*common.ReportChatRequest)(nil), // 64: api.common.ReportChatRequest
  3820. (*common.UpdateLastScripIDRequest)(nil), // 65: api.common.UpdateLastScripIDRequest
  3821. (*common.FindScripRequest)(nil), // 66: api.common.FindScripRequest
  3822. (*common.RoomIDRequest)(nil), // 67: api.common.RoomIDRequest
  3823. (*common.PartnerIDParam)(nil), // 68: api.common.PartnerIDParam
  3824. (*common.PersonIDParam)(nil), // 69: api.common.PersonIDParam
  3825. (*common.ManagerFindPersonListRequest)(nil), // 70: api.common.ManagerFindPersonListRequest
  3826. (*common.ManagerFindCanHandpickUserListRequest)(nil), // 71: api.common.ManagerFindCanHandpickUserListRequest
  3827. (*common.ManagerSetHandpickUserRequest)(nil), // 72: api.common.ManagerSetHandpickUserRequest
  3828. (*common.ManagerSetHandpickUserOneRequest)(nil), // 73: api.common.ManagerSetHandpickUserOneRequest
  3829. (*common.PersonIDList)(nil), // 74: api.common.PersonIDList
  3830. (*common.ManagerUpdatePersonVoiceRequest)(nil), // 75: api.common.ManagerUpdatePersonVoiceRequest
  3831. (*common.ManagerUpdatePersonPicturesRequest)(nil), // 76: api.common.ManagerUpdatePersonPicturesRequest
  3832. (*common.ManagerUpdatePersonSignatureRequest)(nil), // 77: api.common.ManagerUpdatePersonSignatureRequest
  3833. (*common.ManagerUpdatePersonAvatarRequest)(nil), // 78: api.common.ManagerUpdatePersonAvatarRequest
  3834. (*common.ManagerUpdatePersonNameRequest)(nil), // 79: api.common.ManagerUpdatePersonNameRequest
  3835. (*common.ManagerUpdatePersonWeightRequest)(nil), // 80: api.common.ManagerUpdatePersonWeightRequest
  3836. (*common.ManagerUpdatePersonIsBlackRequest)(nil), // 81: api.common.ManagerUpdatePersonIsBlackRequest
  3837. (*common.UpdateLastScripIDDBRequest)(nil), // 82: api.common.UpdateLastScripIDDBRequest
  3838. (*common.FindRecommendRequest)(nil), // 83: api.common.FindRecommendRequest
  3839. (*common.IDParam)(nil), // 84: api.common.IDParam
  3840. (*chat.RoomReply)(nil), // 85: api.chat.RoomReply
  3841. (*common.HomeInfo)(nil), // 86: api.common.HomeInfo
  3842. (*common.LookedAndLikedNum)(nil), // 87: api.common.LookedAndLikedNum
  3843. (*statistics.LookAndLikeListReply)(nil), // 88: api.statistics.LookAndLikeListReply
  3844. (*common.WxConfResponse)(nil), // 89: api.common.WxConfResponse
  3845. (*common.TagListReply)(nil), // 90: api.common.TagListReply
  3846. (*common.RecommendPersonListReply)(nil), // 91: api.common.RecommendPersonListReply
  3847. (*common.ChatRecordListReply)(nil), // 92: api.common.ChatRecordListReply
  3848. (*common.ChatRoomMsg)(nil), // 93: api.common.ChatRoomMsg
  3849. (*common.IsLike)(nil), // 94: api.common.IsLike
  3850. (*common.MemeList)(nil), // 95: api.common.MemeList
  3851. (*common.ChatTopicList)(nil), // 96: api.common.ChatTopicList
  3852. (*common.CommonTextList)(nil), // 97: api.common.CommonTextList
  3853. (*common.MemeTitleList)(nil), // 98: api.common.MemeTitleList
  3854. (*common.ChatCardInfo)(nil), // 99: api.common.ChatCardInfo
  3855. (*common.FindOverSevenDayAvatarReply)(nil), // 100: api.common.FindOverSevenDayAvatarReply
  3856. (*common.ScripID)(nil), // 101: api.common.ScripID
  3857. (*common.ScripReply)(nil), // 102: api.common.ScripReply
  3858. (*common.ScripInfo)(nil), // 103: api.common.ScripInfo
  3859. (*common.ChatRecordInfo)(nil), // 104: api.common.ChatRecordInfo
  3860. (*chat.UnreadNumReply)(nil), // 105: api.chat.UnreadNumReply
  3861. (*chat.UserRoomInfo)(nil), // 106: api.chat.UserRoomInfo
  3862. (*chat.CheckUserPartnerIsRelationshipReply)(nil), // 107: api.chat.CheckUserPartnerIsRelationshipReply
  3863. (*common.AddFriendMessageInfo)(nil), // 108: api.common.AddFriendMessageInfo
  3864. (*statistics.LookAndLikeMessageReply)(nil), // 109: api.statistics.LookAndLikeMessageReply
  3865. (*statistics.LookMessageReply)(nil), // 110: api.statistics.LookMessageReply
  3866. (*chat.WindowInfo)(nil), // 111: api.chat.WindowInfo
  3867. (*chat.GetRandomMatchingReply)(nil), // 112: api.chat.GetRandomMatchingReply
  3868. (*common.SendMessageReply)(nil), // 113: api.common.SendMessageReply
  3869. (*common.HandpickPersonListReply)(nil), // 114: api.common.HandpickPersonListReply
  3870. (*common.ManagerFindPersonListReply)(nil), // 115: api.common.ManagerFindPersonListReply
  3871. (*common.ManagerFindPersonListReply2)(nil), // 116: api.common.ManagerFindPersonListReply2
  3872. (*common.ManagerFindCanHandpickUserListReply)(nil), // 117: api.common.ManagerFindCanHandpickUserListReply
  3873. (*common.PersonMsg)(nil), // 118: api.common.PersonMsg
  3874. (*common.PersonDBReply)(nil), // 119: api.common.PersonDBReply
  3875. (*common.PersonDB)(nil), // 120: api.common.PersonDB
  3876. }
  3877. var file_user_proto_depIdxs = []int32{
  3878. 45, // 0: api.user.FindUserVipListDBReply.vipMap:type_name -> api.user.FindUserVipListDBReply.VipMapEntry
  3879. 46, // 1: api.user.SendMessageRequest.message:type_name -> api.common.Message
  3880. 46, // 2: api.user.ReplyScripRequest.message:type_name -> api.common.Message
  3881. 32, // 3: api.user.RechargeList.list:type_name -> api.user.RechargeInfo
  3882. 31, // 4: api.user.VipRechargeList.list:type_name -> api.user.VipRechargeInfo
  3883. 36, // 5: api.user.UserFindChatListReply.list:type_name -> api.user.UserChatInfo
  3884. 47, // 6: api.user.PayInfo.payInfo:type_name -> google.protobuf.Value
  3885. 41, // 7: api.user.PayOrderList.list:type_name -> api.user.PayOrderInfo
  3886. 2, // 8: api.user.FindUserVipListDBReply.VipMapEntry.value:type_name -> api.user.VipInfo
  3887. 48, // 9: api.user.User.GetUserInfo:input_type -> google.protobuf.Empty
  3888. 49, // 10: api.user.User.SendPhoneCode:input_type -> api.common.SendPhoneCodeRequest
  3889. 50, // 11: api.user.User.CheckPhoneCode:input_type -> api.common.CheckPhoneCodeRequest
  3890. 51, // 12: api.user.User.UpdateUserInformation:input_type -> api.common.UpdateInformationRequest
  3891. 52, // 13: api.user.User.CreateUserPersonRoom:input_type -> api.common.CreateChatRoomParam
  3892. 48, // 14: api.user.User.GetUserBalance:input_type -> google.protobuf.Empty
  3893. 53, // 15: api.user.User.UserGetHomeInfo:input_type -> api.common.PersonParam
  3894. 53, // 16: api.user.User.UserGetPersonLikedAndLooked:input_type -> api.common.PersonParam
  3895. 54, // 17: api.user.User.FindLookList:input_type -> api.common.ListPageRequest
  3896. 55, // 18: api.user.User.WxConf:input_type -> api.common.WxConfReq
  3897. 56, // 19: api.user.User.FindTagListBySex:input_type -> api.common.SexReq
  3898. 57, // 20: api.user.User.FindOnlineList:input_type -> api.common.ListPage2Request
  3899. 54, // 21: api.user.User.FindWithinSevenDayRoomList:input_type -> api.common.ListPageRequest
  3900. 54, // 22: api.user.User.FindOverSevenDayRoomList:input_type -> api.common.ListPageRequest
  3901. 54, // 23: api.user.User.FindCloseFriendRoomList:input_type -> api.common.ListPageRequest
  3902. 58, // 24: api.user.User.FindChatRecordList:input_type -> api.common.FindChatRecordListRequest
  3903. 59, // 25: api.user.User.FindChatRoomMsg:input_type -> api.common.FindChatRoomMsgRequest
  3904. 53, // 26: api.user.User.GetUserIsLike:input_type -> api.common.PersonParam
  3905. 60, // 27: api.user.User.FindMemeByType:input_type -> api.common.MemeRequest
  3906. 61, // 28: api.user.User.FindChatTopic:input_type -> api.common.FindChatTopicRequest
  3907. 62, // 29: api.user.User.RandomMeme:input_type -> api.common.RandomNum
  3908. 63, // 30: api.user.User.RandomSwiftMessage:input_type -> api.common.RandomNumAndSex
  3909. 48, // 31: api.user.User.FindMemeTitle:input_type -> google.protobuf.Empty
  3910. 53, // 32: api.user.User.UserGetChatCard:input_type -> api.common.PersonParam
  3911. 48, // 33: api.user.User.FindChatTopicTitle:input_type -> google.protobuf.Empty
  3912. 53, // 34: api.user.User.UserLike:input_type -> api.common.PersonParam
  3913. 53, // 35: api.user.User.UserUnLike:input_type -> api.common.PersonParam
  3914. 64, // 36: api.user.User.Report:input_type -> api.common.ReportChatRequest
  3915. 48, // 37: api.user.User.FindOverSevenDayAvatar:input_type -> google.protobuf.Empty
  3916. 65, // 38: api.user.User.UpdateLastScripID:input_type -> api.common.UpdateLastScripIDRequest
  3917. 26, // 39: api.user.User.CreateScrip:input_type -> api.user.CreateScripRequest
  3918. 25, // 40: api.user.User.DeleteScrip:input_type -> api.user.DeleteScripRequest
  3919. 24, // 41: api.user.User.FindMyScrip:input_type -> api.user.UserFindScripRequest
  3920. 66, // 42: api.user.User.FindOtherScrip:input_type -> api.common.FindScripRequest
  3921. 24, // 43: api.user.User.FindRecommendScrip:input_type -> api.user.UserFindScripRequest
  3922. 23, // 44: api.user.User.PersonLookScrip:input_type -> api.user.PersonLookScripRequest
  3923. 48, // 45: api.user.User.PersonClickLookBack:input_type -> google.protobuf.Empty
  3924. 22, // 46: api.user.User.PersonReplyScrip:input_type -> api.user.ReplyScripRequest
  3925. 67, // 47: api.user.User.UserDeleteChat:input_type -> api.common.RoomIDRequest
  3926. 48, // 48: api.user.User.GetUserAllUnreadNum:input_type -> google.protobuf.Empty
  3927. 53, // 49: api.user.User.GetUserRoomByPerson:input_type -> api.common.PersonParam
  3928. 54, // 50: api.user.User.FindLikeList:input_type -> api.common.ListPageRequest
  3929. 54, // 51: api.user.User.FindLikedList:input_type -> api.common.ListPageRequest
  3930. 67, // 52: api.user.User.UserSetBlackChat:input_type -> api.common.RoomIDRequest
  3931. 68, // 53: api.user.User.CheckUserPartnerIsRelationship:input_type -> api.common.PartnerIDParam
  3932. 38, // 54: api.user.User.GetPartnerCircleInfo:input_type -> api.user.KeyRequest
  3933. 48, // 55: api.user.User.GetLookAndLikeStatisticsMessage:input_type -> google.protobuf.Empty
  3934. 48, // 56: api.user.User.GetUserLookNum:input_type -> google.protobuf.Empty
  3935. 48, // 57: api.user.User.UserFinishInformation:input_type -> google.protobuf.Empty
  3936. 48, // 58: api.user.User.UserInformationStatus:input_type -> google.protobuf.Empty
  3937. 48, // 59: api.user.User.UserGetInformationAward:input_type -> google.protobuf.Empty
  3938. 53, // 60: api.user.User.UnlockLookRecord:input_type -> api.common.PersonParam
  3939. 28, // 61: api.user.User.UserRecharge:input_type -> api.user.UserRechargeRequest
  3940. 28, // 62: api.user.User.UserRechargeVip:input_type -> api.user.UserRechargeRequest
  3941. 48, // 63: api.user.User.FindRechargeList:input_type -> google.protobuf.Empty
  3942. 48, // 64: api.user.User.FindVipRechargeList:input_type -> google.protobuf.Empty
  3943. 43, // 65: api.user.User.FindPayList:input_type -> api.user.FindPayOrderListRequest
  3944. 48, // 66: api.user.User.FindRecommendPersonList:input_type -> google.protobuf.Empty
  3945. 48, // 67: api.user.User.FindMatchingAvatarAndNum:input_type -> google.protobuf.Empty
  3946. 48, // 68: api.user.User.GetWindowInfo:input_type -> google.protobuf.Empty
  3947. 48, // 69: api.user.User.GetUserFreeNum:input_type -> google.protobuf.Empty
  3948. 56, // 70: api.user.User.GetRandomMatching:input_type -> api.common.SexReq
  3949. 67, // 71: api.user.User.UnlockVoice:input_type -> api.common.RoomIDRequest
  3950. 67, // 72: api.user.User.UnlockPicture:input_type -> api.common.RoomIDRequest
  3951. 48, // 73: api.user.User.UpdateUserIsRegister:input_type -> google.protobuf.Empty
  3952. 52, // 74: api.user.User.CreateUserPartnerRoom:input_type -> api.common.CreateChatRoomParam
  3953. 8, // 75: api.user.User.SendMessage:input_type -> api.user.SendMessageRequest
  3954. 48, // 76: api.user.User.GetVipInfo:input_type -> google.protobuf.Empty
  3955. 48, // 77: api.user.User.FindHandpickUser:input_type -> google.protobuf.Empty
  3956. 48, // 78: api.user.User.GetUserLookHandPickNum:input_type -> google.protobuf.Empty
  3957. 69, // 79: api.user.User.SetUserLookHandPickNum:input_type -> api.common.PersonIDParam
  3958. 70, // 80: api.user.User.ManagerFindUserList:input_type -> api.common.ManagerFindPersonListRequest
  3959. 70, // 81: api.user.User.ManagerFindInformationUserList:input_type -> api.common.ManagerFindPersonListRequest
  3960. 9, // 82: api.user.User.ManagerFindIsCheckQualityUserList:input_type -> api.user.ManagerFindIsCheckQualityUserListRequest
  3961. 70, // 83: api.user.User.ManagerFindHighQualityUserList:input_type -> api.common.ManagerFindPersonListRequest
  3962. 71, // 84: api.user.User.ManagerFindCanHandpickUserList:input_type -> api.common.ManagerFindCanHandpickUserListRequest
  3963. 72, // 85: api.user.User.ManagerSetHandpickUser:input_type -> api.common.ManagerSetHandpickUserRequest
  3964. 73, // 86: api.user.User.ManagerSetHandpickUserOne:input_type -> api.common.ManagerSetHandpickUserOneRequest
  3965. 11, // 87: api.user.User.ManagerMarkHighQualityUser:input_type -> api.user.ManagerMarkHighQualityUserRequest
  3966. 12, // 88: api.user.User.ManagerReMarkHighQualityUser:input_type -> api.user.ManagerReMarkHighQualityUserRequest
  3967. 69, // 89: api.user.User.ManagerMarkHighQualityUserOne:input_type -> api.common.PersonIDParam
  3968. 74, // 90: api.user.User.ManagerSetUserBlack:input_type -> api.common.PersonIDList
  3969. 69, // 91: api.user.User.ManagerDeleteHighQualityUser:input_type -> api.common.PersonIDParam
  3970. 75, // 92: api.user.User.ManagerUpdateUserVoice:input_type -> api.common.ManagerUpdatePersonVoiceRequest
  3971. 76, // 93: api.user.User.ManagerUpdateUserPictures:input_type -> api.common.ManagerUpdatePersonPicturesRequest
  3972. 77, // 94: api.user.User.ManagerUpdateUserSignature:input_type -> api.common.ManagerUpdatePersonSignatureRequest
  3973. 78, // 95: api.user.User.ManagerUpdateUserAvatar:input_type -> api.common.ManagerUpdatePersonAvatarRequest
  3974. 79, // 96: api.user.User.ManagerUpdateUserName:input_type -> api.common.ManagerUpdatePersonNameRequest
  3975. 80, // 97: api.user.User.ManagerUpdateUserWeight:input_type -> api.common.ManagerUpdatePersonWeightRequest
  3976. 81, // 98: api.user.User.ManagerUpdateUserIsBlack:input_type -> api.common.ManagerUpdatePersonIsBlackRequest
  3977. 10, // 99: api.user.User.ManagerUpdateUserCredit:input_type -> api.user.ManagerUpdateUserCreditRequest
  3978. 69, // 100: api.user.User.GetUserDBMsg:input_type -> api.common.PersonIDParam
  3979. 74, // 101: api.user.User.FindUserDBList:input_type -> api.common.PersonIDList
  3980. 82, // 102: api.user.User.UpdateLastScripIDDB:input_type -> api.common.UpdateLastScripIDDBRequest
  3981. 83, // 103: api.user.User.FindRecommendUserDBList:input_type -> api.common.FindRecommendRequest
  3982. 69, // 104: api.user.User.UpdateUserLastLoginTime:input_type -> api.common.PersonIDParam
  3983. 84, // 105: api.user.User.GetUserDBMsgByAccountID:input_type -> api.common.IDParam
  3984. 14, // 106: api.user.User.FindRecommendHighQualityUserDBList:input_type -> api.user.FindRecommendHighQualityUserRequest
  3985. 69, // 107: api.user.User.GetUserDBMsgFromWebsocket:input_type -> api.common.PersonIDParam
  3986. 3, // 108: api.user.User.SendMsgReduceCredit:input_type -> api.user.SendMsgReduceCreditRequest
  3987. 53, // 109: api.user.User.LookBackScripReduceCredit:input_type -> api.common.PersonParam
  3988. 53, // 110: api.user.User.CreateScripReduceCredit:input_type -> api.common.PersonParam
  3989. 53, // 111: api.user.User.ReplyScripReduceCredit:input_type -> api.common.PersonParam
  3990. 53, // 112: api.user.User.MatchingCredit:input_type -> api.common.PersonParam
  3991. 19, // 113: api.user.User.SendNewMessageUnreadReminder:input_type -> api.user.SendNewMessageUnreadReminderRequest
  3992. 69, // 114: api.user.User.SendNewVisitorTemplateReminder:input_type -> api.common.PersonIDParam
  3993. 18, // 115: api.user.User.UpdateUserMatchedNumAndReturnUserMsg:input_type -> api.user.UpdateUserMatchedNumRequest
  3994. 13, // 116: api.user.User.GetRecommendUserDB:input_type -> api.user.GetRecommendUserDBRequest
  3995. 7, // 117: api.user.User.ReportUserBlack:input_type -> api.user.ReportUserBlackRequest
  3996. 6, // 118: api.user.User.AddUserCredit:input_type -> api.user.AddUserCreditRequest
  3997. 69, // 119: api.user.User.UserInformationStatusDB:input_type -> api.common.PersonIDParam
  3998. 4, // 120: api.user.User.UserGetInformationAwardByActivity:input_type -> api.user.UserGetInformationAwardByActivityRequest
  3999. 74, // 121: api.user.User.FindUserVipDBList:input_type -> api.common.PersonIDList
  4000. 37, // 122: api.user.User.GetUserInfo:output_type -> api.user.UserInfo
  4001. 48, // 123: api.user.User.SendPhoneCode:output_type -> google.protobuf.Empty
  4002. 48, // 124: api.user.User.CheckPhoneCode:output_type -> google.protobuf.Empty
  4003. 48, // 125: api.user.User.UpdateUserInformation:output_type -> google.protobuf.Empty
  4004. 85, // 126: api.user.User.CreateUserPersonRoom:output_type -> api.chat.RoomReply
  4005. 34, // 127: api.user.User.GetUserBalance:output_type -> api.user.UserBalance
  4006. 86, // 128: api.user.User.UserGetHomeInfo:output_type -> api.common.HomeInfo
  4007. 87, // 129: api.user.User.UserGetPersonLikedAndLooked:output_type -> api.common.LookedAndLikedNum
  4008. 88, // 130: api.user.User.FindLookList:output_type -> api.statistics.LookAndLikeListReply
  4009. 89, // 131: api.user.User.WxConf:output_type -> api.common.WxConfResponse
  4010. 90, // 132: api.user.User.FindTagListBySex:output_type -> api.common.TagListReply
  4011. 91, // 133: api.user.User.FindOnlineList:output_type -> api.common.RecommendPersonListReply
  4012. 35, // 134: api.user.User.FindWithinSevenDayRoomList:output_type -> api.user.UserFindChatListReply
  4013. 35, // 135: api.user.User.FindOverSevenDayRoomList:output_type -> api.user.UserFindChatListReply
  4014. 35, // 136: api.user.User.FindCloseFriendRoomList:output_type -> api.user.UserFindChatListReply
  4015. 92, // 137: api.user.User.FindChatRecordList:output_type -> api.common.ChatRecordListReply
  4016. 93, // 138: api.user.User.FindChatRoomMsg:output_type -> api.common.ChatRoomMsg
  4017. 94, // 139: api.user.User.GetUserIsLike:output_type -> api.common.IsLike
  4018. 95, // 140: api.user.User.FindMemeByType:output_type -> api.common.MemeList
  4019. 96, // 141: api.user.User.FindChatTopic:output_type -> api.common.ChatTopicList
  4020. 97, // 142: api.user.User.RandomMeme:output_type -> api.common.CommonTextList
  4021. 97, // 143: api.user.User.RandomSwiftMessage:output_type -> api.common.CommonTextList
  4022. 98, // 144: api.user.User.FindMemeTitle:output_type -> api.common.MemeTitleList
  4023. 99, // 145: api.user.User.UserGetChatCard:output_type -> api.common.ChatCardInfo
  4024. 98, // 146: api.user.User.FindChatTopicTitle:output_type -> api.common.MemeTitleList
  4025. 48, // 147: api.user.User.UserLike:output_type -> google.protobuf.Empty
  4026. 48, // 148: api.user.User.UserUnLike:output_type -> google.protobuf.Empty
  4027. 48, // 149: api.user.User.Report:output_type -> google.protobuf.Empty
  4028. 100, // 150: api.user.User.FindOverSevenDayAvatar:output_type -> api.common.FindOverSevenDayAvatarReply
  4029. 48, // 151: api.user.User.UpdateLastScripID:output_type -> google.protobuf.Empty
  4030. 101, // 152: api.user.User.CreateScrip:output_type -> api.common.ScripID
  4031. 48, // 153: api.user.User.DeleteScrip:output_type -> google.protobuf.Empty
  4032. 102, // 154: api.user.User.FindMyScrip:output_type -> api.common.ScripReply
  4033. 102, // 155: api.user.User.FindOtherScrip:output_type -> api.common.ScripReply
  4034. 102, // 156: api.user.User.FindRecommendScrip:output_type -> api.common.ScripReply
  4035. 48, // 157: api.user.User.PersonLookScrip:output_type -> google.protobuf.Empty
  4036. 103, // 158: api.user.User.PersonClickLookBack:output_type -> api.common.ScripInfo
  4037. 104, // 159: api.user.User.PersonReplyScrip:output_type -> api.common.ChatRecordInfo
  4038. 48, // 160: api.user.User.UserDeleteChat:output_type -> google.protobuf.Empty
  4039. 105, // 161: api.user.User.GetUserAllUnreadNum:output_type -> api.chat.UnreadNumReply
  4040. 106, // 162: api.user.User.GetUserRoomByPerson:output_type -> api.chat.UserRoomInfo
  4041. 88, // 163: api.user.User.FindLikeList:output_type -> api.statistics.LookAndLikeListReply
  4042. 88, // 164: api.user.User.FindLikedList:output_type -> api.statistics.LookAndLikeListReply
  4043. 48, // 165: api.user.User.UserSetBlackChat:output_type -> google.protobuf.Empty
  4044. 107, // 166: api.user.User.CheckUserPartnerIsRelationship:output_type -> api.chat.CheckUserPartnerIsRelationshipReply
  4045. 108, // 167: api.user.User.GetPartnerCircleInfo:output_type -> api.common.AddFriendMessageInfo
  4046. 109, // 168: api.user.User.GetLookAndLikeStatisticsMessage:output_type -> api.statistics.LookAndLikeMessageReply
  4047. 110, // 169: api.user.User.GetUserLookNum:output_type -> api.statistics.LookMessageReply
  4048. 48, // 170: api.user.User.UserFinishInformation:output_type -> google.protobuf.Empty
  4049. 33, // 171: api.user.User.UserInformationStatus:output_type -> api.user.InformationStatus
  4050. 48, // 172: api.user.User.UserGetInformationAward:output_type -> google.protobuf.Empty
  4051. 48, // 173: api.user.User.UnlockLookRecord:output_type -> google.protobuf.Empty
  4052. 40, // 174: api.user.User.UserRecharge:output_type -> api.user.PayInfo
  4053. 40, // 175: api.user.User.UserRechargeVip:output_type -> api.user.PayInfo
  4054. 29, // 176: api.user.User.FindRechargeList:output_type -> api.user.RechargeList
  4055. 30, // 177: api.user.User.FindVipRechargeList:output_type -> api.user.VipRechargeList
  4056. 42, // 178: api.user.User.FindPayList:output_type -> api.user.PayOrderList
  4057. 91, // 179: api.user.User.FindRecommendPersonList:output_type -> api.common.RecommendPersonListReply
  4058. 27, // 180: api.user.User.FindMatchingAvatarAndNum:output_type -> api.user.FindMatchingAvatarAndNumReply
  4059. 111, // 181: api.user.User.GetWindowInfo:output_type -> api.chat.WindowInfo
  4060. 21, // 182: api.user.User.GetUserFreeNum:output_type -> api.user.UserFreeNum
  4061. 112, // 183: api.user.User.GetRandomMatching:output_type -> api.chat.GetRandomMatchingReply
  4062. 48, // 184: api.user.User.UnlockVoice:output_type -> google.protobuf.Empty
  4063. 48, // 185: api.user.User.UnlockPicture:output_type -> google.protobuf.Empty
  4064. 48, // 186: api.user.User.UpdateUserIsRegister:output_type -> google.protobuf.Empty
  4065. 85, // 187: api.user.User.CreateUserPartnerRoom:output_type -> api.chat.RoomReply
  4066. 113, // 188: api.user.User.SendMessage:output_type -> api.common.SendMessageReply
  4067. 2, // 189: api.user.User.GetVipInfo:output_type -> api.user.VipInfo
  4068. 114, // 190: api.user.User.FindHandpickUser:output_type -> api.common.HandpickPersonListReply
  4069. 0, // 191: api.user.User.GetUserLookHandPickNum:output_type -> api.user.GetUserLookHandPickNumReply
  4070. 48, // 192: api.user.User.SetUserLookHandPickNum:output_type -> google.protobuf.Empty
  4071. 115, // 193: api.user.User.ManagerFindUserList:output_type -> api.common.ManagerFindPersonListReply
  4072. 115, // 194: api.user.User.ManagerFindInformationUserList:output_type -> api.common.ManagerFindPersonListReply
  4073. 116, // 195: api.user.User.ManagerFindIsCheckQualityUserList:output_type -> api.common.ManagerFindPersonListReply2
  4074. 115, // 196: api.user.User.ManagerFindHighQualityUserList:output_type -> api.common.ManagerFindPersonListReply
  4075. 117, // 197: api.user.User.ManagerFindCanHandpickUserList:output_type -> api.common.ManagerFindCanHandpickUserListReply
  4076. 48, // 198: api.user.User.ManagerSetHandpickUser:output_type -> google.protobuf.Empty
  4077. 48, // 199: api.user.User.ManagerSetHandpickUserOne:output_type -> google.protobuf.Empty
  4078. 48, // 200: api.user.User.ManagerMarkHighQualityUser:output_type -> google.protobuf.Empty
  4079. 48, // 201: api.user.User.ManagerReMarkHighQualityUser:output_type -> google.protobuf.Empty
  4080. 48, // 202: api.user.User.ManagerMarkHighQualityUserOne:output_type -> google.protobuf.Empty
  4081. 48, // 203: api.user.User.ManagerSetUserBlack:output_type -> google.protobuf.Empty
  4082. 48, // 204: api.user.User.ManagerDeleteHighQualityUser:output_type -> google.protobuf.Empty
  4083. 48, // 205: api.user.User.ManagerUpdateUserVoice:output_type -> google.protobuf.Empty
  4084. 48, // 206: api.user.User.ManagerUpdateUserPictures:output_type -> google.protobuf.Empty
  4085. 48, // 207: api.user.User.ManagerUpdateUserSignature:output_type -> google.protobuf.Empty
  4086. 48, // 208: api.user.User.ManagerUpdateUserAvatar:output_type -> google.protobuf.Empty
  4087. 48, // 209: api.user.User.ManagerUpdateUserName:output_type -> google.protobuf.Empty
  4088. 48, // 210: api.user.User.ManagerUpdateUserWeight:output_type -> google.protobuf.Empty
  4089. 48, // 211: api.user.User.ManagerUpdateUserIsBlack:output_type -> google.protobuf.Empty
  4090. 48, // 212: api.user.User.ManagerUpdateUserCredit:output_type -> google.protobuf.Empty
  4091. 118, // 213: api.user.User.GetUserDBMsg:output_type -> api.common.PersonMsg
  4092. 119, // 214: api.user.User.FindUserDBList:output_type -> api.common.PersonDBReply
  4093. 48, // 215: api.user.User.UpdateLastScripIDDB:output_type -> google.protobuf.Empty
  4094. 119, // 216: api.user.User.FindRecommendUserDBList:output_type -> api.common.PersonDBReply
  4095. 48, // 217: api.user.User.UpdateUserLastLoginTime:output_type -> google.protobuf.Empty
  4096. 118, // 218: api.user.User.GetUserDBMsgByAccountID:output_type -> api.common.PersonMsg
  4097. 15, // 219: api.user.User.FindRecommendHighQualityUserDBList:output_type -> api.user.FindRecommendHighQualityUserReply
  4098. 17, // 220: api.user.User.GetUserDBMsgFromWebsocket:output_type -> api.user.GetUserDBMsgFromWebsocketReply
  4099. 48, // 221: api.user.User.SendMsgReduceCredit:output_type -> google.protobuf.Empty
  4100. 48, // 222: api.user.User.LookBackScripReduceCredit:output_type -> google.protobuf.Empty
  4101. 48, // 223: api.user.User.CreateScripReduceCredit:output_type -> google.protobuf.Empty
  4102. 48, // 224: api.user.User.ReplyScripReduceCredit:output_type -> google.protobuf.Empty
  4103. 48, // 225: api.user.User.MatchingCredit:output_type -> google.protobuf.Empty
  4104. 48, // 226: api.user.User.SendNewMessageUnreadReminder:output_type -> google.protobuf.Empty
  4105. 48, // 227: api.user.User.SendNewVisitorTemplateReminder:output_type -> google.protobuf.Empty
  4106. 16, // 228: api.user.User.UpdateUserMatchedNumAndReturnUserMsg:output_type -> api.user.UpdateUserMatchedNumAndReturnUserMsgReply
  4107. 120, // 229: api.user.User.GetRecommendUserDB:output_type -> api.common.PersonDB
  4108. 48, // 230: api.user.User.ReportUserBlack:output_type -> google.protobuf.Empty
  4109. 48, // 231: api.user.User.AddUserCredit:output_type -> google.protobuf.Empty
  4110. 33, // 232: api.user.User.UserInformationStatusDB:output_type -> api.user.InformationStatus
  4111. 5, // 233: api.user.User.UserGetInformationAwardByActivity:output_type -> api.user.UserGetInformationAwardByActivityReply
  4112. 1, // 234: api.user.User.FindUserVipDBList:output_type -> api.user.FindUserVipListDBReply
  4113. 122, // [122:235] is the sub-list for method output_type
  4114. 9, // [9:122] is the sub-list for method input_type
  4115. 9, // [9:9] is the sub-list for extension type_name
  4116. 9, // [9:9] is the sub-list for extension extendee
  4117. 0, // [0:9] is the sub-list for field type_name
  4118. }
  4119. func init() { file_user_proto_init() }
  4120. func file_user_proto_init() {
  4121. if File_user_proto != nil {
  4122. return
  4123. }
  4124. if !protoimpl.UnsafeEnabled {
  4125. file_user_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  4126. switch v := v.(*GetUserLookHandPickNumReply); i {
  4127. case 0:
  4128. return &v.state
  4129. case 1:
  4130. return &v.sizeCache
  4131. case 2:
  4132. return &v.unknownFields
  4133. default:
  4134. return nil
  4135. }
  4136. }
  4137. file_user_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  4138. switch v := v.(*FindUserVipListDBReply); i {
  4139. case 0:
  4140. return &v.state
  4141. case 1:
  4142. return &v.sizeCache
  4143. case 2:
  4144. return &v.unknownFields
  4145. default:
  4146. return nil
  4147. }
  4148. }
  4149. file_user_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  4150. switch v := v.(*VipInfo); i {
  4151. case 0:
  4152. return &v.state
  4153. case 1:
  4154. return &v.sizeCache
  4155. case 2:
  4156. return &v.unknownFields
  4157. default:
  4158. return nil
  4159. }
  4160. }
  4161. file_user_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  4162. switch v := v.(*SendMsgReduceCreditRequest); i {
  4163. case 0:
  4164. return &v.state
  4165. case 1:
  4166. return &v.sizeCache
  4167. case 2:
  4168. return &v.unknownFields
  4169. default:
  4170. return nil
  4171. }
  4172. }
  4173. file_user_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  4174. switch v := v.(*UserGetInformationAwardByActivityRequest); i {
  4175. case 0:
  4176. return &v.state
  4177. case 1:
  4178. return &v.sizeCache
  4179. case 2:
  4180. return &v.unknownFields
  4181. default:
  4182. return nil
  4183. }
  4184. }
  4185. file_user_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  4186. switch v := v.(*UserGetInformationAwardByActivityReply); i {
  4187. case 0:
  4188. return &v.state
  4189. case 1:
  4190. return &v.sizeCache
  4191. case 2:
  4192. return &v.unknownFields
  4193. default:
  4194. return nil
  4195. }
  4196. }
  4197. file_user_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  4198. switch v := v.(*AddUserCreditRequest); i {
  4199. case 0:
  4200. return &v.state
  4201. case 1:
  4202. return &v.sizeCache
  4203. case 2:
  4204. return &v.unknownFields
  4205. default:
  4206. return nil
  4207. }
  4208. }
  4209. file_user_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  4210. switch v := v.(*ReportUserBlackRequest); i {
  4211. case 0:
  4212. return &v.state
  4213. case 1:
  4214. return &v.sizeCache
  4215. case 2:
  4216. return &v.unknownFields
  4217. default:
  4218. return nil
  4219. }
  4220. }
  4221. file_user_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  4222. switch v := v.(*SendMessageRequest); i {
  4223. case 0:
  4224. return &v.state
  4225. case 1:
  4226. return &v.sizeCache
  4227. case 2:
  4228. return &v.unknownFields
  4229. default:
  4230. return nil
  4231. }
  4232. }
  4233. file_user_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  4234. switch v := v.(*ManagerFindIsCheckQualityUserListRequest); i {
  4235. case 0:
  4236. return &v.state
  4237. case 1:
  4238. return &v.sizeCache
  4239. case 2:
  4240. return &v.unknownFields
  4241. default:
  4242. return nil
  4243. }
  4244. }
  4245. file_user_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  4246. switch v := v.(*ManagerUpdateUserCreditRequest); i {
  4247. case 0:
  4248. return &v.state
  4249. case 1:
  4250. return &v.sizeCache
  4251. case 2:
  4252. return &v.unknownFields
  4253. default:
  4254. return nil
  4255. }
  4256. }
  4257. file_user_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  4258. switch v := v.(*ManagerMarkHighQualityUserRequest); i {
  4259. case 0:
  4260. return &v.state
  4261. case 1:
  4262. return &v.sizeCache
  4263. case 2:
  4264. return &v.unknownFields
  4265. default:
  4266. return nil
  4267. }
  4268. }
  4269. file_user_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  4270. switch v := v.(*ManagerReMarkHighQualityUserRequest); i {
  4271. case 0:
  4272. return &v.state
  4273. case 1:
  4274. return &v.sizeCache
  4275. case 2:
  4276. return &v.unknownFields
  4277. default:
  4278. return nil
  4279. }
  4280. }
  4281. file_user_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  4282. switch v := v.(*GetRecommendUserDBRequest); i {
  4283. case 0:
  4284. return &v.state
  4285. case 1:
  4286. return &v.sizeCache
  4287. case 2:
  4288. return &v.unknownFields
  4289. default:
  4290. return nil
  4291. }
  4292. }
  4293. file_user_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  4294. switch v := v.(*FindRecommendHighQualityUserRequest); i {
  4295. case 0:
  4296. return &v.state
  4297. case 1:
  4298. return &v.sizeCache
  4299. case 2:
  4300. return &v.unknownFields
  4301. default:
  4302. return nil
  4303. }
  4304. }
  4305. file_user_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  4306. switch v := v.(*FindRecommendHighQualityUserReply); i {
  4307. case 0:
  4308. return &v.state
  4309. case 1:
  4310. return &v.sizeCache
  4311. case 2:
  4312. return &v.unknownFields
  4313. default:
  4314. return nil
  4315. }
  4316. }
  4317. file_user_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  4318. switch v := v.(*UpdateUserMatchedNumAndReturnUserMsgReply); i {
  4319. case 0:
  4320. return &v.state
  4321. case 1:
  4322. return &v.sizeCache
  4323. case 2:
  4324. return &v.unknownFields
  4325. default:
  4326. return nil
  4327. }
  4328. }
  4329. file_user_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  4330. switch v := v.(*GetUserDBMsgFromWebsocketReply); i {
  4331. case 0:
  4332. return &v.state
  4333. case 1:
  4334. return &v.sizeCache
  4335. case 2:
  4336. return &v.unknownFields
  4337. default:
  4338. return nil
  4339. }
  4340. }
  4341. file_user_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  4342. switch v := v.(*UpdateUserMatchedNumRequest); i {
  4343. case 0:
  4344. return &v.state
  4345. case 1:
  4346. return &v.sizeCache
  4347. case 2:
  4348. return &v.unknownFields
  4349. default:
  4350. return nil
  4351. }
  4352. }
  4353. file_user_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  4354. switch v := v.(*SendNewMessageUnreadReminderRequest); i {
  4355. case 0:
  4356. return &v.state
  4357. case 1:
  4358. return &v.sizeCache
  4359. case 2:
  4360. return &v.unknownFields
  4361. default:
  4362. return nil
  4363. }
  4364. }
  4365. file_user_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  4366. switch v := v.(*SendMsgReduceCreditReply); i {
  4367. case 0:
  4368. return &v.state
  4369. case 1:
  4370. return &v.sizeCache
  4371. case 2:
  4372. return &v.unknownFields
  4373. default:
  4374. return nil
  4375. }
  4376. }
  4377. file_user_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  4378. switch v := v.(*UserFreeNum); i {
  4379. case 0:
  4380. return &v.state
  4381. case 1:
  4382. return &v.sizeCache
  4383. case 2:
  4384. return &v.unknownFields
  4385. default:
  4386. return nil
  4387. }
  4388. }
  4389. file_user_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  4390. switch v := v.(*ReplyScripRequest); i {
  4391. case 0:
  4392. return &v.state
  4393. case 1:
  4394. return &v.sizeCache
  4395. case 2:
  4396. return &v.unknownFields
  4397. default:
  4398. return nil
  4399. }
  4400. }
  4401. file_user_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  4402. switch v := v.(*PersonLookScripRequest); i {
  4403. case 0:
  4404. return &v.state
  4405. case 1:
  4406. return &v.sizeCache
  4407. case 2:
  4408. return &v.unknownFields
  4409. default:
  4410. return nil
  4411. }
  4412. }
  4413. file_user_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  4414. switch v := v.(*UserFindScripRequest); i {
  4415. case 0:
  4416. return &v.state
  4417. case 1:
  4418. return &v.sizeCache
  4419. case 2:
  4420. return &v.unknownFields
  4421. default:
  4422. return nil
  4423. }
  4424. }
  4425. file_user_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  4426. switch v := v.(*DeleteScripRequest); i {
  4427. case 0:
  4428. return &v.state
  4429. case 1:
  4430. return &v.sizeCache
  4431. case 2:
  4432. return &v.unknownFields
  4433. default:
  4434. return nil
  4435. }
  4436. }
  4437. file_user_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  4438. switch v := v.(*CreateScripRequest); i {
  4439. case 0:
  4440. return &v.state
  4441. case 1:
  4442. return &v.sizeCache
  4443. case 2:
  4444. return &v.unknownFields
  4445. default:
  4446. return nil
  4447. }
  4448. }
  4449. file_user_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  4450. switch v := v.(*FindMatchingAvatarAndNumReply); i {
  4451. case 0:
  4452. return &v.state
  4453. case 1:
  4454. return &v.sizeCache
  4455. case 2:
  4456. return &v.unknownFields
  4457. default:
  4458. return nil
  4459. }
  4460. }
  4461. file_user_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  4462. switch v := v.(*UserRechargeRequest); i {
  4463. case 0:
  4464. return &v.state
  4465. case 1:
  4466. return &v.sizeCache
  4467. case 2:
  4468. return &v.unknownFields
  4469. default:
  4470. return nil
  4471. }
  4472. }
  4473. file_user_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  4474. switch v := v.(*RechargeList); i {
  4475. case 0:
  4476. return &v.state
  4477. case 1:
  4478. return &v.sizeCache
  4479. case 2:
  4480. return &v.unknownFields
  4481. default:
  4482. return nil
  4483. }
  4484. }
  4485. file_user_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  4486. switch v := v.(*VipRechargeList); i {
  4487. case 0:
  4488. return &v.state
  4489. case 1:
  4490. return &v.sizeCache
  4491. case 2:
  4492. return &v.unknownFields
  4493. default:
  4494. return nil
  4495. }
  4496. }
  4497. file_user_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  4498. switch v := v.(*VipRechargeInfo); i {
  4499. case 0:
  4500. return &v.state
  4501. case 1:
  4502. return &v.sizeCache
  4503. case 2:
  4504. return &v.unknownFields
  4505. default:
  4506. return nil
  4507. }
  4508. }
  4509. file_user_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  4510. switch v := v.(*RechargeInfo); i {
  4511. case 0:
  4512. return &v.state
  4513. case 1:
  4514. return &v.sizeCache
  4515. case 2:
  4516. return &v.unknownFields
  4517. default:
  4518. return nil
  4519. }
  4520. }
  4521. file_user_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  4522. switch v := v.(*InformationStatus); i {
  4523. case 0:
  4524. return &v.state
  4525. case 1:
  4526. return &v.sizeCache
  4527. case 2:
  4528. return &v.unknownFields
  4529. default:
  4530. return nil
  4531. }
  4532. }
  4533. file_user_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  4534. switch v := v.(*UserBalance); i {
  4535. case 0:
  4536. return &v.state
  4537. case 1:
  4538. return &v.sizeCache
  4539. case 2:
  4540. return &v.unknownFields
  4541. default:
  4542. return nil
  4543. }
  4544. }
  4545. file_user_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
  4546. switch v := v.(*UserFindChatListReply); i {
  4547. case 0:
  4548. return &v.state
  4549. case 1:
  4550. return &v.sizeCache
  4551. case 2:
  4552. return &v.unknownFields
  4553. default:
  4554. return nil
  4555. }
  4556. }
  4557. file_user_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
  4558. switch v := v.(*UserChatInfo); i {
  4559. case 0:
  4560. return &v.state
  4561. case 1:
  4562. return &v.sizeCache
  4563. case 2:
  4564. return &v.unknownFields
  4565. default:
  4566. return nil
  4567. }
  4568. }
  4569. file_user_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
  4570. switch v := v.(*UserInfo); i {
  4571. case 0:
  4572. return &v.state
  4573. case 1:
  4574. return &v.sizeCache
  4575. case 2:
  4576. return &v.unknownFields
  4577. default:
  4578. return nil
  4579. }
  4580. }
  4581. file_user_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
  4582. switch v := v.(*KeyRequest); i {
  4583. case 0:
  4584. return &v.state
  4585. case 1:
  4586. return &v.sizeCache
  4587. case 2:
  4588. return &v.unknownFields
  4589. default:
  4590. return nil
  4591. }
  4592. }
  4593. file_user_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
  4594. switch v := v.(*CreatePayRequest); i {
  4595. case 0:
  4596. return &v.state
  4597. case 1:
  4598. return &v.sizeCache
  4599. case 2:
  4600. return &v.unknownFields
  4601. default:
  4602. return nil
  4603. }
  4604. }
  4605. file_user_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
  4606. switch v := v.(*PayInfo); i {
  4607. case 0:
  4608. return &v.state
  4609. case 1:
  4610. return &v.sizeCache
  4611. case 2:
  4612. return &v.unknownFields
  4613. default:
  4614. return nil
  4615. }
  4616. }
  4617. file_user_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
  4618. switch v := v.(*PayOrderInfo); i {
  4619. case 0:
  4620. return &v.state
  4621. case 1:
  4622. return &v.sizeCache
  4623. case 2:
  4624. return &v.unknownFields
  4625. default:
  4626. return nil
  4627. }
  4628. }
  4629. file_user_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
  4630. switch v := v.(*PayOrderList); i {
  4631. case 0:
  4632. return &v.state
  4633. case 1:
  4634. return &v.sizeCache
  4635. case 2:
  4636. return &v.unknownFields
  4637. default:
  4638. return nil
  4639. }
  4640. }
  4641. file_user_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
  4642. switch v := v.(*FindPayOrderListRequest); i {
  4643. case 0:
  4644. return &v.state
  4645. case 1:
  4646. return &v.sizeCache
  4647. case 2:
  4648. return &v.unknownFields
  4649. default:
  4650. return nil
  4651. }
  4652. }
  4653. file_user_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
  4654. switch v := v.(*PayCallbackReply); i {
  4655. case 0:
  4656. return &v.state
  4657. case 1:
  4658. return &v.sizeCache
  4659. case 2:
  4660. return &v.unknownFields
  4661. default:
  4662. return nil
  4663. }
  4664. }
  4665. }
  4666. type x struct{}
  4667. out := protoimpl.TypeBuilder{
  4668. File: protoimpl.DescBuilder{
  4669. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  4670. RawDescriptor: file_user_proto_rawDesc,
  4671. NumEnums: 0,
  4672. NumMessages: 46,
  4673. NumExtensions: 0,
  4674. NumServices: 1,
  4675. },
  4676. GoTypes: file_user_proto_goTypes,
  4677. DependencyIndexes: file_user_proto_depIdxs,
  4678. MessageInfos: file_user_proto_msgTypes,
  4679. }.Build()
  4680. File_user_proto = out.File
  4681. file_user_proto_rawDesc = nil
  4682. file_user_proto_goTypes = nil
  4683. file_user_proto_depIdxs = nil
  4684. }