user.pb.go 243 KB

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