user.pb.go 240 KB

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