user.pb.go 188 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.26.0-devel
  4. // protoc v3.15.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 ReportUserBlackRequest struct {
  26. state protoimpl.MessageState
  27. sizeCache protoimpl.SizeCache
  28. unknownFields protoimpl.UnknownFields
  29. PersonId string `protobuf:"bytes,1,opt,name=personId,proto3" json:"personId"`
  30. Result string `protobuf:"bytes,2,opt,name=result,proto3" json:"result"`
  31. }
  32. func (x *ReportUserBlackRequest) Reset() {
  33. *x = ReportUserBlackRequest{}
  34. if protoimpl.UnsafeEnabled {
  35. mi := &file_user_proto_msgTypes[0]
  36. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  37. ms.StoreMessageInfo(mi)
  38. }
  39. }
  40. func (x *ReportUserBlackRequest) String() string {
  41. return protoimpl.X.MessageStringOf(x)
  42. }
  43. func (*ReportUserBlackRequest) ProtoMessage() {}
  44. func (x *ReportUserBlackRequest) ProtoReflect() protoreflect.Message {
  45. mi := &file_user_proto_msgTypes[0]
  46. if protoimpl.UnsafeEnabled && x != nil {
  47. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  48. if ms.LoadMessageInfo() == nil {
  49. ms.StoreMessageInfo(mi)
  50. }
  51. return ms
  52. }
  53. return mi.MessageOf(x)
  54. }
  55. // Deprecated: Use ReportUserBlackRequest.ProtoReflect.Descriptor instead.
  56. func (*ReportUserBlackRequest) Descriptor() ([]byte, []int) {
  57. return file_user_proto_rawDescGZIP(), []int{0}
  58. }
  59. func (x *ReportUserBlackRequest) GetPersonId() string {
  60. if x != nil {
  61. return x.PersonId
  62. }
  63. return ""
  64. }
  65. func (x *ReportUserBlackRequest) GetResult() string {
  66. if x != nil {
  67. return x.Result
  68. }
  69. return ""
  70. }
  71. type SendMessageRequest struct {
  72. state protoimpl.MessageState
  73. sizeCache protoimpl.SizeCache
  74. unknownFields protoimpl.UnknownFields
  75. RoomId int64 `protobuf:"varint,1,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  76. Message *common.Message `protobuf:"bytes,2,opt,name=message,proto3" json:"message"` // 消息
  77. MsgType string `protobuf:"bytes,3,opt,name=msgType,proto3" json:"msgType"` // 消息类型
  78. WebsocketTag string `protobuf:"bytes,4,opt,name=websocketTag,proto3" json:"websocketTag"`
  79. }
  80. func (x *SendMessageRequest) Reset() {
  81. *x = SendMessageRequest{}
  82. if protoimpl.UnsafeEnabled {
  83. mi := &file_user_proto_msgTypes[1]
  84. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  85. ms.StoreMessageInfo(mi)
  86. }
  87. }
  88. func (x *SendMessageRequest) String() string {
  89. return protoimpl.X.MessageStringOf(x)
  90. }
  91. func (*SendMessageRequest) ProtoMessage() {}
  92. func (x *SendMessageRequest) ProtoReflect() protoreflect.Message {
  93. mi := &file_user_proto_msgTypes[1]
  94. if protoimpl.UnsafeEnabled && x != nil {
  95. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  96. if ms.LoadMessageInfo() == nil {
  97. ms.StoreMessageInfo(mi)
  98. }
  99. return ms
  100. }
  101. return mi.MessageOf(x)
  102. }
  103. // Deprecated: Use SendMessageRequest.ProtoReflect.Descriptor instead.
  104. func (*SendMessageRequest) Descriptor() ([]byte, []int) {
  105. return file_user_proto_rawDescGZIP(), []int{1}
  106. }
  107. func (x *SendMessageRequest) GetRoomId() int64 {
  108. if x != nil {
  109. return x.RoomId
  110. }
  111. return 0
  112. }
  113. func (x *SendMessageRequest) GetMessage() *common.Message {
  114. if x != nil {
  115. return x.Message
  116. }
  117. return nil
  118. }
  119. func (x *SendMessageRequest) GetMsgType() string {
  120. if x != nil {
  121. return x.MsgType
  122. }
  123. return ""
  124. }
  125. func (x *SendMessageRequest) GetWebsocketTag() string {
  126. if x != nil {
  127. return x.WebsocketTag
  128. }
  129. return ""
  130. }
  131. type ManagerFindIsCheckQualityUserListRequest struct {
  132. state protoimpl.MessageState
  133. sizeCache protoimpl.SizeCache
  134. unknownFields protoimpl.UnknownFields
  135. Page int64 `protobuf:"varint,1,opt,name=page,proto3" json:"page"`
  136. PageSize int64 `protobuf:"varint,2,opt,name=pageSize,proto3" json:"pageSize"`
  137. Id int64 `protobuf:"varint,3,opt,name=id,proto3" json:"id"` // 用户ID
  138. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name"` // 姓名
  139. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  140. }
  141. func (x *ManagerFindIsCheckQualityUserListRequest) Reset() {
  142. *x = ManagerFindIsCheckQualityUserListRequest{}
  143. if protoimpl.UnsafeEnabled {
  144. mi := &file_user_proto_msgTypes[2]
  145. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  146. ms.StoreMessageInfo(mi)
  147. }
  148. }
  149. func (x *ManagerFindIsCheckQualityUserListRequest) String() string {
  150. return protoimpl.X.MessageStringOf(x)
  151. }
  152. func (*ManagerFindIsCheckQualityUserListRequest) ProtoMessage() {}
  153. func (x *ManagerFindIsCheckQualityUserListRequest) ProtoReflect() protoreflect.Message {
  154. mi := &file_user_proto_msgTypes[2]
  155. if protoimpl.UnsafeEnabled && x != nil {
  156. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  157. if ms.LoadMessageInfo() == nil {
  158. ms.StoreMessageInfo(mi)
  159. }
  160. return ms
  161. }
  162. return mi.MessageOf(x)
  163. }
  164. // Deprecated: Use ManagerFindIsCheckQualityUserListRequest.ProtoReflect.Descriptor instead.
  165. func (*ManagerFindIsCheckQualityUserListRequest) Descriptor() ([]byte, []int) {
  166. return file_user_proto_rawDescGZIP(), []int{2}
  167. }
  168. func (x *ManagerFindIsCheckQualityUserListRequest) GetPage() int64 {
  169. if x != nil {
  170. return x.Page
  171. }
  172. return 0
  173. }
  174. func (x *ManagerFindIsCheckQualityUserListRequest) GetPageSize() int64 {
  175. if x != nil {
  176. return x.PageSize
  177. }
  178. return 0
  179. }
  180. func (x *ManagerFindIsCheckQualityUserListRequest) GetId() int64 {
  181. if x != nil {
  182. return x.Id
  183. }
  184. return 0
  185. }
  186. func (x *ManagerFindIsCheckQualityUserListRequest) GetName() string {
  187. if x != nil {
  188. return x.Name
  189. }
  190. return ""
  191. }
  192. func (x *ManagerFindIsCheckQualityUserListRequest) GetSex() int64 {
  193. if x != nil {
  194. return x.Sex
  195. }
  196. return 0
  197. }
  198. type ManagerUpdateUserCreditRequest struct {
  199. state protoimpl.MessageState
  200. sizeCache protoimpl.SizeCache
  201. unknownFields protoimpl.UnknownFields
  202. PersonId string `protobuf:"bytes,1,opt,name=personId,proto3" json:"personId"`
  203. Num int64 `protobuf:"varint,2,opt,name=num,proto3" json:"num"`
  204. Title string `protobuf:"bytes,3,opt,name=title,proto3" json:"title"`
  205. }
  206. func (x *ManagerUpdateUserCreditRequest) Reset() {
  207. *x = ManagerUpdateUserCreditRequest{}
  208. if protoimpl.UnsafeEnabled {
  209. mi := &file_user_proto_msgTypes[3]
  210. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  211. ms.StoreMessageInfo(mi)
  212. }
  213. }
  214. func (x *ManagerUpdateUserCreditRequest) String() string {
  215. return protoimpl.X.MessageStringOf(x)
  216. }
  217. func (*ManagerUpdateUserCreditRequest) ProtoMessage() {}
  218. func (x *ManagerUpdateUserCreditRequest) ProtoReflect() protoreflect.Message {
  219. mi := &file_user_proto_msgTypes[3]
  220. if protoimpl.UnsafeEnabled && x != nil {
  221. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  222. if ms.LoadMessageInfo() == nil {
  223. ms.StoreMessageInfo(mi)
  224. }
  225. return ms
  226. }
  227. return mi.MessageOf(x)
  228. }
  229. // Deprecated: Use ManagerUpdateUserCreditRequest.ProtoReflect.Descriptor instead.
  230. func (*ManagerUpdateUserCreditRequest) Descriptor() ([]byte, []int) {
  231. return file_user_proto_rawDescGZIP(), []int{3}
  232. }
  233. func (x *ManagerUpdateUserCreditRequest) GetPersonId() string {
  234. if x != nil {
  235. return x.PersonId
  236. }
  237. return ""
  238. }
  239. func (x *ManagerUpdateUserCreditRequest) GetNum() int64 {
  240. if x != nil {
  241. return x.Num
  242. }
  243. return 0
  244. }
  245. func (x *ManagerUpdateUserCreditRequest) GetTitle() string {
  246. if x != nil {
  247. return x.Title
  248. }
  249. return ""
  250. }
  251. type ManagerMarkHighQualityUserRequest struct {
  252. state protoimpl.MessageState
  253. sizeCache protoimpl.SizeCache
  254. unknownFields protoimpl.UnknownFields
  255. PassIds []string `protobuf:"bytes,1,rep,name=passIds,proto3" json:"passIds"`
  256. UnPassIds []string `protobuf:"bytes,2,rep,name=unPassIds,proto3" json:"unPassIds"`
  257. }
  258. func (x *ManagerMarkHighQualityUserRequest) Reset() {
  259. *x = ManagerMarkHighQualityUserRequest{}
  260. if protoimpl.UnsafeEnabled {
  261. mi := &file_user_proto_msgTypes[4]
  262. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  263. ms.StoreMessageInfo(mi)
  264. }
  265. }
  266. func (x *ManagerMarkHighQualityUserRequest) String() string {
  267. return protoimpl.X.MessageStringOf(x)
  268. }
  269. func (*ManagerMarkHighQualityUserRequest) ProtoMessage() {}
  270. func (x *ManagerMarkHighQualityUserRequest) ProtoReflect() protoreflect.Message {
  271. mi := &file_user_proto_msgTypes[4]
  272. if protoimpl.UnsafeEnabled && x != nil {
  273. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  274. if ms.LoadMessageInfo() == nil {
  275. ms.StoreMessageInfo(mi)
  276. }
  277. return ms
  278. }
  279. return mi.MessageOf(x)
  280. }
  281. // Deprecated: Use ManagerMarkHighQualityUserRequest.ProtoReflect.Descriptor instead.
  282. func (*ManagerMarkHighQualityUserRequest) Descriptor() ([]byte, []int) {
  283. return file_user_proto_rawDescGZIP(), []int{4}
  284. }
  285. func (x *ManagerMarkHighQualityUserRequest) GetPassIds() []string {
  286. if x != nil {
  287. return x.PassIds
  288. }
  289. return nil
  290. }
  291. func (x *ManagerMarkHighQualityUserRequest) GetUnPassIds() []string {
  292. if x != nil {
  293. return x.UnPassIds
  294. }
  295. return nil
  296. }
  297. type GetRecommendUserDBRequest struct {
  298. state protoimpl.MessageState
  299. sizeCache protoimpl.SizeCache
  300. unknownFields protoimpl.UnknownFields
  301. Sex int64 `protobuf:"varint,2,opt,name=sex,proto3" json:"sex"`
  302. PersonIds []string `protobuf:"bytes,3,rep,name=personIds,proto3" json:"personIds"` // 匹配过的用户
  303. }
  304. func (x *GetRecommendUserDBRequest) Reset() {
  305. *x = GetRecommendUserDBRequest{}
  306. if protoimpl.UnsafeEnabled {
  307. mi := &file_user_proto_msgTypes[5]
  308. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  309. ms.StoreMessageInfo(mi)
  310. }
  311. }
  312. func (x *GetRecommendUserDBRequest) String() string {
  313. return protoimpl.X.MessageStringOf(x)
  314. }
  315. func (*GetRecommendUserDBRequest) ProtoMessage() {}
  316. func (x *GetRecommendUserDBRequest) ProtoReflect() protoreflect.Message {
  317. mi := &file_user_proto_msgTypes[5]
  318. if protoimpl.UnsafeEnabled && x != nil {
  319. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  320. if ms.LoadMessageInfo() == nil {
  321. ms.StoreMessageInfo(mi)
  322. }
  323. return ms
  324. }
  325. return mi.MessageOf(x)
  326. }
  327. // Deprecated: Use GetRecommendUserDBRequest.ProtoReflect.Descriptor instead.
  328. func (*GetRecommendUserDBRequest) Descriptor() ([]byte, []int) {
  329. return file_user_proto_rawDescGZIP(), []int{5}
  330. }
  331. func (x *GetRecommendUserDBRequest) GetSex() int64 {
  332. if x != nil {
  333. return x.Sex
  334. }
  335. return 0
  336. }
  337. func (x *GetRecommendUserDBRequest) GetPersonIds() []string {
  338. if x != nil {
  339. return x.PersonIds
  340. }
  341. return nil
  342. }
  343. type FindRecommendHighQualityUserRequest struct {
  344. state protoimpl.MessageState
  345. sizeCache protoimpl.SizeCache
  346. unknownFields protoimpl.UnknownFields
  347. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"` // 数量
  348. Sex int64 `protobuf:"varint,3,opt,name=sex,proto3" json:"sex"`
  349. PersonId string `protobuf:"bytes,4,opt,name=personId,proto3" json:"personId"` // ID
  350. }
  351. func (x *FindRecommendHighQualityUserRequest) Reset() {
  352. *x = FindRecommendHighQualityUserRequest{}
  353. if protoimpl.UnsafeEnabled {
  354. mi := &file_user_proto_msgTypes[6]
  355. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  356. ms.StoreMessageInfo(mi)
  357. }
  358. }
  359. func (x *FindRecommendHighQualityUserRequest) String() string {
  360. return protoimpl.X.MessageStringOf(x)
  361. }
  362. func (*FindRecommendHighQualityUserRequest) ProtoMessage() {}
  363. func (x *FindRecommendHighQualityUserRequest) ProtoReflect() protoreflect.Message {
  364. mi := &file_user_proto_msgTypes[6]
  365. if protoimpl.UnsafeEnabled && x != nil {
  366. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  367. if ms.LoadMessageInfo() == nil {
  368. ms.StoreMessageInfo(mi)
  369. }
  370. return ms
  371. }
  372. return mi.MessageOf(x)
  373. }
  374. // Deprecated: Use FindRecommendHighQualityUserRequest.ProtoReflect.Descriptor instead.
  375. func (*FindRecommendHighQualityUserRequest) Descriptor() ([]byte, []int) {
  376. return file_user_proto_rawDescGZIP(), []int{6}
  377. }
  378. func (x *FindRecommendHighQualityUserRequest) GetNum() int64 {
  379. if x != nil {
  380. return x.Num
  381. }
  382. return 0
  383. }
  384. func (x *FindRecommendHighQualityUserRequest) GetSex() int64 {
  385. if x != nil {
  386. return x.Sex
  387. }
  388. return 0
  389. }
  390. func (x *FindRecommendHighQualityUserRequest) GetPersonId() string {
  391. if x != nil {
  392. return x.PersonId
  393. }
  394. return ""
  395. }
  396. type FindRecommendHighQualityUserReply struct {
  397. state protoimpl.MessageState
  398. sizeCache protoimpl.SizeCache
  399. unknownFields protoimpl.UnknownFields
  400. PersonIdList []string `protobuf:"bytes,1,rep,name=personIdList,proto3" json:"personIdList"`
  401. }
  402. func (x *FindRecommendHighQualityUserReply) Reset() {
  403. *x = FindRecommendHighQualityUserReply{}
  404. if protoimpl.UnsafeEnabled {
  405. mi := &file_user_proto_msgTypes[7]
  406. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  407. ms.StoreMessageInfo(mi)
  408. }
  409. }
  410. func (x *FindRecommendHighQualityUserReply) String() string {
  411. return protoimpl.X.MessageStringOf(x)
  412. }
  413. func (*FindRecommendHighQualityUserReply) ProtoMessage() {}
  414. func (x *FindRecommendHighQualityUserReply) ProtoReflect() protoreflect.Message {
  415. mi := &file_user_proto_msgTypes[7]
  416. if protoimpl.UnsafeEnabled && x != nil {
  417. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  418. if ms.LoadMessageInfo() == nil {
  419. ms.StoreMessageInfo(mi)
  420. }
  421. return ms
  422. }
  423. return mi.MessageOf(x)
  424. }
  425. // Deprecated: Use FindRecommendHighQualityUserReply.ProtoReflect.Descriptor instead.
  426. func (*FindRecommendHighQualityUserReply) Descriptor() ([]byte, []int) {
  427. return file_user_proto_rawDescGZIP(), []int{7}
  428. }
  429. func (x *FindRecommendHighQualityUserReply) GetPersonIdList() []string {
  430. if x != nil {
  431. return x.PersonIdList
  432. }
  433. return nil
  434. }
  435. type UpdateUserMatchedNumAndReturnUserMsgReply struct {
  436. state protoimpl.MessageState
  437. sizeCache protoimpl.SizeCache
  438. unknownFields protoimpl.UnknownFields
  439. TodayMatchedNum int64 `protobuf:"varint,1,opt,name=todayMatchedNum,proto3" json:"todayMatchedNum"` // 今日被匹配数
  440. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  441. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  442. Sex int64 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"` // 性别
  443. Age int64 `protobuf:"varint,5,opt,name=age,proto3" json:"age"` // 年龄
  444. }
  445. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) Reset() {
  446. *x = UpdateUserMatchedNumAndReturnUserMsgReply{}
  447. if protoimpl.UnsafeEnabled {
  448. mi := &file_user_proto_msgTypes[8]
  449. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  450. ms.StoreMessageInfo(mi)
  451. }
  452. }
  453. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) String() string {
  454. return protoimpl.X.MessageStringOf(x)
  455. }
  456. func (*UpdateUserMatchedNumAndReturnUserMsgReply) ProtoMessage() {}
  457. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) ProtoReflect() protoreflect.Message {
  458. mi := &file_user_proto_msgTypes[8]
  459. if protoimpl.UnsafeEnabled && x != nil {
  460. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  461. if ms.LoadMessageInfo() == nil {
  462. ms.StoreMessageInfo(mi)
  463. }
  464. return ms
  465. }
  466. return mi.MessageOf(x)
  467. }
  468. // Deprecated: Use UpdateUserMatchedNumAndReturnUserMsgReply.ProtoReflect.Descriptor instead.
  469. func (*UpdateUserMatchedNumAndReturnUserMsgReply) Descriptor() ([]byte, []int) {
  470. return file_user_proto_rawDescGZIP(), []int{8}
  471. }
  472. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetTodayMatchedNum() int64 {
  473. if x != nil {
  474. return x.TodayMatchedNum
  475. }
  476. return 0
  477. }
  478. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetNickname() string {
  479. if x != nil {
  480. return x.Nickname
  481. }
  482. return ""
  483. }
  484. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetAvatarUrl() string {
  485. if x != nil {
  486. return x.AvatarUrl
  487. }
  488. return ""
  489. }
  490. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetSex() int64 {
  491. if x != nil {
  492. return x.Sex
  493. }
  494. return 0
  495. }
  496. func (x *UpdateUserMatchedNumAndReturnUserMsgReply) GetAge() int64 {
  497. if x != nil {
  498. return x.Age
  499. }
  500. return 0
  501. }
  502. type GetUserDBMsgFromWebsocketReply struct {
  503. state protoimpl.MessageState
  504. sizeCache protoimpl.SizeCache
  505. unknownFields protoimpl.UnknownFields
  506. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  507. Sex int64 `protobuf:"varint,2,opt,name=sex,proto3" json:"sex"` // 性别
  508. Weight int64 `protobuf:"varint,3,opt,name=weight,proto3" json:"weight"` // 权重
  509. WorkingStatus string `protobuf:"bytes,4,opt,name=workingStatus,proto3" json:"workingStatus"` // 工作状态
  510. TodayMatchedNum int64 `protobuf:"varint,5,opt,name=todayMatchedNum,proto3" json:"todayMatchedNum"` // 今日被匹配数
  511. }
  512. func (x *GetUserDBMsgFromWebsocketReply) Reset() {
  513. *x = GetUserDBMsgFromWebsocketReply{}
  514. if protoimpl.UnsafeEnabled {
  515. mi := &file_user_proto_msgTypes[9]
  516. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  517. ms.StoreMessageInfo(mi)
  518. }
  519. }
  520. func (x *GetUserDBMsgFromWebsocketReply) String() string {
  521. return protoimpl.X.MessageStringOf(x)
  522. }
  523. func (*GetUserDBMsgFromWebsocketReply) ProtoMessage() {}
  524. func (x *GetUserDBMsgFromWebsocketReply) ProtoReflect() protoreflect.Message {
  525. mi := &file_user_proto_msgTypes[9]
  526. if protoimpl.UnsafeEnabled && x != nil {
  527. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  528. if ms.LoadMessageInfo() == nil {
  529. ms.StoreMessageInfo(mi)
  530. }
  531. return ms
  532. }
  533. return mi.MessageOf(x)
  534. }
  535. // Deprecated: Use GetUserDBMsgFromWebsocketReply.ProtoReflect.Descriptor instead.
  536. func (*GetUserDBMsgFromWebsocketReply) Descriptor() ([]byte, []int) {
  537. return file_user_proto_rawDescGZIP(), []int{9}
  538. }
  539. func (x *GetUserDBMsgFromWebsocketReply) GetId() string {
  540. if x != nil {
  541. return x.Id
  542. }
  543. return ""
  544. }
  545. func (x *GetUserDBMsgFromWebsocketReply) GetSex() int64 {
  546. if x != nil {
  547. return x.Sex
  548. }
  549. return 0
  550. }
  551. func (x *GetUserDBMsgFromWebsocketReply) GetWeight() int64 {
  552. if x != nil {
  553. return x.Weight
  554. }
  555. return 0
  556. }
  557. func (x *GetUserDBMsgFromWebsocketReply) GetWorkingStatus() string {
  558. if x != nil {
  559. return x.WorkingStatus
  560. }
  561. return ""
  562. }
  563. func (x *GetUserDBMsgFromWebsocketReply) GetTodayMatchedNum() int64 {
  564. if x != nil {
  565. return x.TodayMatchedNum
  566. }
  567. return 0
  568. }
  569. type UpdateUserMatchedNumRequest struct {
  570. state protoimpl.MessageState
  571. sizeCache protoimpl.SizeCache
  572. unknownFields protoimpl.UnknownFields
  573. UserId string `protobuf:"bytes,2,opt,name=userId,proto3" json:"userId"`
  574. }
  575. func (x *UpdateUserMatchedNumRequest) Reset() {
  576. *x = UpdateUserMatchedNumRequest{}
  577. if protoimpl.UnsafeEnabled {
  578. mi := &file_user_proto_msgTypes[10]
  579. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  580. ms.StoreMessageInfo(mi)
  581. }
  582. }
  583. func (x *UpdateUserMatchedNumRequest) String() string {
  584. return protoimpl.X.MessageStringOf(x)
  585. }
  586. func (*UpdateUserMatchedNumRequest) ProtoMessage() {}
  587. func (x *UpdateUserMatchedNumRequest) ProtoReflect() protoreflect.Message {
  588. mi := &file_user_proto_msgTypes[10]
  589. if protoimpl.UnsafeEnabled && x != nil {
  590. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  591. if ms.LoadMessageInfo() == nil {
  592. ms.StoreMessageInfo(mi)
  593. }
  594. return ms
  595. }
  596. return mi.MessageOf(x)
  597. }
  598. // Deprecated: Use UpdateUserMatchedNumRequest.ProtoReflect.Descriptor instead.
  599. func (*UpdateUserMatchedNumRequest) Descriptor() ([]byte, []int) {
  600. return file_user_proto_rawDescGZIP(), []int{10}
  601. }
  602. func (x *UpdateUserMatchedNumRequest) GetUserId() string {
  603. if x != nil {
  604. return x.UserId
  605. }
  606. return ""
  607. }
  608. type SendNewMessageUnreadReminderRequest struct {
  609. state protoimpl.MessageState
  610. sizeCache protoimpl.SizeCache
  611. unknownFields protoimpl.UnknownFields
  612. PersonId string `protobuf:"bytes,1,opt,name=personId,proto3" json:"personId"`
  613. SendPersonId string `protobuf:"bytes,2,opt,name=sendPersonId,proto3" json:"sendPersonId"`
  614. }
  615. func (x *SendNewMessageUnreadReminderRequest) Reset() {
  616. *x = SendNewMessageUnreadReminderRequest{}
  617. if protoimpl.UnsafeEnabled {
  618. mi := &file_user_proto_msgTypes[11]
  619. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  620. ms.StoreMessageInfo(mi)
  621. }
  622. }
  623. func (x *SendNewMessageUnreadReminderRequest) String() string {
  624. return protoimpl.X.MessageStringOf(x)
  625. }
  626. func (*SendNewMessageUnreadReminderRequest) ProtoMessage() {}
  627. func (x *SendNewMessageUnreadReminderRequest) ProtoReflect() protoreflect.Message {
  628. mi := &file_user_proto_msgTypes[11]
  629. if protoimpl.UnsafeEnabled && x != nil {
  630. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  631. if ms.LoadMessageInfo() == nil {
  632. ms.StoreMessageInfo(mi)
  633. }
  634. return ms
  635. }
  636. return mi.MessageOf(x)
  637. }
  638. // Deprecated: Use SendNewMessageUnreadReminderRequest.ProtoReflect.Descriptor instead.
  639. func (*SendNewMessageUnreadReminderRequest) Descriptor() ([]byte, []int) {
  640. return file_user_proto_rawDescGZIP(), []int{11}
  641. }
  642. func (x *SendNewMessageUnreadReminderRequest) GetPersonId() string {
  643. if x != nil {
  644. return x.PersonId
  645. }
  646. return ""
  647. }
  648. func (x *SendNewMessageUnreadReminderRequest) GetSendPersonId() string {
  649. if x != nil {
  650. return x.SendPersonId
  651. }
  652. return ""
  653. }
  654. type SendMsgReduceCreditReply struct {
  655. state protoimpl.MessageState
  656. sizeCache protoimpl.SizeCache
  657. unknownFields protoimpl.UnknownFields
  658. IsSendReminder bool `protobuf:"varint,1,opt,name=isSendReminder,proto3" json:"isSendReminder"` // 是否发送免费次数用完提醒
  659. }
  660. func (x *SendMsgReduceCreditReply) Reset() {
  661. *x = SendMsgReduceCreditReply{}
  662. if protoimpl.UnsafeEnabled {
  663. mi := &file_user_proto_msgTypes[12]
  664. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  665. ms.StoreMessageInfo(mi)
  666. }
  667. }
  668. func (x *SendMsgReduceCreditReply) String() string {
  669. return protoimpl.X.MessageStringOf(x)
  670. }
  671. func (*SendMsgReduceCreditReply) ProtoMessage() {}
  672. func (x *SendMsgReduceCreditReply) ProtoReflect() protoreflect.Message {
  673. mi := &file_user_proto_msgTypes[12]
  674. if protoimpl.UnsafeEnabled && x != nil {
  675. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  676. if ms.LoadMessageInfo() == nil {
  677. ms.StoreMessageInfo(mi)
  678. }
  679. return ms
  680. }
  681. return mi.MessageOf(x)
  682. }
  683. // Deprecated: Use SendMsgReduceCreditReply.ProtoReflect.Descriptor instead.
  684. func (*SendMsgReduceCreditReply) Descriptor() ([]byte, []int) {
  685. return file_user_proto_rawDescGZIP(), []int{12}
  686. }
  687. func (x *SendMsgReduceCreditReply) GetIsSendReminder() bool {
  688. if x != nil {
  689. return x.IsSendReminder
  690. }
  691. return false
  692. }
  693. type UserFreeNum struct {
  694. state protoimpl.MessageState
  695. sizeCache protoimpl.SizeCache
  696. unknownFields protoimpl.UnknownFields
  697. ReplyScripNum int64 `protobuf:"varint,1,opt,name=replyScripNum,proto3" json:"replyScripNum"` // 今日可免费回复纸条的次数
  698. CreateScripNum int64 `protobuf:"varint,2,opt,name=createScripNum,proto3" json:"createScripNum"` // 今日免费创建纸条的次数
  699. MatchingNum int64 `protobuf:"varint,3,opt,name=matchingNum,proto3" json:"matchingNum"` // 今日免费匹配数
  700. }
  701. func (x *UserFreeNum) Reset() {
  702. *x = UserFreeNum{}
  703. if protoimpl.UnsafeEnabled {
  704. mi := &file_user_proto_msgTypes[13]
  705. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  706. ms.StoreMessageInfo(mi)
  707. }
  708. }
  709. func (x *UserFreeNum) String() string {
  710. return protoimpl.X.MessageStringOf(x)
  711. }
  712. func (*UserFreeNum) ProtoMessage() {}
  713. func (x *UserFreeNum) ProtoReflect() protoreflect.Message {
  714. mi := &file_user_proto_msgTypes[13]
  715. if protoimpl.UnsafeEnabled && x != nil {
  716. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  717. if ms.LoadMessageInfo() == nil {
  718. ms.StoreMessageInfo(mi)
  719. }
  720. return ms
  721. }
  722. return mi.MessageOf(x)
  723. }
  724. // Deprecated: Use UserFreeNum.ProtoReflect.Descriptor instead.
  725. func (*UserFreeNum) Descriptor() ([]byte, []int) {
  726. return file_user_proto_rawDescGZIP(), []int{13}
  727. }
  728. func (x *UserFreeNum) GetReplyScripNum() int64 {
  729. if x != nil {
  730. return x.ReplyScripNum
  731. }
  732. return 0
  733. }
  734. func (x *UserFreeNum) GetCreateScripNum() int64 {
  735. if x != nil {
  736. return x.CreateScripNum
  737. }
  738. return 0
  739. }
  740. func (x *UserFreeNum) GetMatchingNum() int64 {
  741. if x != nil {
  742. return x.MatchingNum
  743. }
  744. return 0
  745. }
  746. type ReplyScripRequest struct {
  747. state protoimpl.MessageState
  748. sizeCache protoimpl.SizeCache
  749. unknownFields protoimpl.UnknownFields
  750. ScripId int64 `protobuf:"varint,4,opt,name=scripId,proto3" json:"scripId"` // 小纸条ID
  751. Message *common.Message `protobuf:"bytes,5,opt,name=message,proto3" json:"message"` // 回复内容 只需要提供 回复小纸条的内容 或 回复小纸条的素材链接
  752. MsgType string `protobuf:"bytes,6,opt,name=msgType,proto3" json:"msgType"`
  753. }
  754. func (x *ReplyScripRequest) Reset() {
  755. *x = ReplyScripRequest{}
  756. if protoimpl.UnsafeEnabled {
  757. mi := &file_user_proto_msgTypes[14]
  758. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  759. ms.StoreMessageInfo(mi)
  760. }
  761. }
  762. func (x *ReplyScripRequest) String() string {
  763. return protoimpl.X.MessageStringOf(x)
  764. }
  765. func (*ReplyScripRequest) ProtoMessage() {}
  766. func (x *ReplyScripRequest) ProtoReflect() protoreflect.Message {
  767. mi := &file_user_proto_msgTypes[14]
  768. if protoimpl.UnsafeEnabled && x != nil {
  769. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  770. if ms.LoadMessageInfo() == nil {
  771. ms.StoreMessageInfo(mi)
  772. }
  773. return ms
  774. }
  775. return mi.MessageOf(x)
  776. }
  777. // Deprecated: Use ReplyScripRequest.ProtoReflect.Descriptor instead.
  778. func (*ReplyScripRequest) Descriptor() ([]byte, []int) {
  779. return file_user_proto_rawDescGZIP(), []int{14}
  780. }
  781. func (x *ReplyScripRequest) GetScripId() int64 {
  782. if x != nil {
  783. return x.ScripId
  784. }
  785. return 0
  786. }
  787. func (x *ReplyScripRequest) GetMessage() *common.Message {
  788. if x != nil {
  789. return x.Message
  790. }
  791. return nil
  792. }
  793. func (x *ReplyScripRequest) GetMsgType() string {
  794. if x != nil {
  795. return x.MsgType
  796. }
  797. return ""
  798. }
  799. type PersonLookScripRequest struct {
  800. state protoimpl.MessageState
  801. sizeCache protoimpl.SizeCache
  802. unknownFields protoimpl.UnknownFields
  803. ScripId int64 `protobuf:"varint,3,opt,name=scripId,proto3" json:"scripId"` // 纸条id
  804. }
  805. func (x *PersonLookScripRequest) Reset() {
  806. *x = PersonLookScripRequest{}
  807. if protoimpl.UnsafeEnabled {
  808. mi := &file_user_proto_msgTypes[15]
  809. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  810. ms.StoreMessageInfo(mi)
  811. }
  812. }
  813. func (x *PersonLookScripRequest) String() string {
  814. return protoimpl.X.MessageStringOf(x)
  815. }
  816. func (*PersonLookScripRequest) ProtoMessage() {}
  817. func (x *PersonLookScripRequest) ProtoReflect() protoreflect.Message {
  818. mi := &file_user_proto_msgTypes[15]
  819. if protoimpl.UnsafeEnabled && x != nil {
  820. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  821. if ms.LoadMessageInfo() == nil {
  822. ms.StoreMessageInfo(mi)
  823. }
  824. return ms
  825. }
  826. return mi.MessageOf(x)
  827. }
  828. // Deprecated: Use PersonLookScripRequest.ProtoReflect.Descriptor instead.
  829. func (*PersonLookScripRequest) Descriptor() ([]byte, []int) {
  830. return file_user_proto_rawDescGZIP(), []int{15}
  831. }
  832. func (x *PersonLookScripRequest) GetScripId() int64 {
  833. if x != nil {
  834. return x.ScripId
  835. }
  836. return 0
  837. }
  838. type UserFindScripRequest struct {
  839. state protoimpl.MessageState
  840. sizeCache protoimpl.SizeCache
  841. unknownFields protoimpl.UnknownFields
  842. NextId int64 `protobuf:"varint,3,opt,name=nextId,proto3" json:"nextId"`
  843. Offset int64 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset"`
  844. }
  845. func (x *UserFindScripRequest) Reset() {
  846. *x = UserFindScripRequest{}
  847. if protoimpl.UnsafeEnabled {
  848. mi := &file_user_proto_msgTypes[16]
  849. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  850. ms.StoreMessageInfo(mi)
  851. }
  852. }
  853. func (x *UserFindScripRequest) String() string {
  854. return protoimpl.X.MessageStringOf(x)
  855. }
  856. func (*UserFindScripRequest) ProtoMessage() {}
  857. func (x *UserFindScripRequest) ProtoReflect() protoreflect.Message {
  858. mi := &file_user_proto_msgTypes[16]
  859. if protoimpl.UnsafeEnabled && x != nil {
  860. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  861. if ms.LoadMessageInfo() == nil {
  862. ms.StoreMessageInfo(mi)
  863. }
  864. return ms
  865. }
  866. return mi.MessageOf(x)
  867. }
  868. // Deprecated: Use UserFindScripRequest.ProtoReflect.Descriptor instead.
  869. func (*UserFindScripRequest) Descriptor() ([]byte, []int) {
  870. return file_user_proto_rawDescGZIP(), []int{16}
  871. }
  872. func (x *UserFindScripRequest) GetNextId() int64 {
  873. if x != nil {
  874. return x.NextId
  875. }
  876. return 0
  877. }
  878. func (x *UserFindScripRequest) GetOffset() int64 {
  879. if x != nil {
  880. return x.Offset
  881. }
  882. return 0
  883. }
  884. type DeleteScripRequest struct {
  885. state protoimpl.MessageState
  886. sizeCache protoimpl.SizeCache
  887. unknownFields protoimpl.UnknownFields
  888. ScripId int64 `protobuf:"varint,1,opt,name=scripId,proto3" json:"scripId"` // 纸条id
  889. }
  890. func (x *DeleteScripRequest) Reset() {
  891. *x = DeleteScripRequest{}
  892. if protoimpl.UnsafeEnabled {
  893. mi := &file_user_proto_msgTypes[17]
  894. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  895. ms.StoreMessageInfo(mi)
  896. }
  897. }
  898. func (x *DeleteScripRequest) String() string {
  899. return protoimpl.X.MessageStringOf(x)
  900. }
  901. func (*DeleteScripRequest) ProtoMessage() {}
  902. func (x *DeleteScripRequest) ProtoReflect() protoreflect.Message {
  903. mi := &file_user_proto_msgTypes[17]
  904. if protoimpl.UnsafeEnabled && x != nil {
  905. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  906. if ms.LoadMessageInfo() == nil {
  907. ms.StoreMessageInfo(mi)
  908. }
  909. return ms
  910. }
  911. return mi.MessageOf(x)
  912. }
  913. // Deprecated: Use DeleteScripRequest.ProtoReflect.Descriptor instead.
  914. func (*DeleteScripRequest) Descriptor() ([]byte, []int) {
  915. return file_user_proto_rawDescGZIP(), []int{17}
  916. }
  917. func (x *DeleteScripRequest) GetScripId() int64 {
  918. if x != nil {
  919. return x.ScripId
  920. }
  921. return 0
  922. }
  923. type CreateScripRequest struct {
  924. state protoimpl.MessageState
  925. sizeCache protoimpl.SizeCache
  926. unknownFields protoimpl.UnknownFields
  927. Text string `protobuf:"bytes,1,opt,name=text,proto3" json:"text"` // 纸条内容
  928. PictureUrl string `protobuf:"bytes,2,opt,name=pictureUrl,proto3" json:"pictureUrl"` // 纸条背景图
  929. }
  930. func (x *CreateScripRequest) Reset() {
  931. *x = CreateScripRequest{}
  932. if protoimpl.UnsafeEnabled {
  933. mi := &file_user_proto_msgTypes[18]
  934. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  935. ms.StoreMessageInfo(mi)
  936. }
  937. }
  938. func (x *CreateScripRequest) String() string {
  939. return protoimpl.X.MessageStringOf(x)
  940. }
  941. func (*CreateScripRequest) ProtoMessage() {}
  942. func (x *CreateScripRequest) ProtoReflect() protoreflect.Message {
  943. mi := &file_user_proto_msgTypes[18]
  944. if protoimpl.UnsafeEnabled && x != nil {
  945. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  946. if ms.LoadMessageInfo() == nil {
  947. ms.StoreMessageInfo(mi)
  948. }
  949. return ms
  950. }
  951. return mi.MessageOf(x)
  952. }
  953. // Deprecated: Use CreateScripRequest.ProtoReflect.Descriptor instead.
  954. func (*CreateScripRequest) Descriptor() ([]byte, []int) {
  955. return file_user_proto_rawDescGZIP(), []int{18}
  956. }
  957. func (x *CreateScripRequest) GetText() string {
  958. if x != nil {
  959. return x.Text
  960. }
  961. return ""
  962. }
  963. func (x *CreateScripRequest) GetPictureUrl() string {
  964. if x != nil {
  965. return x.PictureUrl
  966. }
  967. return ""
  968. }
  969. type FindMatchingAvatarAndNumReply struct {
  970. state protoimpl.MessageState
  971. sizeCache protoimpl.SizeCache
  972. unknownFields protoimpl.UnknownFields
  973. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"` // 匹配人数
  974. List []string `protobuf:"bytes,2,rep,name=list,proto3" json:"list"` // 头像列表
  975. }
  976. func (x *FindMatchingAvatarAndNumReply) Reset() {
  977. *x = FindMatchingAvatarAndNumReply{}
  978. if protoimpl.UnsafeEnabled {
  979. mi := &file_user_proto_msgTypes[19]
  980. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  981. ms.StoreMessageInfo(mi)
  982. }
  983. }
  984. func (x *FindMatchingAvatarAndNumReply) String() string {
  985. return protoimpl.X.MessageStringOf(x)
  986. }
  987. func (*FindMatchingAvatarAndNumReply) ProtoMessage() {}
  988. func (x *FindMatchingAvatarAndNumReply) ProtoReflect() protoreflect.Message {
  989. mi := &file_user_proto_msgTypes[19]
  990. if protoimpl.UnsafeEnabled && x != nil {
  991. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  992. if ms.LoadMessageInfo() == nil {
  993. ms.StoreMessageInfo(mi)
  994. }
  995. return ms
  996. }
  997. return mi.MessageOf(x)
  998. }
  999. // Deprecated: Use FindMatchingAvatarAndNumReply.ProtoReflect.Descriptor instead.
  1000. func (*FindMatchingAvatarAndNumReply) Descriptor() ([]byte, []int) {
  1001. return file_user_proto_rawDescGZIP(), []int{19}
  1002. }
  1003. func (x *FindMatchingAvatarAndNumReply) GetNum() int64 {
  1004. if x != nil {
  1005. return x.Num
  1006. }
  1007. return 0
  1008. }
  1009. func (x *FindMatchingAvatarAndNumReply) GetList() []string {
  1010. if x != nil {
  1011. return x.List
  1012. }
  1013. return nil
  1014. }
  1015. type UserRechargeRequest struct {
  1016. state protoimpl.MessageState
  1017. sizeCache protoimpl.SizeCache
  1018. unknownFields protoimpl.UnknownFields
  1019. RechargeTemplateId int64 `protobuf:"varint,1,opt,name=RechargeTemplateId,proto3" json:"RechargeTemplateId"` // 充值套餐ID
  1020. }
  1021. func (x *UserRechargeRequest) Reset() {
  1022. *x = UserRechargeRequest{}
  1023. if protoimpl.UnsafeEnabled {
  1024. mi := &file_user_proto_msgTypes[20]
  1025. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1026. ms.StoreMessageInfo(mi)
  1027. }
  1028. }
  1029. func (x *UserRechargeRequest) String() string {
  1030. return protoimpl.X.MessageStringOf(x)
  1031. }
  1032. func (*UserRechargeRequest) ProtoMessage() {}
  1033. func (x *UserRechargeRequest) ProtoReflect() protoreflect.Message {
  1034. mi := &file_user_proto_msgTypes[20]
  1035. if protoimpl.UnsafeEnabled && x != nil {
  1036. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1037. if ms.LoadMessageInfo() == nil {
  1038. ms.StoreMessageInfo(mi)
  1039. }
  1040. return ms
  1041. }
  1042. return mi.MessageOf(x)
  1043. }
  1044. // Deprecated: Use UserRechargeRequest.ProtoReflect.Descriptor instead.
  1045. func (*UserRechargeRequest) Descriptor() ([]byte, []int) {
  1046. return file_user_proto_rawDescGZIP(), []int{20}
  1047. }
  1048. func (x *UserRechargeRequest) GetRechargeTemplateId() int64 {
  1049. if x != nil {
  1050. return x.RechargeTemplateId
  1051. }
  1052. return 0
  1053. }
  1054. type RechargeList struct {
  1055. state protoimpl.MessageState
  1056. sizeCache protoimpl.SizeCache
  1057. unknownFields protoimpl.UnknownFields
  1058. List []*RechargeInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1059. }
  1060. func (x *RechargeList) Reset() {
  1061. *x = RechargeList{}
  1062. if protoimpl.UnsafeEnabled {
  1063. mi := &file_user_proto_msgTypes[21]
  1064. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1065. ms.StoreMessageInfo(mi)
  1066. }
  1067. }
  1068. func (x *RechargeList) String() string {
  1069. return protoimpl.X.MessageStringOf(x)
  1070. }
  1071. func (*RechargeList) ProtoMessage() {}
  1072. func (x *RechargeList) ProtoReflect() protoreflect.Message {
  1073. mi := &file_user_proto_msgTypes[21]
  1074. if protoimpl.UnsafeEnabled && x != nil {
  1075. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1076. if ms.LoadMessageInfo() == nil {
  1077. ms.StoreMessageInfo(mi)
  1078. }
  1079. return ms
  1080. }
  1081. return mi.MessageOf(x)
  1082. }
  1083. // Deprecated: Use RechargeList.ProtoReflect.Descriptor instead.
  1084. func (*RechargeList) Descriptor() ([]byte, []int) {
  1085. return file_user_proto_rawDescGZIP(), []int{21}
  1086. }
  1087. func (x *RechargeList) GetList() []*RechargeInfo {
  1088. if x != nil {
  1089. return x.List
  1090. }
  1091. return nil
  1092. }
  1093. type RechargeInfo struct {
  1094. state protoimpl.MessageState
  1095. sizeCache protoimpl.SizeCache
  1096. unknownFields protoimpl.UnknownFields
  1097. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1098. Price int64 `protobuf:"varint,2,opt,name=price,proto3" json:"price"`
  1099. Credit int64 `protobuf:"varint,3,opt,name=credit,proto3" json:"credit"` // 积分
  1100. GiveCredit int64 `protobuf:"varint,4,opt,name=giveCredit,proto3" json:"giveCredit"` // 赠送的积分
  1101. Description string `protobuf:"bytes,5,opt,name=description,proto3" json:"description"` // 描述
  1102. Title string `protobuf:"bytes,6,opt,name=title,proto3" json:"title"` // 标题
  1103. }
  1104. func (x *RechargeInfo) Reset() {
  1105. *x = RechargeInfo{}
  1106. if protoimpl.UnsafeEnabled {
  1107. mi := &file_user_proto_msgTypes[22]
  1108. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1109. ms.StoreMessageInfo(mi)
  1110. }
  1111. }
  1112. func (x *RechargeInfo) String() string {
  1113. return protoimpl.X.MessageStringOf(x)
  1114. }
  1115. func (*RechargeInfo) ProtoMessage() {}
  1116. func (x *RechargeInfo) ProtoReflect() protoreflect.Message {
  1117. mi := &file_user_proto_msgTypes[22]
  1118. if protoimpl.UnsafeEnabled && x != nil {
  1119. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1120. if ms.LoadMessageInfo() == nil {
  1121. ms.StoreMessageInfo(mi)
  1122. }
  1123. return ms
  1124. }
  1125. return mi.MessageOf(x)
  1126. }
  1127. // Deprecated: Use RechargeInfo.ProtoReflect.Descriptor instead.
  1128. func (*RechargeInfo) Descriptor() ([]byte, []int) {
  1129. return file_user_proto_rawDescGZIP(), []int{22}
  1130. }
  1131. func (x *RechargeInfo) GetId() int64 {
  1132. if x != nil {
  1133. return x.Id
  1134. }
  1135. return 0
  1136. }
  1137. func (x *RechargeInfo) GetPrice() int64 {
  1138. if x != nil {
  1139. return x.Price
  1140. }
  1141. return 0
  1142. }
  1143. func (x *RechargeInfo) GetCredit() int64 {
  1144. if x != nil {
  1145. return x.Credit
  1146. }
  1147. return 0
  1148. }
  1149. func (x *RechargeInfo) GetGiveCredit() int64 {
  1150. if x != nil {
  1151. return x.GiveCredit
  1152. }
  1153. return 0
  1154. }
  1155. func (x *RechargeInfo) GetDescription() string {
  1156. if x != nil {
  1157. return x.Description
  1158. }
  1159. return ""
  1160. }
  1161. func (x *RechargeInfo) GetTitle() string {
  1162. if x != nil {
  1163. return x.Title
  1164. }
  1165. return ""
  1166. }
  1167. type InformationStatus struct {
  1168. state protoimpl.MessageState
  1169. sizeCache protoimpl.SizeCache
  1170. unknownFields protoimpl.UnknownFields
  1171. IsFinishInformation bool `protobuf:"varint,1,opt,name=isFinishInformation,proto3" json:"isFinishInformation"` //是否完善资料
  1172. IsGetAward bool `protobuf:"varint,2,opt,name=isGetAward,proto3" json:"isGetAward"` // 是否领取奖励
  1173. }
  1174. func (x *InformationStatus) Reset() {
  1175. *x = InformationStatus{}
  1176. if protoimpl.UnsafeEnabled {
  1177. mi := &file_user_proto_msgTypes[23]
  1178. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1179. ms.StoreMessageInfo(mi)
  1180. }
  1181. }
  1182. func (x *InformationStatus) String() string {
  1183. return protoimpl.X.MessageStringOf(x)
  1184. }
  1185. func (*InformationStatus) ProtoMessage() {}
  1186. func (x *InformationStatus) ProtoReflect() protoreflect.Message {
  1187. mi := &file_user_proto_msgTypes[23]
  1188. if protoimpl.UnsafeEnabled && x != nil {
  1189. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1190. if ms.LoadMessageInfo() == nil {
  1191. ms.StoreMessageInfo(mi)
  1192. }
  1193. return ms
  1194. }
  1195. return mi.MessageOf(x)
  1196. }
  1197. // Deprecated: Use InformationStatus.ProtoReflect.Descriptor instead.
  1198. func (*InformationStatus) Descriptor() ([]byte, []int) {
  1199. return file_user_proto_rawDescGZIP(), []int{23}
  1200. }
  1201. func (x *InformationStatus) GetIsFinishInformation() bool {
  1202. if x != nil {
  1203. return x.IsFinishInformation
  1204. }
  1205. return false
  1206. }
  1207. func (x *InformationStatus) GetIsGetAward() bool {
  1208. if x != nil {
  1209. return x.IsGetAward
  1210. }
  1211. return false
  1212. }
  1213. type UserBalance struct {
  1214. state protoimpl.MessageState
  1215. sizeCache protoimpl.SizeCache
  1216. unknownFields protoimpl.UnknownFields
  1217. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  1218. Credit int64 `protobuf:"varint,2,opt,name=credit,proto3" json:"credit"` // 积分
  1219. }
  1220. func (x *UserBalance) Reset() {
  1221. *x = UserBalance{}
  1222. if protoimpl.UnsafeEnabled {
  1223. mi := &file_user_proto_msgTypes[24]
  1224. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1225. ms.StoreMessageInfo(mi)
  1226. }
  1227. }
  1228. func (x *UserBalance) String() string {
  1229. return protoimpl.X.MessageStringOf(x)
  1230. }
  1231. func (*UserBalance) ProtoMessage() {}
  1232. func (x *UserBalance) ProtoReflect() protoreflect.Message {
  1233. mi := &file_user_proto_msgTypes[24]
  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 UserBalance.ProtoReflect.Descriptor instead.
  1244. func (*UserBalance) Descriptor() ([]byte, []int) {
  1245. return file_user_proto_rawDescGZIP(), []int{24}
  1246. }
  1247. func (x *UserBalance) GetId() string {
  1248. if x != nil {
  1249. return x.Id
  1250. }
  1251. return ""
  1252. }
  1253. func (x *UserBalance) GetCredit() int64 {
  1254. if x != nil {
  1255. return x.Credit
  1256. }
  1257. return 0
  1258. }
  1259. type UserFindChatListReply struct {
  1260. state protoimpl.MessageState
  1261. sizeCache protoimpl.SizeCache
  1262. unknownFields protoimpl.UnknownFields
  1263. List []*UserChatInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1264. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  1265. }
  1266. func (x *UserFindChatListReply) Reset() {
  1267. *x = UserFindChatListReply{}
  1268. if protoimpl.UnsafeEnabled {
  1269. mi := &file_user_proto_msgTypes[25]
  1270. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1271. ms.StoreMessageInfo(mi)
  1272. }
  1273. }
  1274. func (x *UserFindChatListReply) String() string {
  1275. return protoimpl.X.MessageStringOf(x)
  1276. }
  1277. func (*UserFindChatListReply) ProtoMessage() {}
  1278. func (x *UserFindChatListReply) ProtoReflect() protoreflect.Message {
  1279. mi := &file_user_proto_msgTypes[25]
  1280. if protoimpl.UnsafeEnabled && x != nil {
  1281. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1282. if ms.LoadMessageInfo() == nil {
  1283. ms.StoreMessageInfo(mi)
  1284. }
  1285. return ms
  1286. }
  1287. return mi.MessageOf(x)
  1288. }
  1289. // Deprecated: Use UserFindChatListReply.ProtoReflect.Descriptor instead.
  1290. func (*UserFindChatListReply) Descriptor() ([]byte, []int) {
  1291. return file_user_proto_rawDescGZIP(), []int{25}
  1292. }
  1293. func (x *UserFindChatListReply) GetList() []*UserChatInfo {
  1294. if x != nil {
  1295. return x.List
  1296. }
  1297. return nil
  1298. }
  1299. func (x *UserFindChatListReply) GetNextId() int64 {
  1300. if x != nil {
  1301. return x.NextId
  1302. }
  1303. return 0
  1304. }
  1305. type UserChatInfo struct {
  1306. state protoimpl.MessageState
  1307. sizeCache protoimpl.SizeCache
  1308. unknownFields protoimpl.UnknownFields
  1309. PersonId string `protobuf:"bytes,2,opt,name=personId,proto3" json:"personId"` // 用户ID
  1310. UnreadNum int64 `protobuf:"varint,3,opt,name=unreadNum,proto3" json:"unreadNum"` // 用户未读数
  1311. LastContent string `protobuf:"bytes,4,opt,name=lastContent,proto3" json:"lastContent"` // 上次发送内容
  1312. LastTime int64 `protobuf:"varint,5,opt,name=lastTime,proto3" json:"lastTime"` // 上次发送时间
  1313. Likeability int64 `protobuf:"varint,6,opt,name=likeability,proto3" json:"likeability"` // 好感度
  1314. Sex int64 `protobuf:"varint,8,opt,name=sex,proto3" json:"sex"` // 性别
  1315. AvatarUrl string `protobuf:"bytes,9,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像
  1316. Nickname string `protobuf:"bytes,10,opt,name=nickname,proto3" json:"nickname"` // 昵称
  1317. Age int64 `protobuf:"varint,11,opt,name=age,proto3" json:"age"` // 年龄
  1318. RoomId int64 `protobuf:"varint,12,opt,name=roomId,proto3" json:"roomId"` // 房间号ID
  1319. }
  1320. func (x *UserChatInfo) Reset() {
  1321. *x = UserChatInfo{}
  1322. if protoimpl.UnsafeEnabled {
  1323. mi := &file_user_proto_msgTypes[26]
  1324. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1325. ms.StoreMessageInfo(mi)
  1326. }
  1327. }
  1328. func (x *UserChatInfo) String() string {
  1329. return protoimpl.X.MessageStringOf(x)
  1330. }
  1331. func (*UserChatInfo) ProtoMessage() {}
  1332. func (x *UserChatInfo) ProtoReflect() protoreflect.Message {
  1333. mi := &file_user_proto_msgTypes[26]
  1334. if protoimpl.UnsafeEnabled && x != nil {
  1335. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1336. if ms.LoadMessageInfo() == nil {
  1337. ms.StoreMessageInfo(mi)
  1338. }
  1339. return ms
  1340. }
  1341. return mi.MessageOf(x)
  1342. }
  1343. // Deprecated: Use UserChatInfo.ProtoReflect.Descriptor instead.
  1344. func (*UserChatInfo) Descriptor() ([]byte, []int) {
  1345. return file_user_proto_rawDescGZIP(), []int{26}
  1346. }
  1347. func (x *UserChatInfo) GetPersonId() string {
  1348. if x != nil {
  1349. return x.PersonId
  1350. }
  1351. return ""
  1352. }
  1353. func (x *UserChatInfo) GetUnreadNum() int64 {
  1354. if x != nil {
  1355. return x.UnreadNum
  1356. }
  1357. return 0
  1358. }
  1359. func (x *UserChatInfo) GetLastContent() string {
  1360. if x != nil {
  1361. return x.LastContent
  1362. }
  1363. return ""
  1364. }
  1365. func (x *UserChatInfo) GetLastTime() int64 {
  1366. if x != nil {
  1367. return x.LastTime
  1368. }
  1369. return 0
  1370. }
  1371. func (x *UserChatInfo) GetLikeability() int64 {
  1372. if x != nil {
  1373. return x.Likeability
  1374. }
  1375. return 0
  1376. }
  1377. func (x *UserChatInfo) GetSex() int64 {
  1378. if x != nil {
  1379. return x.Sex
  1380. }
  1381. return 0
  1382. }
  1383. func (x *UserChatInfo) GetAvatarUrl() string {
  1384. if x != nil {
  1385. return x.AvatarUrl
  1386. }
  1387. return ""
  1388. }
  1389. func (x *UserChatInfo) GetNickname() string {
  1390. if x != nil {
  1391. return x.Nickname
  1392. }
  1393. return ""
  1394. }
  1395. func (x *UserChatInfo) GetAge() int64 {
  1396. if x != nil {
  1397. return x.Age
  1398. }
  1399. return 0
  1400. }
  1401. func (x *UserChatInfo) GetRoomId() int64 {
  1402. if x != nil {
  1403. return x.RoomId
  1404. }
  1405. return 0
  1406. }
  1407. type UserInfo struct {
  1408. state protoimpl.MessageState
  1409. sizeCache protoimpl.SizeCache
  1410. unknownFields protoimpl.UnknownFields
  1411. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  1412. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  1413. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  1414. Age int64 `protobuf:"varint,4,opt,name=age,proto3" json:"age"` // 年龄
  1415. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  1416. Constellation string `protobuf:"bytes,6,opt,name=constellation,proto3" json:"constellation"` // 星座
  1417. Credit int64 `protobuf:"varint,7,opt,name=credit,proto3" json:"credit"` // 积分
  1418. TagList []int64 `protobuf:"varint,8,rep,packed,name=tagList,proto3" json:"tagList"` // 标签
  1419. Signature string `protobuf:"bytes,9,opt,name=signature,proto3" json:"signature"` // 签名
  1420. IntroduceVoice string `protobuf:"bytes,10,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
  1421. Province string `protobuf:"bytes,11,opt,name=province,proto3" json:"province"` // 省
  1422. City string `protobuf:"bytes,12,opt,name=city,proto3" json:"city"` // 市
  1423. Area string `protobuf:"bytes,13,opt,name=area,proto3" json:"area"` // 区
  1424. UserId int64 `protobuf:"varint,14,opt,name=userId,proto3" json:"userId"` // 用户ID
  1425. IsBlack bool `protobuf:"varint,15,opt,name=isBlack,proto3" json:"isBlack"` // 是否被封号
  1426. IsRegister bool `protobuf:"varint,16,opt,name=isRegister,proto3" json:"isRegister"` // 是否注册
  1427. UpdateNicknameNum int64 `protobuf:"varint,17,opt,name=UpdateNicknameNum,proto3" json:"UpdateNicknameNum"` // 今日更新昵称数
  1428. UpdateAvatarUrlNum int64 `protobuf:"varint,18,opt,name=UpdateAvatarUrlNum,proto3" json:"UpdateAvatarUrlNum"` // 今日更新头像数
  1429. UpdatePicturesNum int64 `protobuf:"varint,19,opt,name=UpdatePicturesNum,proto3" json:"UpdatePicturesNum"` // 今日更新相册数
  1430. UpdateSignatureNum int64 `protobuf:"varint,20,opt,name=UpdateSignatureNum,proto3" json:"UpdateSignatureNum"` // 今日更新签名数
  1431. }
  1432. func (x *UserInfo) Reset() {
  1433. *x = UserInfo{}
  1434. if protoimpl.UnsafeEnabled {
  1435. mi := &file_user_proto_msgTypes[27]
  1436. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1437. ms.StoreMessageInfo(mi)
  1438. }
  1439. }
  1440. func (x *UserInfo) String() string {
  1441. return protoimpl.X.MessageStringOf(x)
  1442. }
  1443. func (*UserInfo) ProtoMessage() {}
  1444. func (x *UserInfo) ProtoReflect() protoreflect.Message {
  1445. mi := &file_user_proto_msgTypes[27]
  1446. if protoimpl.UnsafeEnabled && x != nil {
  1447. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1448. if ms.LoadMessageInfo() == nil {
  1449. ms.StoreMessageInfo(mi)
  1450. }
  1451. return ms
  1452. }
  1453. return mi.MessageOf(x)
  1454. }
  1455. // Deprecated: Use UserInfo.ProtoReflect.Descriptor instead.
  1456. func (*UserInfo) Descriptor() ([]byte, []int) {
  1457. return file_user_proto_rawDescGZIP(), []int{27}
  1458. }
  1459. func (x *UserInfo) GetId() string {
  1460. if x != nil {
  1461. return x.Id
  1462. }
  1463. return ""
  1464. }
  1465. func (x *UserInfo) GetNickname() string {
  1466. if x != nil {
  1467. return x.Nickname
  1468. }
  1469. return ""
  1470. }
  1471. func (x *UserInfo) GetAvatarUrl() string {
  1472. if x != nil {
  1473. return x.AvatarUrl
  1474. }
  1475. return ""
  1476. }
  1477. func (x *UserInfo) GetAge() int64 {
  1478. if x != nil {
  1479. return x.Age
  1480. }
  1481. return 0
  1482. }
  1483. func (x *UserInfo) GetSex() int64 {
  1484. if x != nil {
  1485. return x.Sex
  1486. }
  1487. return 0
  1488. }
  1489. func (x *UserInfo) GetConstellation() string {
  1490. if x != nil {
  1491. return x.Constellation
  1492. }
  1493. return ""
  1494. }
  1495. func (x *UserInfo) GetCredit() int64 {
  1496. if x != nil {
  1497. return x.Credit
  1498. }
  1499. return 0
  1500. }
  1501. func (x *UserInfo) GetTagList() []int64 {
  1502. if x != nil {
  1503. return x.TagList
  1504. }
  1505. return nil
  1506. }
  1507. func (x *UserInfo) GetSignature() string {
  1508. if x != nil {
  1509. return x.Signature
  1510. }
  1511. return ""
  1512. }
  1513. func (x *UserInfo) GetIntroduceVoice() string {
  1514. if x != nil {
  1515. return x.IntroduceVoice
  1516. }
  1517. return ""
  1518. }
  1519. func (x *UserInfo) GetProvince() string {
  1520. if x != nil {
  1521. return x.Province
  1522. }
  1523. return ""
  1524. }
  1525. func (x *UserInfo) GetCity() string {
  1526. if x != nil {
  1527. return x.City
  1528. }
  1529. return ""
  1530. }
  1531. func (x *UserInfo) GetArea() string {
  1532. if x != nil {
  1533. return x.Area
  1534. }
  1535. return ""
  1536. }
  1537. func (x *UserInfo) GetUserId() int64 {
  1538. if x != nil {
  1539. return x.UserId
  1540. }
  1541. return 0
  1542. }
  1543. func (x *UserInfo) GetIsBlack() bool {
  1544. if x != nil {
  1545. return x.IsBlack
  1546. }
  1547. return false
  1548. }
  1549. func (x *UserInfo) GetIsRegister() bool {
  1550. if x != nil {
  1551. return x.IsRegister
  1552. }
  1553. return false
  1554. }
  1555. func (x *UserInfo) GetUpdateNicknameNum() int64 {
  1556. if x != nil {
  1557. return x.UpdateNicknameNum
  1558. }
  1559. return 0
  1560. }
  1561. func (x *UserInfo) GetUpdateAvatarUrlNum() int64 {
  1562. if x != nil {
  1563. return x.UpdateAvatarUrlNum
  1564. }
  1565. return 0
  1566. }
  1567. func (x *UserInfo) GetUpdatePicturesNum() int64 {
  1568. if x != nil {
  1569. return x.UpdatePicturesNum
  1570. }
  1571. return 0
  1572. }
  1573. func (x *UserInfo) GetUpdateSignatureNum() int64 {
  1574. if x != nil {
  1575. return x.UpdateSignatureNum
  1576. }
  1577. return 0
  1578. }
  1579. type KeyRequest struct {
  1580. state protoimpl.MessageState
  1581. sizeCache protoimpl.SizeCache
  1582. unknownFields protoimpl.UnknownFields
  1583. Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key"`
  1584. }
  1585. func (x *KeyRequest) Reset() {
  1586. *x = KeyRequest{}
  1587. if protoimpl.UnsafeEnabled {
  1588. mi := &file_user_proto_msgTypes[28]
  1589. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1590. ms.StoreMessageInfo(mi)
  1591. }
  1592. }
  1593. func (x *KeyRequest) String() string {
  1594. return protoimpl.X.MessageStringOf(x)
  1595. }
  1596. func (*KeyRequest) ProtoMessage() {}
  1597. func (x *KeyRequest) ProtoReflect() protoreflect.Message {
  1598. mi := &file_user_proto_msgTypes[28]
  1599. if protoimpl.UnsafeEnabled && x != nil {
  1600. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1601. if ms.LoadMessageInfo() == nil {
  1602. ms.StoreMessageInfo(mi)
  1603. }
  1604. return ms
  1605. }
  1606. return mi.MessageOf(x)
  1607. }
  1608. // Deprecated: Use KeyRequest.ProtoReflect.Descriptor instead.
  1609. func (*KeyRequest) Descriptor() ([]byte, []int) {
  1610. return file_user_proto_rawDescGZIP(), []int{28}
  1611. }
  1612. func (x *KeyRequest) GetKey() string {
  1613. if x != nil {
  1614. return x.Key
  1615. }
  1616. return ""
  1617. }
  1618. type CreatePayRequest struct {
  1619. state protoimpl.MessageState
  1620. sizeCache protoimpl.SizeCache
  1621. unknownFields protoimpl.UnknownFields
  1622. Money int64 `protobuf:"varint,1,opt,name=money,proto3" json:"money"` // 支付金额 单位 分
  1623. Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type"` // 类型
  1624. OpenId string `protobuf:"bytes,3,opt,name=openId,proto3" json:"openId"`
  1625. Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description"`
  1626. Attach string `protobuf:"bytes,5,opt,name=attach,proto3" json:"attach"`
  1627. }
  1628. func (x *CreatePayRequest) Reset() {
  1629. *x = CreatePayRequest{}
  1630. if protoimpl.UnsafeEnabled {
  1631. mi := &file_user_proto_msgTypes[29]
  1632. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1633. ms.StoreMessageInfo(mi)
  1634. }
  1635. }
  1636. func (x *CreatePayRequest) String() string {
  1637. return protoimpl.X.MessageStringOf(x)
  1638. }
  1639. func (*CreatePayRequest) ProtoMessage() {}
  1640. func (x *CreatePayRequest) ProtoReflect() protoreflect.Message {
  1641. mi := &file_user_proto_msgTypes[29]
  1642. if protoimpl.UnsafeEnabled && x != nil {
  1643. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1644. if ms.LoadMessageInfo() == nil {
  1645. ms.StoreMessageInfo(mi)
  1646. }
  1647. return ms
  1648. }
  1649. return mi.MessageOf(x)
  1650. }
  1651. // Deprecated: Use CreatePayRequest.ProtoReflect.Descriptor instead.
  1652. func (*CreatePayRequest) Descriptor() ([]byte, []int) {
  1653. return file_user_proto_rawDescGZIP(), []int{29}
  1654. }
  1655. func (x *CreatePayRequest) GetMoney() int64 {
  1656. if x != nil {
  1657. return x.Money
  1658. }
  1659. return 0
  1660. }
  1661. func (x *CreatePayRequest) GetType() string {
  1662. if x != nil {
  1663. return x.Type
  1664. }
  1665. return ""
  1666. }
  1667. func (x *CreatePayRequest) GetOpenId() string {
  1668. if x != nil {
  1669. return x.OpenId
  1670. }
  1671. return ""
  1672. }
  1673. func (x *CreatePayRequest) GetDescription() string {
  1674. if x != nil {
  1675. return x.Description
  1676. }
  1677. return ""
  1678. }
  1679. func (x *CreatePayRequest) GetAttach() string {
  1680. if x != nil {
  1681. return x.Attach
  1682. }
  1683. return ""
  1684. }
  1685. type PayInfo struct {
  1686. state protoimpl.MessageState
  1687. sizeCache protoimpl.SizeCache
  1688. unknownFields protoimpl.UnknownFields
  1689. PayInfo *structpb.Value `protobuf:"bytes,1,opt,name=payInfo,proto3" json:"payInfo"`
  1690. OrderId int64 `protobuf:"varint,2,opt,name=orderId,proto3" json:"orderId"`
  1691. }
  1692. func (x *PayInfo) Reset() {
  1693. *x = PayInfo{}
  1694. if protoimpl.UnsafeEnabled {
  1695. mi := &file_user_proto_msgTypes[30]
  1696. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1697. ms.StoreMessageInfo(mi)
  1698. }
  1699. }
  1700. func (x *PayInfo) String() string {
  1701. return protoimpl.X.MessageStringOf(x)
  1702. }
  1703. func (*PayInfo) ProtoMessage() {}
  1704. func (x *PayInfo) ProtoReflect() protoreflect.Message {
  1705. mi := &file_user_proto_msgTypes[30]
  1706. if protoimpl.UnsafeEnabled && x != nil {
  1707. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1708. if ms.LoadMessageInfo() == nil {
  1709. ms.StoreMessageInfo(mi)
  1710. }
  1711. return ms
  1712. }
  1713. return mi.MessageOf(x)
  1714. }
  1715. // Deprecated: Use PayInfo.ProtoReflect.Descriptor instead.
  1716. func (*PayInfo) Descriptor() ([]byte, []int) {
  1717. return file_user_proto_rawDescGZIP(), []int{30}
  1718. }
  1719. func (x *PayInfo) GetPayInfo() *structpb.Value {
  1720. if x != nil {
  1721. return x.PayInfo
  1722. }
  1723. return nil
  1724. }
  1725. func (x *PayInfo) GetOrderId() int64 {
  1726. if x != nil {
  1727. return x.OrderId
  1728. }
  1729. return 0
  1730. }
  1731. type PayOrderInfo struct {
  1732. state protoimpl.MessageState
  1733. sizeCache protoimpl.SizeCache
  1734. unknownFields protoimpl.UnknownFields
  1735. UserID string `protobuf:"bytes,1,opt,name=userID,proto3" json:"userID"`
  1736. OrderID int64 `protobuf:"varint,2,opt,name=orderID,proto3" json:"orderID"` // 订单的唯一ID
  1737. Money int64 `protobuf:"varint,3,opt,name=money,proto3" json:"money"` // 支付金额 ,单位分
  1738. Type string `protobuf:"bytes,4,opt,name=type,proto3" json:"type"` // 类型
  1739. TransactionID string `protobuf:"bytes,5,opt,name=TransactionID,proto3" json:"TransactionID"`
  1740. OpenId string `protobuf:"bytes,6,opt,name=openId,proto3" json:"openId"`
  1741. Description string `protobuf:"bytes,7,opt,name=description,proto3" json:"description"`
  1742. Status string `protobuf:"bytes,9,opt,name=status,proto3" json:"status"` // 状态
  1743. PayTime int64 `protobuf:"varint,10,opt,name=payTime,proto3" json:"payTime"` // 支付时间
  1744. CreateTime int64 `protobuf:"varint,11,opt,name=createTime,proto3" json:"createTime"` // 创建时间
  1745. }
  1746. func (x *PayOrderInfo) Reset() {
  1747. *x = PayOrderInfo{}
  1748. if protoimpl.UnsafeEnabled {
  1749. mi := &file_user_proto_msgTypes[31]
  1750. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1751. ms.StoreMessageInfo(mi)
  1752. }
  1753. }
  1754. func (x *PayOrderInfo) String() string {
  1755. return protoimpl.X.MessageStringOf(x)
  1756. }
  1757. func (*PayOrderInfo) ProtoMessage() {}
  1758. func (x *PayOrderInfo) ProtoReflect() protoreflect.Message {
  1759. mi := &file_user_proto_msgTypes[31]
  1760. if protoimpl.UnsafeEnabled && x != nil {
  1761. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1762. if ms.LoadMessageInfo() == nil {
  1763. ms.StoreMessageInfo(mi)
  1764. }
  1765. return ms
  1766. }
  1767. return mi.MessageOf(x)
  1768. }
  1769. // Deprecated: Use PayOrderInfo.ProtoReflect.Descriptor instead.
  1770. func (*PayOrderInfo) Descriptor() ([]byte, []int) {
  1771. return file_user_proto_rawDescGZIP(), []int{31}
  1772. }
  1773. func (x *PayOrderInfo) GetUserID() string {
  1774. if x != nil {
  1775. return x.UserID
  1776. }
  1777. return ""
  1778. }
  1779. func (x *PayOrderInfo) GetOrderID() int64 {
  1780. if x != nil {
  1781. return x.OrderID
  1782. }
  1783. return 0
  1784. }
  1785. func (x *PayOrderInfo) GetMoney() int64 {
  1786. if x != nil {
  1787. return x.Money
  1788. }
  1789. return 0
  1790. }
  1791. func (x *PayOrderInfo) GetType() string {
  1792. if x != nil {
  1793. return x.Type
  1794. }
  1795. return ""
  1796. }
  1797. func (x *PayOrderInfo) GetTransactionID() string {
  1798. if x != nil {
  1799. return x.TransactionID
  1800. }
  1801. return ""
  1802. }
  1803. func (x *PayOrderInfo) GetOpenId() string {
  1804. if x != nil {
  1805. return x.OpenId
  1806. }
  1807. return ""
  1808. }
  1809. func (x *PayOrderInfo) GetDescription() string {
  1810. if x != nil {
  1811. return x.Description
  1812. }
  1813. return ""
  1814. }
  1815. func (x *PayOrderInfo) GetStatus() string {
  1816. if x != nil {
  1817. return x.Status
  1818. }
  1819. return ""
  1820. }
  1821. func (x *PayOrderInfo) GetPayTime() int64 {
  1822. if x != nil {
  1823. return x.PayTime
  1824. }
  1825. return 0
  1826. }
  1827. func (x *PayOrderInfo) GetCreateTime() int64 {
  1828. if x != nil {
  1829. return x.CreateTime
  1830. }
  1831. return 0
  1832. }
  1833. type PayOrderList struct {
  1834. state protoimpl.MessageState
  1835. sizeCache protoimpl.SizeCache
  1836. unknownFields protoimpl.UnknownFields
  1837. List []*PayOrderInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1838. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  1839. }
  1840. func (x *PayOrderList) Reset() {
  1841. *x = PayOrderList{}
  1842. if protoimpl.UnsafeEnabled {
  1843. mi := &file_user_proto_msgTypes[32]
  1844. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1845. ms.StoreMessageInfo(mi)
  1846. }
  1847. }
  1848. func (x *PayOrderList) String() string {
  1849. return protoimpl.X.MessageStringOf(x)
  1850. }
  1851. func (*PayOrderList) ProtoMessage() {}
  1852. func (x *PayOrderList) ProtoReflect() protoreflect.Message {
  1853. mi := &file_user_proto_msgTypes[32]
  1854. if protoimpl.UnsafeEnabled && x != nil {
  1855. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1856. if ms.LoadMessageInfo() == nil {
  1857. ms.StoreMessageInfo(mi)
  1858. }
  1859. return ms
  1860. }
  1861. return mi.MessageOf(x)
  1862. }
  1863. // Deprecated: Use PayOrderList.ProtoReflect.Descriptor instead.
  1864. func (*PayOrderList) Descriptor() ([]byte, []int) {
  1865. return file_user_proto_rawDescGZIP(), []int{32}
  1866. }
  1867. func (x *PayOrderList) GetList() []*PayOrderInfo {
  1868. if x != nil {
  1869. return x.List
  1870. }
  1871. return nil
  1872. }
  1873. func (x *PayOrderList) GetNextId() int64 {
  1874. if x != nil {
  1875. return x.NextId
  1876. }
  1877. return 0
  1878. }
  1879. type FindPayOrderListRequest struct {
  1880. state protoimpl.MessageState
  1881. sizeCache protoimpl.SizeCache
  1882. unknownFields protoimpl.UnknownFields
  1883. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  1884. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  1885. Status string `protobuf:"bytes,3,opt,name=status,proto3" json:"status"`
  1886. }
  1887. func (x *FindPayOrderListRequest) Reset() {
  1888. *x = FindPayOrderListRequest{}
  1889. if protoimpl.UnsafeEnabled {
  1890. mi := &file_user_proto_msgTypes[33]
  1891. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1892. ms.StoreMessageInfo(mi)
  1893. }
  1894. }
  1895. func (x *FindPayOrderListRequest) String() string {
  1896. return protoimpl.X.MessageStringOf(x)
  1897. }
  1898. func (*FindPayOrderListRequest) ProtoMessage() {}
  1899. func (x *FindPayOrderListRequest) ProtoReflect() protoreflect.Message {
  1900. mi := &file_user_proto_msgTypes[33]
  1901. if protoimpl.UnsafeEnabled && x != nil {
  1902. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1903. if ms.LoadMessageInfo() == nil {
  1904. ms.StoreMessageInfo(mi)
  1905. }
  1906. return ms
  1907. }
  1908. return mi.MessageOf(x)
  1909. }
  1910. // Deprecated: Use FindPayOrderListRequest.ProtoReflect.Descriptor instead.
  1911. func (*FindPayOrderListRequest) Descriptor() ([]byte, []int) {
  1912. return file_user_proto_rawDescGZIP(), []int{33}
  1913. }
  1914. func (x *FindPayOrderListRequest) GetNextId() int64 {
  1915. if x != nil {
  1916. return x.NextId
  1917. }
  1918. return 0
  1919. }
  1920. func (x *FindPayOrderListRequest) GetOffset() int64 {
  1921. if x != nil {
  1922. return x.Offset
  1923. }
  1924. return 0
  1925. }
  1926. func (x *FindPayOrderListRequest) GetStatus() string {
  1927. if x != nil {
  1928. return x.Status
  1929. }
  1930. return ""
  1931. }
  1932. type PayCallbackReply struct {
  1933. state protoimpl.MessageState
  1934. sizeCache protoimpl.SizeCache
  1935. unknownFields protoimpl.UnknownFields
  1936. Result []byte `protobuf:"bytes,1,opt,name=result,proto3" json:"result"`
  1937. }
  1938. func (x *PayCallbackReply) Reset() {
  1939. *x = PayCallbackReply{}
  1940. if protoimpl.UnsafeEnabled {
  1941. mi := &file_user_proto_msgTypes[34]
  1942. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1943. ms.StoreMessageInfo(mi)
  1944. }
  1945. }
  1946. func (x *PayCallbackReply) String() string {
  1947. return protoimpl.X.MessageStringOf(x)
  1948. }
  1949. func (*PayCallbackReply) ProtoMessage() {}
  1950. func (x *PayCallbackReply) ProtoReflect() protoreflect.Message {
  1951. mi := &file_user_proto_msgTypes[34]
  1952. if protoimpl.UnsafeEnabled && x != nil {
  1953. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1954. if ms.LoadMessageInfo() == nil {
  1955. ms.StoreMessageInfo(mi)
  1956. }
  1957. return ms
  1958. }
  1959. return mi.MessageOf(x)
  1960. }
  1961. // Deprecated: Use PayCallbackReply.ProtoReflect.Descriptor instead.
  1962. func (*PayCallbackReply) Descriptor() ([]byte, []int) {
  1963. return file_user_proto_rawDescGZIP(), []int{34}
  1964. }
  1965. func (x *PayCallbackReply) GetResult() []byte {
  1966. if x != nil {
  1967. return x.Result
  1968. }
  1969. return nil
  1970. }
  1971. var File_user_proto protoreflect.FileDescriptor
  1972. var file_user_proto_rawDesc = []byte{
  1973. 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x08, 0x61, 0x70,
  1974. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
  1975. 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70,
  1976. 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f,
  1977. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  1978. 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  1979. 0x75, 0x66, 0x2f, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
  1980. 0x13, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x70,
  1981. 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1982. 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x61,
  1983. 0x70, 0x69, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2f, 0x73, 0x74,
  1984. 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x4c,
  1985. 0x0a, 0x16, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x6c, 0x61, 0x63,
  1986. 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73,
  1987. 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73,
  1988. 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x02,
  1989. 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0x99, 0x01, 0x0a,
  1990. 0x12, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75,
  1991. 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x01, 0x20,
  1992. 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x12, 0x2d, 0x0a, 0x07, 0x6d,
  1993. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61,
  1994. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  1995. 0x65, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73,
  1996. 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x73, 0x67,
  1997. 0x54, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x77, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65,
  1998. 0x74, 0x54, 0x61, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x77, 0x65, 0x62, 0x73,
  1999. 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x54, 0x61, 0x67, 0x22, 0x90, 0x01, 0x0a, 0x28, 0x4d, 0x61, 0x6e,
  2000. 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x49, 0x73, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x51,
  2001. 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  2002. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20,
  2003. 0x01, 0x28, 0x03, 0x52, 0x04, 0x70, 0x61, 0x67, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67,
  2004. 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x70, 0x61, 0x67,
  2005. 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,
  2006. 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20,
  2007. 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78,
  2008. 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x22, 0x64, 0x0a, 0x1e, 0x4d,
  2009. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72,
  2010. 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a,
  2011. 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  2012. 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x6e, 0x75, 0x6d,
  2013. 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75, 0x6d, 0x12, 0x14, 0x0a, 0x05, 0x74,
  2014. 0x69, 0x74, 0x6c, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c,
  2015. 0x65, 0x22, 0x5b, 0x0a, 0x21, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4d, 0x61, 0x72, 0x6b,
  2016. 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52,
  2017. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x61, 0x73, 0x73, 0x49, 0x64,
  2018. 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x70, 0x61, 0x73, 0x73, 0x49, 0x64, 0x73,
  2019. 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x6e, 0x50, 0x61, 0x73, 0x73, 0x49, 0x64, 0x73, 0x18, 0x02, 0x20,
  2020. 0x03, 0x28, 0x09, 0x52, 0x09, 0x75, 0x6e, 0x50, 0x61, 0x73, 0x73, 0x49, 0x64, 0x73, 0x22, 0x4b,
  2021. 0x0a, 0x19, 0x47, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x55, 0x73,
  2022. 0x65, 0x72, 0x44, 0x42, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x73,
  2023. 0x65, 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1c, 0x0a,
  2024. 0x09, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09,
  2025. 0x52, 0x09, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x73, 0x22, 0x65, 0x0a, 0x23, 0x46,
  2026. 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x48, 0x69, 0x67, 0x68,
  2027. 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65,
  2028. 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  2029. 0x03, 0x6e, 0x75, 0x6d, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x03, 0x20, 0x01, 0x28,
  2030. 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  2031. 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  2032. 0x49, 0x64, 0x22, 0x47, 0x0a, 0x21, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d,
  2033. 0x65, 0x6e, 0x64, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73,
  2034. 0x65, 0x72, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x22, 0x0a, 0x0c, 0x70, 0x65, 0x72, 0x73, 0x6f,
  2035. 0x6e, 0x49, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x70,
  2036. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x22, 0xb3, 0x01, 0x0a, 0x29,
  2037. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65,
  2038. 0x64, 0x4e, 0x75, 0x6d, 0x41, 0x6e, 0x64, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x55, 0x73, 0x65,
  2039. 0x72, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x28, 0x0a, 0x0f, 0x74, 0x6f, 0x64,
  2040. 0x61, 0x79, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01,
  2041. 0x28, 0x03, 0x52, 0x0f, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64,
  2042. 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18,
  2043. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12,
  2044. 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01,
  2045. 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a,
  2046. 0x03, 0x73, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12,
  2047. 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67,
  2048. 0x65, 0x22, 0xaa, 0x01, 0x0a, 0x1e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4d,
  2049. 0x73, 0x67, 0x46, 0x72, 0x6f, 0x6d, 0x57, 0x65, 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x52,
  2050. 0x65, 0x70, 0x6c, 0x79, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  2051. 0x52, 0x02, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x02, 0x20, 0x01, 0x28,
  2052. 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x16, 0x0a, 0x06, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74,
  2053. 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x12, 0x24,
  2054. 0x0a, 0x0d, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
  2055. 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74,
  2056. 0x61, 0x74, 0x75, 0x73, 0x12, 0x28, 0x0a, 0x0f, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x4d, 0x61, 0x74,
  2057. 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0f, 0x74,
  2058. 0x6f, 0x64, 0x61, 0x79, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x22, 0x35,
  2059. 0x0a, 0x1b, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63,
  2060. 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a,
  2061. 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75,
  2062. 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x65, 0x0a, 0x23, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77,
  2063. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x52, 0x65, 0x6d,
  2064. 0x69, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08,
  2065. 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  2066. 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x73, 0x65, 0x6e, 0x64,
  2067. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c,
  2068. 0x73, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x42, 0x0a, 0x18,
  2069. 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65,
  2070. 0x64, 0x69, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x73, 0x53, 0x65,
  2071. 0x6e, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08,
  2072. 0x52, 0x0e, 0x69, 0x73, 0x53, 0x65, 0x6e, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72,
  2073. 0x22, 0x7d, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x46, 0x72, 0x65, 0x65, 0x4e, 0x75, 0x6d, 0x12,
  2074. 0x24, 0x0a, 0x0d, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4e, 0x75, 0x6d,
  2075. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72,
  2076. 0x69, 0x70, 0x4e, 0x75, 0x6d, 0x12, 0x26, 0x0a, 0x0e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53,
  2077. 0x63, 0x72, 0x69, 0x70, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x63,
  2078. 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4e, 0x75, 0x6d, 0x12, 0x20, 0x0a,
  2079. 0x0b, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01,
  2080. 0x28, 0x03, 0x52, 0x0b, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4e, 0x75, 0x6d, 0x22,
  2081. 0x76, 0x0a, 0x11, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71,
  2082. 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x18,
  2083. 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x12, 0x2d,
  2084. 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32,
  2085. 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x73,
  2086. 0x73, 0x61, 0x67, 0x65, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a,
  2087. 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  2088. 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x22, 0x32, 0x0a, 0x16, 0x50, 0x65, 0x72, 0x73, 0x6f,
  2089. 0x6e, 0x4c, 0x6f, 0x6f, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2090. 0x74, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01,
  2091. 0x28, 0x03, 0x52, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x22, 0x46, 0x0a, 0x14, 0x55,
  2092. 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75,
  2093. 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x03, 0x20,
  2094. 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f,
  2095. 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66,
  2096. 0x73, 0x65, 0x74, 0x22, 0x2e, 0x0a, 0x12, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x72,
  2097. 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x63, 0x72,
  2098. 0x69, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x73, 0x63, 0x72, 0x69,
  2099. 0x70, 0x49, 0x64, 0x22, 0x48, 0x0a, 0x12, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72,
  2100. 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x65, 0x78,
  2101. 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x65, 0x78, 0x74, 0x12, 0x1e, 0x0a,
  2102. 0x0a, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28,
  2103. 0x09, 0x52, 0x0a, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x22, 0x45, 0x0a,
  2104. 0x1d, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x41, 0x76, 0x61,
  2105. 0x74, 0x61, 0x72, 0x41, 0x6e, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x10,
  2106. 0x0a, 0x03, 0x6e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75, 0x6d,
  2107. 0x12, 0x12, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04,
  2108. 0x6c, 0x69, 0x73, 0x74, 0x22, 0x45, 0x0a, 0x13, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68,
  2109. 0x61, 0x72, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2e, 0x0a, 0x12, 0x52,
  2110. 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49,
  2111. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x12, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67,
  2112. 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x22, 0x3a, 0x0a, 0x0c, 0x52,
  2113. 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2a, 0x0a, 0x04, 0x6c,
  2114. 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2115. 0x75, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x49, 0x6e, 0x66,
  2116. 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xa4, 0x01, 0x0a, 0x0c, 0x52, 0x65, 0x63, 0x68,
  2117. 0x61, 0x72, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01,
  2118. 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x72, 0x69, 0x63,
  2119. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x12, 0x16,
  2120. 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  2121. 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x67, 0x69, 0x76, 0x65, 0x43, 0x72,
  2122. 0x65, 0x64, 0x69, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x67, 0x69, 0x76, 0x65,
  2123. 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69,
  2124. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73,
  2125. 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c,
  2126. 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x22, 0x65,
  2127. 0x0a, 0x11, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61,
  2128. 0x74, 0x75, 0x73, 0x12, 0x30, 0x0a, 0x13, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49,
  2129. 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08,
  2130. 0x52, 0x13, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d,
  2131. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x73, 0x47, 0x65, 0x74, 0x41, 0x77,
  2132. 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x47, 0x65, 0x74,
  2133. 0x41, 0x77, 0x61, 0x72, 0x64, 0x22, 0x35, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x42, 0x61, 0x6c,
  2134. 0x61, 0x6e, 0x63, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  2135. 0x52, 0x02, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x02,
  2136. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x22, 0x5b, 0x0a, 0x15,
  2137. 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x69, 0x73, 0x74,
  2138. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x2a, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20,
  2139. 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55,
  2140. 0x73, 0x65, 0x72, 0x43, 0x68, 0x61, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73,
  2141. 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  2142. 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x22, 0x9e, 0x02, 0x0a, 0x0c, 0x55, 0x73,
  2143. 0x65, 0x72, 0x43, 0x68, 0x61, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65,
  2144. 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65,
  2145. 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64,
  2146. 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x75, 0x6e, 0x72, 0x65, 0x61,
  2147. 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x74,
  2148. 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x43,
  2149. 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x54, 0x69,
  2150. 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x54, 0x69,
  2151. 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x69, 0x6b, 0x65, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74,
  2152. 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6c, 0x69, 0x6b, 0x65, 0x61, 0x62, 0x69,
  2153. 0x6c, 0x69, 0x74, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x08, 0x20, 0x01, 0x28,
  2154. 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72,
  2155. 0x55, 0x72, 0x6c, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61,
  2156. 0x72, 0x55, 0x72, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65,
  2157. 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65,
  2158. 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61,
  2159. 0x67, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x0c, 0x20, 0x01,
  2160. 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22, 0xe8, 0x04, 0x0a, 0x08, 0x55,
  2161. 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
  2162. 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e,
  2163. 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e,
  2164. 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c,
  2165. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72,
  2166. 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03,
  2167. 0x61, 0x67, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03,
  2168. 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c,
  2169. 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f,
  2170. 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x63,
  2171. 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65,
  2172. 0x64, 0x69, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x08,
  2173. 0x20, 0x03, 0x28, 0x03, 0x52, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x0a,
  2174. 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09,
  2175. 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x69,
  2176. 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0a, 0x20,
  2177. 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f,
  2178. 0x69, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18,
  2179. 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12,
  2180. 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63,
  2181. 0x69, 0x74, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x0d, 0x20, 0x01, 0x28,
  2182. 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49,
  2183. 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12,
  2184. 0x18, 0x0a, 0x07, 0x69, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x08,
  2185. 0x52, 0x07, 0x69, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x73, 0x52,
  2186. 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x18, 0x10, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69,
  2187. 0x73, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x12, 0x2c, 0x0a, 0x11, 0x55, 0x70, 0x64,
  2188. 0x61, 0x74, 0x65, 0x4e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x4e, 0x75, 0x6d, 0x18, 0x11,
  2189. 0x20, 0x01, 0x28, 0x03, 0x52, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4e, 0x69, 0x63, 0x6b,
  2190. 0x6e, 0x61, 0x6d, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x2e, 0x0a, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74,
  2191. 0x65, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x4e, 0x75, 0x6d, 0x18, 0x12, 0x20,
  2192. 0x01, 0x28, 0x03, 0x52, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x76, 0x61, 0x74, 0x61,
  2193. 0x72, 0x55, 0x72, 0x6c, 0x4e, 0x75, 0x6d, 0x12, 0x2c, 0x0a, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74,
  2194. 0x65, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x4e, 0x75, 0x6d, 0x18, 0x13, 0x20, 0x01,
  2195. 0x28, 0x03, 0x52, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72,
  2196. 0x65, 0x73, 0x4e, 0x75, 0x6d, 0x12, 0x2e, 0x0a, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53,
  2197. 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x4e, 0x75, 0x6d, 0x18, 0x14, 0x20, 0x01, 0x28,
  2198. 0x03, 0x52, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75,
  2199. 0x72, 0x65, 0x4e, 0x75, 0x6d, 0x22, 0x1e, 0x0a, 0x0a, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x71, 0x75,
  2200. 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  2201. 0x52, 0x03, 0x6b, 0x65, 0x79, 0x22, 0x8e, 0x01, 0x0a, 0x10, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
  2202. 0x50, 0x61, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f,
  2203. 0x6e, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79,
  2204. 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
  2205. 0x74, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x18, 0x03,
  2206. 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b,
  2207. 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28,
  2208. 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16,
  2209. 0x0a, 0x06, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
  2210. 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x22, 0x55, 0x0a, 0x07, 0x50, 0x61, 0x79, 0x49, 0x6e, 0x66,
  2211. 0x6f, 0x12, 0x30, 0x0a, 0x07, 0x70, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01,
  2212. 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2213. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x07, 0x70, 0x61, 0x79, 0x49,
  2214. 0x6e, 0x66, 0x6f, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02,
  2215. 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x64, 0x22, 0x9c, 0x02,
  2216. 0x0a, 0x0c, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16,
  2217. 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
  2218. 0x75, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49,
  2219. 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44,
  2220. 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52,
  2221. 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x04,
  2222. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x54, 0x72,
  2223. 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x05, 0x20, 0x01, 0x28,
  2224. 0x09, 0x52, 0x0d, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x44,
  2225. 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09,
  2226. 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63,
  2227. 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64,
  2228. 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74,
  2229. 0x61, 0x74, 0x75, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74,
  2230. 0x75, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x61, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0a, 0x20,
  2231. 0x01, 0x28, 0x03, 0x52, 0x07, 0x70, 0x61, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a,
  2232. 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03,
  2233. 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x52, 0x0a, 0x0c,
  2234. 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2a, 0x0a, 0x04,
  2235. 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69,
  2236. 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e,
  2237. 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74,
  2238. 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64,
  2239. 0x22, 0x61, 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72,
  2240. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e,
  2241. 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78,
  2242. 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20,
  2243. 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73,
  2244. 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61,
  2245. 0x74, 0x75, 0x73, 0x22, 0x2a, 0x0a, 0x10, 0x50, 0x61, 0x79, 0x43, 0x61, 0x6c, 0x6c, 0x62, 0x61,
  2246. 0x63, 0x6b, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c,
  2247. 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x32,
  2248. 0xa3, 0x55, 0x0a, 0x04, 0x55, 0x73, 0x65, 0x72, 0x12, 0x54, 0x0a, 0x0b, 0x47, 0x65, 0x74, 0x55,
  2249. 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  2250. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a,
  2251. 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49,
  2252. 0x6e, 0x66, 0x6f, 0x22, 0x19, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70,
  2253. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x69,
  2254. 0x0a, 0x0d, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12,
  2255. 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x6e,
  2256. 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2257. 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2258. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  2259. 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x64,
  2260. 0x65, 0x2f, 0x73, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x6c, 0x0a, 0x0e, 0x43, 0x68, 0x65,
  2261. 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x21, 0x2e, 0x61, 0x70,
  2262. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68,
  2263. 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16,
  2264. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  2265. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14,
  2266. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x64, 0x65, 0x2f, 0x63,
  2267. 0x68, 0x65, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x7e, 0x0a, 0x15, 0x55, 0x70, 0x64, 0x61, 0x74,
  2268. 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  2269. 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x70,
  2270. 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52,
  2271. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  2272. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x27,
  2273. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  2274. 0x72, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61,
  2275. 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0x6e, 0x0a, 0x14, 0x43, 0x72, 0x65, 0x61, 0x74,
  2276. 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x6f, 0x6f, 0x6d, 0x12,
  2277. 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x72, 0x65,
  2278. 0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d,
  2279. 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x52, 0x6f, 0x6f, 0x6d,
  2280. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f,
  2281. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x2f,
  2282. 0x72, 0x6f, 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x5d, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73,
  2283. 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  2284. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  2285. 0x79, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65,
  2286. 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x22, 0x1c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16,
  2287. 0x22, 0x11, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x62, 0x61, 0x6c, 0x61,
  2288. 0x6e, 0x63, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x5b, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65,
  2289. 0x74, 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2290. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72,
  2291. 0x61, 0x6d, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2292. 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x19, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13,
  2293. 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x68, 0x6f, 0x6d, 0x65,
  2294. 0x3a, 0x01, 0x2a, 0x12, 0x6f, 0x0a, 0x1b, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x50, 0x65,
  2295. 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x41, 0x6e, 0x64, 0x4c, 0x6f, 0x6f, 0x6b,
  2296. 0x65, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2297. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x1d, 0x2e, 0x61, 0x70,
  2298. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x65, 0x64, 0x41,
  2299. 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x22, 0x18, 0x82, 0xd3, 0xe4, 0x93,
  2300. 0x02, 0x12, 0x22, 0x0d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6e, 0x75,
  2301. 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x0c, 0x46, 0x69, 0x6e, 0x64, 0x4c, 0x6f, 0x6f, 0x6b,
  2302. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2303. 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2304. 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69,
  2305. 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69,
  2306. 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22,
  2307. 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f,
  2308. 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x5c, 0x0a, 0x06, 0x57, 0x78, 0x43, 0x6f, 0x6e,
  2309. 0x66, 0x12, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x57,
  2310. 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x71, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2311. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x73, 0x70,
  2312. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61,
  2313. 0x70, 0x69, 0x2f, 0x77, 0x78, 0x2f, 0x6a, 0x73, 0x73, 0x64, 0x6b, 0x2f, 0x63, 0x6f, 0x6e, 0x66,
  2314. 0x69, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x5f, 0x0a, 0x10, 0x46, 0x69, 0x6e, 0x64, 0x54, 0x61, 0x67,
  2315. 0x4c, 0x69, 0x73, 0x74, 0x42, 0x79, 0x53, 0x65, 0x78, 0x12, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2316. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x78, 0x52, 0x65, 0x71, 0x1a, 0x18, 0x2e,
  2317. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x67, 0x4c, 0x69,
  2318. 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22,
  2319. 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f,
  2320. 0x74, 0x61, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x76, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x6e,
  2321. 0x6c, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2322. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x32, 0x52,
  2323. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  2324. 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72,
  2325. 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3,
  2326. 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  2327. 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x81,
  2328. 0x01, 0x0a, 0x1a, 0x46, 0x69, 0x6e, 0x64, 0x57, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x53, 0x65, 0x76,
  2329. 0x65, 0x6e, 0x44, 0x61, 0x79, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e,
  2330. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50,
  2331. 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69,
  2332. 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68,
  2333. 0x61, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4,
  2334. 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c,
  2335. 0x69, 0x73, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x77, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x3a,
  2336. 0x01, 0x2a, 0x12, 0x7d, 0x0a, 0x18, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x65,
  2337. 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b,
  2338. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74,
  2339. 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70,
  2340. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43,
  2341. 0x68, 0x61, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x23, 0x82, 0xd3,
  2342. 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  2343. 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x6f, 0x76, 0x65, 0x72, 0x3a, 0x01,
  2344. 0x2a, 0x12, 0x7e, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63,
  2345. 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  2346. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63,
  2347. 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f,
  2348. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74,
  2349. 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  2350. 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  2351. 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x3a, 0x01,
  2352. 0x2a, 0x12, 0x72, 0x0a, 0x0f, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f,
  2353. 0x6d, 0x4d, 0x73, 0x67, 0x12, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2354. 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73,
  2355. 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2356. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73,
  2357. 0x67, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  2358. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x2f, 0x6d,
  2359. 0x73, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x59, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72,
  2360. 0x49, 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  2361. 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a,
  2362. 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x4c,
  2363. 0x69, 0x6b, 0x65, 0x22, 0x1b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x22, 0x10, 0x2f, 0x61, 0x70,
  2364. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x73, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a,
  2365. 0x12, 0x64, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x65, 0x6d, 0x65, 0x42, 0x79, 0x54, 0x79,
  2366. 0x70, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2367. 0x4d, 0x65, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x61, 0x70,
  2368. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x4c, 0x69, 0x73,
  2369. 0x74, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  2370. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f, 0x74,
  2371. 0x79, 0x70, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68,
  2372. 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  2373. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70,
  2374. 0x69, 0x63, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2375. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63,
  2376. 0x4c, 0x69, 0x73, 0x74, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61,
  2377. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x74, 0x6f, 0x70,
  2378. 0x69, 0x63, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x0a, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4d,
  2379. 0x65, 0x6d, 0x65, 0x12, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2380. 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x75, 0x6d, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69,
  2381. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x54, 0x65,
  2382. 0x78, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a,
  2383. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6d,
  2384. 0x65, 0x6d, 0x65, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x75, 0x0a,
  2385. 0x12, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x53, 0x77, 0x69, 0x66, 0x74, 0x4d, 0x65, 0x73, 0x73,
  2386. 0x61, 0x67, 0x65, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2387. 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x75, 0x6d, 0x41, 0x6e, 0x64, 0x53, 0x65, 0x78,
  2388. 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f,
  2389. 0x6d, 0x6d, 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x26, 0x82, 0xd3,
  2390. 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  2391. 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f,
  2392. 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x68, 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x65, 0x6d, 0x65,
  2393. 0x54, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  2394. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x19, 0x2e,
  2395. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x54,
  2396. 0x69, 0x74, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e,
  2397. 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64,
  2398. 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x64,
  2399. 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x43, 0x68, 0x61, 0x74, 0x43, 0x61, 0x72,
  2400. 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50,
  2401. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69,
  2402. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x43, 0x61, 0x72, 0x64,
  2403. 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61,
  2404. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x63, 0x61, 0x72,
  2405. 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74,
  2406. 0x54, 0x6f, 0x70, 0x69, 0x63, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  2407. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  2408. 0x74, 0x79, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2409. 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x24, 0x82,
  2410. 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  2411. 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x74, 0x69, 0x74, 0x6c, 0x65,
  2412. 0x3a, 0x01, 0x2a, 0x12, 0x56, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x6b, 0x65, 0x12,
  2413. 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72,
  2414. 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  2415. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  2416. 0x22, 0x19, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  2417. 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x5a, 0x0a, 0x0a, 0x55,
  2418. 0x73, 0x65, 0x72, 0x55, 0x6e, 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2419. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72,
  2420. 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2421. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1b, 0x82, 0xd3, 0xe4, 0x93,
  2422. 0x02, 0x15, 0x22, 0x10, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x6e,
  2423. 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x5c, 0x0a, 0x06, 0x52, 0x65, 0x70, 0x6f, 0x72,
  2424. 0x74, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52,
  2425. 0x65, 0x70, 0x6f, 0x72, 0x74, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2426. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  2427. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15,
  2428. 0x22, 0x10, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x70, 0x6f,
  2429. 0x72, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x80, 0x01, 0x0a, 0x16, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x76,
  2430. 0x65, 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72,
  2431. 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  2432. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2433. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x65,
  2434. 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x52, 0x65, 0x70, 0x6c,
  2435. 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  2436. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6f, 0x76, 0x65, 0x72, 0x2f, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72,
  2437. 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x79, 0x0a, 0x11, 0x55, 0x70, 0x64, 0x61,
  2438. 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x12, 0x24, 0x2e,
  2439. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74,
  2440. 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75,
  2441. 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  2442. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x26, 0x82, 0xd3, 0xe4,
  2443. 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73,
  2444. 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x61, 0x73, 0x74, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
  2445. 0x3a, 0x01, 0x2a, 0x12, 0x63, 0x0a, 0x0b, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72,
  2446. 0x69, 0x70, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x43, 0x72,
  2447. 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2448. 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63,
  2449. 0x72, 0x69, 0x70, 0x49, 0x44, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f,
  2450. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x63,
  2451. 0x72, 0x65, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x0b, 0x44, 0x65, 0x6c, 0x65,
  2452. 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
  2453. 0x65, 0x72, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65,
  2454. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  2455. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x21, 0x82,
  2456. 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  2457. 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x3a, 0x01, 0x2a,
  2458. 0x12, 0x6b, 0x0a, 0x0b, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12,
  2459. 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46,
  2460. 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  2461. 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72,
  2462. 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22,
  2463. 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70,
  2464. 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x73, 0x65, 0x6c, 0x66, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a,
  2465. 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12,
  2466. 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e,
  2467. 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e,
  2468. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70,
  2469. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f,
  2470. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x66,
  2471. 0x69, 0x6e, 0x64, 0x2f, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x77, 0x0a, 0x12,
  2472. 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x53, 0x63, 0x72,
  2473. 0x69, 0x70, 0x12, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73,
  2474. 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65,
  2475. 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2476. 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93,
  2477. 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63,
  2478. 0x72, 0x69, 0x70, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65,
  2479. 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x6c, 0x0a, 0x0f, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c,
  2480. 0x6f, 0x6f, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75,
  2481. 0x73, 0x65, 0x72, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x6f, 0x6f, 0x6b, 0x53, 0x63,
  2482. 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  2483. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  2484. 0x74, 0x79, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69,
  2485. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b,
  2486. 0x3a, 0x01, 0x2a, 0x12, 0x6a, 0x0a, 0x13, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x43, 0x6c, 0x69,
  2487. 0x63, 0x6b, 0x4c, 0x6f, 0x6f, 0x6b, 0x42, 0x61, 0x63, 0x6b, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  2488. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  2489. 0x74, 0x79, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2490. 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  2491. 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72,
  2492. 0x69, 0x70, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x2f, 0x62, 0x61, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12,
  2493. 0x6d, 0x0a, 0x10, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63,
  2494. 0x72, 0x69, 0x70, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x52,
  2495. 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2496. 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68,
  2497. 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x20, 0x82, 0xd3,
  2498. 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  2499. 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x3a, 0x01, 0x2a, 0x12, 0x65,
  2500. 0x0a, 0x0e, 0x55, 0x73, 0x65, 0x72, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74,
  2501. 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f,
  2502. 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  2503. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  2504. 0x70, 0x74, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70,
  2505. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x64, 0x65, 0x6c, 0x65,
  2506. 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72,
  2507. 0x41, 0x6c, 0x6c, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67,
  2508. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  2509. 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e,
  2510. 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x24,
  2511. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  2512. 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x2f, 0x6e, 0x75,
  2513. 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x52,
  2514. 0x6f, 0x6f, 0x6d, 0x42, 0x79, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x17, 0x2e, 0x61, 0x70,
  2515. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50,
  2516. 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e,
  2517. 0x55, 0x73, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1e, 0x82, 0xd3,
  2518. 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  2519. 0x72, 0x6f, 0x6f, 0x6d, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x0c,
  2520. 0x46, 0x69, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61,
  2521. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61,
  2522. 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2523. 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41,
  2524. 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  2525. 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  2526. 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12,
  2527. 0x73, 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x4c, 0x69, 0x73, 0x74,
  2528. 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69,
  2529. 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e,
  2530. 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c,
  2531. 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  2532. 0x70, 0x6c, 0x79, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70,
  2533. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6c, 0x69, 0x6b, 0x65,
  2534. 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x65, 0x0a, 0x10, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x74, 0x42,
  2535. 0x6c, 0x61, 0x63, 0x6b, 0x43, 0x68, 0x61, 0x74, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2536. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75,
  2537. 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  2538. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4,
  2539. 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73,
  2540. 0x65, 0x74, 0x2f, 0x62, 0x6c, 0x61, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x94, 0x01, 0x0a, 0x1e,
  2541. 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  2542. 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x12, 0x1a,
  2543. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x74,
  2544. 0x6e, 0x65, 0x72, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x2d, 0x2e, 0x61, 0x70, 0x69,
  2545. 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x50,
  2546. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  2547. 0x73, 0x68, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  2548. 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x65,
  2549. 0x63, 0x6b, 0x2f, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x3a,
  2550. 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  2551. 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x2e, 0x61, 0x70, 0x69,
  2552. 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2553. 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64,
  2554. 0x64, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x49, 0x6e,
  2555. 0x66, 0x6f, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69,
  2556. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x2f, 0x69, 0x6e, 0x66,
  2557. 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x86, 0x01, 0x0a, 0x1f, 0x47, 0x65, 0x74, 0x4c, 0x6f, 0x6f, 0x6b,
  2558. 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63,
  2559. 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  2560. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  2561. 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63,
  2562. 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4d, 0x65, 0x73,
  2563. 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  2564. 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6e, 0x75, 0x6d,
  2565. 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x5f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x69, 0x0a,
  2566. 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x6f, 0x6b, 0x4e, 0x75, 0x6d, 0x12,
  2567. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  2568. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74,
  2569. 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x4d, 0x65, 0x73,
  2570. 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  2571. 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x6f, 0x6f,
  2572. 0x6b, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x15, 0x55, 0x73, 0x65, 0x72,
  2573. 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f,
  2574. 0x6e, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2575. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  2576. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  2577. 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  2578. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  2579. 0x2f, 0x66, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x3a, 0x01, 0x2a, 0x12, 0x75, 0x0a, 0x15, 0x55, 0x73,
  2580. 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61,
  2581. 0x74, 0x75, 0x73, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  2582. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x1b, 0x2e, 0x61, 0x70,
  2583. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69,
  2584. 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21,
  2585. 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f,
  2586. 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x3a, 0x01,
  2587. 0x2a, 0x12, 0x71, 0x0a, 0x17, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f,
  2588. 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x77, 0x61, 0x72, 0x64, 0x12, 0x16, 0x2e, 0x67,
  2589. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  2590. 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  2591. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x26, 0x82, 0xd3,
  2592. 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  2593. 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x61, 0x77, 0x61, 0x72,
  2594. 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x65, 0x0a, 0x10, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x4c, 0x6f,
  2595. 0x6f, 0x6b, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2596. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61,
  2597. 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2598. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  2599. 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x6f, 0x6f,
  2600. 0x6b, 0x2f, 0x75, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x5f, 0x0a, 0x0c, 0x55,
  2601. 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x12, 0x1d, 0x2e, 0x61, 0x70,
  2602. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68, 0x61,
  2603. 0x72, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x11, 0x2e, 0x61, 0x70, 0x69,
  2604. 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1d, 0x82,
  2605. 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  2606. 0x2f, 0x72, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x10,
  2607. 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74,
  2608. 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  2609. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75,
  2610. 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74,
  2611. 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  2612. 0x73, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x2f, 0x6c, 0x69, 0x73,
  2613. 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x67, 0x0a, 0x0b, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x61, 0x79, 0x4c,
  2614. 0x69, 0x73, 0x74, 0x12, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x46,
  2615. 0x69, 0x6e, 0x64, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52,
  2616. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65,
  2617. 0x72, 0x2e, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x1d,
  2618. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  2619. 0x72, 0x2f, 0x70, 0x61, 0x79, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x7c, 0x0a,
  2620. 0x17, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65,
  2621. 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  2622. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  2623. 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65,
  2624. 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73,
  2625. 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18,
  2626. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x72,
  2627. 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x82, 0x01, 0x0a, 0x18,
  2628. 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x41, 0x76, 0x61, 0x74,
  2629. 0x61, 0x72, 0x41, 0x6e, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  2630. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  2631. 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64,
  2632. 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x41, 0x6e,
  2633. 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  2634. 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6d, 0x61, 0x74,
  2635. 0x63, 0x68, 0x69, 0x6e, 0x67, 0x2f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x3a, 0x01, 0x2a,
  2636. 0x12, 0x63, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x49, 0x6e, 0x66,
  2637. 0x6f, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2638. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2639. 0x63, 0x68, 0x61, 0x74, 0x2e, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x49, 0x6e, 0x66, 0x6f, 0x22,
  2640. 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  2641. 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x2f, 0x67,
  2642. 0x65, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x5e, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72,
  2643. 0x46, 0x72, 0x65, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  2644. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a,
  2645. 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46,
  2646. 0x72, 0x65, 0x65, 0x4e, 0x75, 0x6d, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12,
  2647. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x72, 0x65, 0x65, 0x2f, 0x6e,
  2648. 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x6f, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x52, 0x61, 0x6e, 0x64,
  2649. 0x6f, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x12, 0x12, 0x2e, 0x61, 0x70, 0x69,
  2650. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x78, 0x52, 0x65, 0x71, 0x1a, 0x20,
  2651. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x61, 0x6e,
  2652. 0x64, 0x6f, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x70, 0x6c, 0x79,
  2653. 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  2654. 0x73, 0x65, 0x72, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x2f, 0x6d, 0x61, 0x74, 0x63, 0x68,
  2655. 0x69, 0x6e, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x63, 0x0a, 0x0b, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b,
  2656. 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  2657. 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2658. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  2659. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b,
  2660. 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x6e, 0x6c, 0x6f,
  2661. 0x63, 0x6b, 0x2f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x67, 0x0a, 0x0d, 0x55,
  2662. 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x12, 0x19, 0x2e, 0x61,
  2663. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44,
  2664. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  2665. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
  2666. 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  2667. 0x65, 0x72, 0x2f, 0x75, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x2f, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72,
  2668. 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6c, 0x0a, 0x14, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73,
  2669. 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x12, 0x16, 0x2e, 0x67,
  2670. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  2671. 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  2672. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x24, 0x82, 0xd3,
  2673. 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  2674. 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x2f, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x3a,
  2675. 0x01, 0x2a, 0x12, 0x77, 0x0a, 0x15, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72,
  2676. 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x12, 0x1f, 0x2e, 0x61, 0x70,
  2677. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43,
  2678. 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x13, 0x2e, 0x61,
  2679. 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x70, 0x6c,
  2680. 0x79, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  2681. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x2f, 0x72, 0x6f, 0x6f, 0x6d,
  2682. 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x6c, 0x0a, 0x0b, 0x53,
  2683. 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69,
  2684. 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2685. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2686. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2687. 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16,
  2688. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2689. 0x65, 0x2f, 0x73, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x8a, 0x01, 0x0a, 0x13, 0x4d, 0x61,
  2690. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73,
  2691. 0x74, 0x12, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d,
  2692. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  2693. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x61, 0x70,
  2694. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  2695. 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  2696. 0x70, 0x6c, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70,
  2697. 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c,
  2698. 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0xa1, 0x01, 0x0a, 0x1e, 0x4d, 0x61, 0x6e, 0x61, 0x67,
  2699. 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f,
  2700. 0x6e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2701. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69,
  2702. 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75,
  2703. 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2704. 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73,
  2705. 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x2d, 0x82, 0xd3, 0xe4,
  2706. 0x93, 0x02, 0x27, 0x22, 0x22, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  2707. 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x69, 0x6e, 0x66, 0x6f,
  2708. 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0xb2, 0x01, 0x0a, 0x21, 0x4d,
  2709. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x49, 0x73, 0x43, 0x68, 0x65, 0x63,
  2710. 0x6b, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74,
  2711. 0x12, 0x32, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4d, 0x61, 0x6e, 0x61,
  2712. 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x49, 0x73, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x51, 0x75,
  2713. 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71,
  2714. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2715. 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72,
  2716. 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x32, 0x22, 0x30, 0x82,
  2717. 0xd3, 0xe4, 0x93, 0x02, 0x2a, 0x22, 0x25, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61,
  2718. 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x69, 0x73,
  2719. 0x63, 0x68, 0x65, 0x63, 0x6b, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x3a, 0x01, 0x2a, 0x12,
  2720. 0x9d, 0x01, 0x0a, 0x1e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x48,
  2721. 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69,
  2722. 0x73, 0x74, 0x12, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2723. 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f,
  2724. 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x61,
  2725. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  2726. 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52,
  2727. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61,
  2728. 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x71, 0x75, 0x61, 0x6c, 0x69,
  2729. 0x74, 0x79, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12,
  2730. 0x8b, 0x01, 0x0a, 0x1a, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4d, 0x61, 0x72, 0x6b, 0x48,
  2731. 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x12, 0x2b,
  2732. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  2733. 0x72, 0x4d, 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79,
  2734. 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  2735. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  2736. 0x70, 0x74, 0x79, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70,
  2737. 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74,
  2738. 0x79, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x65, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x80, 0x01,
  2739. 0x0a, 0x1d, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4d, 0x61, 0x72, 0x6b, 0x48, 0x69, 0x67,
  2740. 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x4f, 0x6e, 0x65, 0x12,
  2741. 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72,
  2742. 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  2743. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  2744. 0x74, 0x79, 0x22, 0x2c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x26, 0x22, 0x21, 0x2f, 0x61, 0x70, 0x69,
  2745. 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79,
  2746. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x65, 0x74, 0x2f, 0x6f, 0x6e, 0x65, 0x3a, 0x01, 0x2a,
  2747. 0x12, 0x70, 0x0a, 0x13, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x53, 0x65, 0x74, 0x55, 0x73,
  2748. 0x65, 0x72, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x12, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  2749. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x4c, 0x69, 0x73,
  2750. 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2751. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  2752. 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f,
  2753. 0x62, 0x6c, 0x61, 0x63, 0x6b, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6d, 0x6f, 0x72, 0x65, 0x3a,
  2754. 0x01, 0x2a, 0x12, 0x7e, 0x0a, 0x1c, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x44, 0x65, 0x6c,
  2755. 0x65, 0x74, 0x65, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55, 0x73,
  2756. 0x65, 0x72, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2757. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e,
  2758. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  2759. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x25, 0x22, 0x20, 0x2f,
  2760. 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x71, 0x75, 0x61, 0x6c,
  2761. 0x69, 0x74, 0x79, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x3a,
  2762. 0x01, 0x2a, 0x12, 0x88, 0x01, 0x0a, 0x16, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70,
  2763. 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x2b, 0x2e,
  2764. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67,
  2765. 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x56, 0x6f,
  2766. 0x69, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  2767. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  2768. 0x74, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69,
  2769. 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x56, 0x6f,
  2770. 0x69, 0x63, 0x65, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x91, 0x01,
  2771. 0x0a, 0x19, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55,
  2772. 0x73, 0x65, 0x72, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x12, 0x2e, 0x2e, 0x61, 0x70,
  2773. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  2774. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x69, 0x63, 0x74,
  2775. 0x75, 0x72, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  2776. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  2777. 0x70, 0x74, 0x79, 0x22, 0x2c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x26, 0x22, 0x21, 0x2f, 0x61, 0x70,
  2778. 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x70,
  2779. 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01,
  2780. 0x2a, 0x12, 0x94, 0x01, 0x0a, 0x1a, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64,
  2781. 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65,
  2782. 0x12, 0x2f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61,
  2783. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f,
  2784. 0x6e, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2785. 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2786. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2d, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  2787. 0x27, 0x22, 0x22, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f,
  2788. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x2f, 0x75,
  2789. 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x8b, 0x01, 0x0a, 0x17, 0x4d, 0x61, 0x6e,
  2790. 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x41, 0x76,
  2791. 0x61, 0x74, 0x61, 0x72, 0x12, 0x2c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2792. 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50,
  2793. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65,
  2794. 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2795. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2a, 0x82, 0xd3, 0xe4, 0x93,
  2796. 0x02, 0x24, 0x22, 0x1f, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  2797. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x2f, 0x75, 0x70, 0x64,
  2798. 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x85, 0x01, 0x0a, 0x15, 0x4d, 0x61, 0x6e, 0x61, 0x67,
  2799. 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65,
  2800. 0x12, 0x2a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61,
  2801. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f,
  2802. 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67,
  2803. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  2804. 0x6d, 0x70, 0x74, 0x79, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61,
  2805. 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  2806. 0x6e, 0x61, 0x6d, 0x65, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x8b,
  2807. 0x01, 0x0a, 0x17, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  2808. 0x55, 0x73, 0x65, 0x72, 0x57, 0x65, 0x69, 0x67, 0x68, 0x74, 0x12, 0x2c, 0x2e, 0x61, 0x70, 0x69,
  2809. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55,
  2810. 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x57, 0x65, 0x69, 0x67, 0x68,
  2811. 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  2812. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  2813. 0x22, 0x2a, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x24, 0x22, 0x1f, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d,
  2814. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x77, 0x65, 0x69, 0x67,
  2815. 0x68, 0x74, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x8c, 0x01, 0x0a,
  2816. 0x18, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73,
  2817. 0x65, 0x72, 0x49, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x12, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2818. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70,
  2819. 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x73, 0x42, 0x6c, 0x61, 0x63,
  2820. 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  2821. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  2822. 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d,
  2823. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x62, 0x6c, 0x61, 0x63,
  2824. 0x6b, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x84, 0x01, 0x0a, 0x17,
  2825. 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65,
  2826. 0x72, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
  2827. 0x65, 0x72, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  2828. 0x55, 0x73, 0x65, 0x72, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2829. 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2830. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  2831. 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f,
  2832. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x2f, 0x61, 0x64, 0x64, 0x3a,
  2833. 0x01, 0x2a, 0x12, 0x40, 0x0a, 0x0c, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4d,
  2834. 0x73, 0x67, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2835. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x15, 0x2e,
  2836. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f,
  2837. 0x6e, 0x4d, 0x73, 0x67, 0x12, 0x45, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72,
  2838. 0x44, 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  2839. 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x4c, 0x69, 0x73, 0x74,
  2840. 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65,
  2841. 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x57, 0x0a, 0x13, 0x55,
  2842. 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44,
  2843. 0x44, 0x42, 0x12, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2844. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49,
  2845. 0x44, 0x44, 0x42, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  2846. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  2847. 0x74, 0x79, 0x22, 0x00, 0x12, 0x58, 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f,
  2848. 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12,
  2849. 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e,
  2850. 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2851. 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50,
  2852. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x4e,
  2853. 0x0a, 0x17, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x61, 0x73, 0x74,
  2854. 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2855. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50,
  2856. 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  2857. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x45,
  2858. 0x0a, 0x17, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67, 0x42, 0x79,
  2859. 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2860. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x15,
  2861. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73,
  2862. 0x6f, 0x6e, 0x4d, 0x73, 0x67, 0x12, 0x82, 0x01, 0x0a, 0x22, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65,
  2863. 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69,
  2864. 0x74, 0x79, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2d, 0x2e, 0x61,
  2865. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f,
  2866. 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79,
  2867. 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x61, 0x70,
  2868. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d,
  2869. 0x6d, 0x65, 0x6e, 0x64, 0x48, 0x69, 0x67, 0x68, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x55,
  2870. 0x73, 0x65, 0x72, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x60, 0x0a, 0x19, 0x47, 0x65,
  2871. 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67, 0x46, 0x72, 0x6f, 0x6d, 0x57, 0x65,
  2872. 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  2873. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72,
  2874. 0x61, 0x6d, 0x1a, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x47, 0x65,
  2875. 0x74, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67, 0x46, 0x72, 0x6f, 0x6d, 0x57, 0x65,
  2876. 0x62, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x46, 0x0a, 0x13,
  2877. 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65,
  2878. 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2879. 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67,
  2880. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  2881. 0x6d, 0x70, 0x74, 0x79, 0x12, 0x4c, 0x0a, 0x19, 0x4c, 0x6f, 0x6f, 0x6b, 0x42, 0x61, 0x63, 0x6b,
  2882. 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69,
  2883. 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50,
  2884. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  2885. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  2886. 0x74, 0x79, 0x12, 0x4a, 0x0a, 0x17, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69,
  2887. 0x70, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e,
  2888. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f,
  2889. 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  2890. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x49,
  2891. 0x0a, 0x16, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x64, 0x75,
  2892. 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2893. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61,
  2894. 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2895. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x41, 0x0a, 0x0e, 0x4d, 0x61, 0x74,
  2896. 0x63, 0x68, 0x69, 0x6e, 0x67, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70,
  2897. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50,
  2898. 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  2899. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x67, 0x0a, 0x1c,
  2900. 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x55, 0x6e,
  2901. 0x72, 0x65, 0x61, 0x64, 0x52, 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x2d, 0x2e, 0x61,
  2902. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77, 0x4d,
  2903. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x52, 0x65, 0x6d, 0x69,
  2904. 0x6e, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  2905. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  2906. 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x55, 0x0a, 0x1e, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77,
  2907. 0x56, 0x69, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x52,
  2908. 0x65, 0x6d, 0x69, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  2909. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72,
  2910. 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2911. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x84, 0x01, 0x0a,
  2912. 0x24, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68,
  2913. 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x41, 0x6e, 0x64, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x55, 0x73,
  2914. 0x65, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72,
  2915. 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68,
  2916. 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x61,
  2917. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73,
  2918. 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x41, 0x6e, 0x64, 0x52,
  2919. 0x65, 0x74, 0x75, 0x72, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x70, 0x6c,
  2920. 0x79, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d,
  2921. 0x65, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x12, 0x23, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2922. 0x75, 0x73, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e,
  2923. 0x64, 0x55, 0x73, 0x65, 0x72, 0x44, 0x42, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14,
  2924. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73,
  2925. 0x6f, 0x6e, 0x44, 0x42, 0x22, 0x00, 0x12, 0x4d, 0x0a, 0x0f, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74,
  2926. 0x55, 0x73, 0x65, 0x72, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2927. 0x75, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x55, 0x73, 0x65, 0x72, 0x42,
  2928. 0x6c, 0x61, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  2929. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  2930. 0x70, 0x74, 0x79, 0x22, 0x00, 0x42, 0x3d, 0x0a, 0x08, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65,
  2931. 0x72, 0x50, 0x01, 0x5a, 0x2f, 0x67, 0x69, 0x74, 0x2e, 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e,
  2932. 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2f, 0x70, 0x77, 0x2d, 0x70, 0x72,
  2933. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x3b,
  2934. 0x75, 0x73, 0x65, 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  2935. }
  2936. var (
  2937. file_user_proto_rawDescOnce sync.Once
  2938. file_user_proto_rawDescData = file_user_proto_rawDesc
  2939. )
  2940. func file_user_proto_rawDescGZIP() []byte {
  2941. file_user_proto_rawDescOnce.Do(func() {
  2942. file_user_proto_rawDescData = protoimpl.X.CompressGZIP(file_user_proto_rawDescData)
  2943. })
  2944. return file_user_proto_rawDescData
  2945. }
  2946. var file_user_proto_msgTypes = make([]protoimpl.MessageInfo, 35)
  2947. var file_user_proto_goTypes = []interface{}{
  2948. (*ReportUserBlackRequest)(nil), // 0: api.user.ReportUserBlackRequest
  2949. (*SendMessageRequest)(nil), // 1: api.user.SendMessageRequest
  2950. (*ManagerFindIsCheckQualityUserListRequest)(nil), // 2: api.user.ManagerFindIsCheckQualityUserListRequest
  2951. (*ManagerUpdateUserCreditRequest)(nil), // 3: api.user.ManagerUpdateUserCreditRequest
  2952. (*ManagerMarkHighQualityUserRequest)(nil), // 4: api.user.ManagerMarkHighQualityUserRequest
  2953. (*GetRecommendUserDBRequest)(nil), // 5: api.user.GetRecommendUserDBRequest
  2954. (*FindRecommendHighQualityUserRequest)(nil), // 6: api.user.FindRecommendHighQualityUserRequest
  2955. (*FindRecommendHighQualityUserReply)(nil), // 7: api.user.FindRecommendHighQualityUserReply
  2956. (*UpdateUserMatchedNumAndReturnUserMsgReply)(nil), // 8: api.user.UpdateUserMatchedNumAndReturnUserMsgReply
  2957. (*GetUserDBMsgFromWebsocketReply)(nil), // 9: api.user.GetUserDBMsgFromWebsocketReply
  2958. (*UpdateUserMatchedNumRequest)(nil), // 10: api.user.UpdateUserMatchedNumRequest
  2959. (*SendNewMessageUnreadReminderRequest)(nil), // 11: api.user.SendNewMessageUnreadReminderRequest
  2960. (*SendMsgReduceCreditReply)(nil), // 12: api.user.SendMsgReduceCreditReply
  2961. (*UserFreeNum)(nil), // 13: api.user.UserFreeNum
  2962. (*ReplyScripRequest)(nil), // 14: api.user.ReplyScripRequest
  2963. (*PersonLookScripRequest)(nil), // 15: api.user.PersonLookScripRequest
  2964. (*UserFindScripRequest)(nil), // 16: api.user.UserFindScripRequest
  2965. (*DeleteScripRequest)(nil), // 17: api.user.DeleteScripRequest
  2966. (*CreateScripRequest)(nil), // 18: api.user.CreateScripRequest
  2967. (*FindMatchingAvatarAndNumReply)(nil), // 19: api.user.FindMatchingAvatarAndNumReply
  2968. (*UserRechargeRequest)(nil), // 20: api.user.UserRechargeRequest
  2969. (*RechargeList)(nil), // 21: api.user.RechargeList
  2970. (*RechargeInfo)(nil), // 22: api.user.RechargeInfo
  2971. (*InformationStatus)(nil), // 23: api.user.InformationStatus
  2972. (*UserBalance)(nil), // 24: api.user.UserBalance
  2973. (*UserFindChatListReply)(nil), // 25: api.user.UserFindChatListReply
  2974. (*UserChatInfo)(nil), // 26: api.user.UserChatInfo
  2975. (*UserInfo)(nil), // 27: api.user.UserInfo
  2976. (*KeyRequest)(nil), // 28: api.user.KeyRequest
  2977. (*CreatePayRequest)(nil), // 29: api.user.CreatePayRequest
  2978. (*PayInfo)(nil), // 30: api.user.PayInfo
  2979. (*PayOrderInfo)(nil), // 31: api.user.PayOrderInfo
  2980. (*PayOrderList)(nil), // 32: api.user.PayOrderList
  2981. (*FindPayOrderListRequest)(nil), // 33: api.user.FindPayOrderListRequest
  2982. (*PayCallbackReply)(nil), // 34: api.user.PayCallbackReply
  2983. (*common.Message)(nil), // 35: api.common.Message
  2984. (*structpb.Value)(nil), // 36: google.protobuf.Value
  2985. (*emptypb.Empty)(nil), // 37: google.protobuf.Empty
  2986. (*common.SendPhoneCodeRequest)(nil), // 38: api.common.SendPhoneCodeRequest
  2987. (*common.CheckPhoneCodeRequest)(nil), // 39: api.common.CheckPhoneCodeRequest
  2988. (*common.UpdateInformationRequest)(nil), // 40: api.common.UpdateInformationRequest
  2989. (*common.CreateChatRoomParam)(nil), // 41: api.common.CreateChatRoomParam
  2990. (*common.PersonParam)(nil), // 42: api.common.PersonParam
  2991. (*common.ListPageRequest)(nil), // 43: api.common.ListPageRequest
  2992. (*common.WxConfReq)(nil), // 44: api.common.WxConfReq
  2993. (*common.SexReq)(nil), // 45: api.common.SexReq
  2994. (*common.ListPage2Request)(nil), // 46: api.common.ListPage2Request
  2995. (*common.FindChatRecordListRequest)(nil), // 47: api.common.FindChatRecordListRequest
  2996. (*common.FindChatRoomMsgRequest)(nil), // 48: api.common.FindChatRoomMsgRequest
  2997. (*common.MemeRequest)(nil), // 49: api.common.MemeRequest
  2998. (*common.FindChatTopicRequest)(nil), // 50: api.common.FindChatTopicRequest
  2999. (*common.RandomNum)(nil), // 51: api.common.RandomNum
  3000. (*common.RandomNumAndSex)(nil), // 52: api.common.RandomNumAndSex
  3001. (*common.ReportChatRequest)(nil), // 53: api.common.ReportChatRequest
  3002. (*common.UpdateLastScripIDRequest)(nil), // 54: api.common.UpdateLastScripIDRequest
  3003. (*common.FindScripRequest)(nil), // 55: api.common.FindScripRequest
  3004. (*common.RoomIDRequest)(nil), // 56: api.common.RoomIDRequest
  3005. (*common.PartnerIDParam)(nil), // 57: api.common.PartnerIDParam
  3006. (*common.ManagerFindPersonListRequest)(nil), // 58: api.common.ManagerFindPersonListRequest
  3007. (*common.PersonIDParam)(nil), // 59: api.common.PersonIDParam
  3008. (*common.PersonIDList)(nil), // 60: api.common.PersonIDList
  3009. (*common.ManagerUpdatePersonVoiceRequest)(nil), // 61: api.common.ManagerUpdatePersonVoiceRequest
  3010. (*common.ManagerUpdatePersonPicturesRequest)(nil), // 62: api.common.ManagerUpdatePersonPicturesRequest
  3011. (*common.ManagerUpdatePersonSignatureRequest)(nil), // 63: api.common.ManagerUpdatePersonSignatureRequest
  3012. (*common.ManagerUpdatePersonAvatarRequest)(nil), // 64: api.common.ManagerUpdatePersonAvatarRequest
  3013. (*common.ManagerUpdatePersonNameRequest)(nil), // 65: api.common.ManagerUpdatePersonNameRequest
  3014. (*common.ManagerUpdatePersonWeightRequest)(nil), // 66: api.common.ManagerUpdatePersonWeightRequest
  3015. (*common.ManagerUpdatePersonIsBlackRequest)(nil), // 67: api.common.ManagerUpdatePersonIsBlackRequest
  3016. (*common.UpdateLastScripIDDBRequest)(nil), // 68: api.common.UpdateLastScripIDDBRequest
  3017. (*common.FindRecommendRequest)(nil), // 69: api.common.FindRecommendRequest
  3018. (*common.IDParam)(nil), // 70: api.common.IDParam
  3019. (*chat.RoomReply)(nil), // 71: api.chat.RoomReply
  3020. (*common.HomeInfo)(nil), // 72: api.common.HomeInfo
  3021. (*common.LookedAndLikedNum)(nil), // 73: api.common.LookedAndLikedNum
  3022. (*statistics.LookAndLikeListReply)(nil), // 74: api.statistics.LookAndLikeListReply
  3023. (*common.WxConfResponse)(nil), // 75: api.common.WxConfResponse
  3024. (*common.TagListReply)(nil), // 76: api.common.TagListReply
  3025. (*common.RecommendPersonListReply)(nil), // 77: api.common.RecommendPersonListReply
  3026. (*common.ChatRecordListReply)(nil), // 78: api.common.ChatRecordListReply
  3027. (*common.ChatRoomMsg)(nil), // 79: api.common.ChatRoomMsg
  3028. (*common.IsLike)(nil), // 80: api.common.IsLike
  3029. (*common.MemeList)(nil), // 81: api.common.MemeList
  3030. (*common.ChatTopicList)(nil), // 82: api.common.ChatTopicList
  3031. (*common.CommonTextList)(nil), // 83: api.common.CommonTextList
  3032. (*common.MemeTitleList)(nil), // 84: api.common.MemeTitleList
  3033. (*common.ChatCardInfo)(nil), // 85: api.common.ChatCardInfo
  3034. (*common.FindOverSevenDayAvatarReply)(nil), // 86: api.common.FindOverSevenDayAvatarReply
  3035. (*common.ScripID)(nil), // 87: api.common.ScripID
  3036. (*common.ScripReply)(nil), // 88: api.common.ScripReply
  3037. (*common.ScripInfo)(nil), // 89: api.common.ScripInfo
  3038. (*common.ChatRecordInfo)(nil), // 90: api.common.ChatRecordInfo
  3039. (*chat.UnreadNumReply)(nil), // 91: api.chat.UnreadNumReply
  3040. (*chat.UserRoomInfo)(nil), // 92: api.chat.UserRoomInfo
  3041. (*chat.CheckUserPartnerIsRelationshipReply)(nil), // 93: api.chat.CheckUserPartnerIsRelationshipReply
  3042. (*common.AddFriendMessageInfo)(nil), // 94: api.common.AddFriendMessageInfo
  3043. (*statistics.LookAndLikeMessageReply)(nil), // 95: api.statistics.LookAndLikeMessageReply
  3044. (*statistics.LookMessageReply)(nil), // 96: api.statistics.LookMessageReply
  3045. (*chat.WindowInfo)(nil), // 97: api.chat.WindowInfo
  3046. (*chat.GetRandomMatchingReply)(nil), // 98: api.chat.GetRandomMatchingReply
  3047. (*common.SendMessageReply)(nil), // 99: api.common.SendMessageReply
  3048. (*common.ManagerFindPersonListReply)(nil), // 100: api.common.ManagerFindPersonListReply
  3049. (*common.ManagerFindPersonListReply2)(nil), // 101: api.common.ManagerFindPersonListReply2
  3050. (*common.PersonMsg)(nil), // 102: api.common.PersonMsg
  3051. (*common.PersonDBReply)(nil), // 103: api.common.PersonDBReply
  3052. (*common.PersonDB)(nil), // 104: api.common.PersonDB
  3053. }
  3054. var file_user_proto_depIdxs = []int32{
  3055. 35, // 0: api.user.SendMessageRequest.message:type_name -> api.common.Message
  3056. 35, // 1: api.user.ReplyScripRequest.message:type_name -> api.common.Message
  3057. 22, // 2: api.user.RechargeList.list:type_name -> api.user.RechargeInfo
  3058. 26, // 3: api.user.UserFindChatListReply.list:type_name -> api.user.UserChatInfo
  3059. 36, // 4: api.user.PayInfo.payInfo:type_name -> google.protobuf.Value
  3060. 31, // 5: api.user.PayOrderList.list:type_name -> api.user.PayOrderInfo
  3061. 37, // 6: api.user.User.GetUserInfo:input_type -> google.protobuf.Empty
  3062. 38, // 7: api.user.User.SendPhoneCode:input_type -> api.common.SendPhoneCodeRequest
  3063. 39, // 8: api.user.User.CheckPhoneCode:input_type -> api.common.CheckPhoneCodeRequest
  3064. 40, // 9: api.user.User.UpdateUserInformation:input_type -> api.common.UpdateInformationRequest
  3065. 41, // 10: api.user.User.CreateUserPersonRoom:input_type -> api.common.CreateChatRoomParam
  3066. 37, // 11: api.user.User.GetUserBalance:input_type -> google.protobuf.Empty
  3067. 42, // 12: api.user.User.UserGetHomeInfo:input_type -> api.common.PersonParam
  3068. 42, // 13: api.user.User.UserGetPersonLikedAndLooked:input_type -> api.common.PersonParam
  3069. 43, // 14: api.user.User.FindLookList:input_type -> api.common.ListPageRequest
  3070. 44, // 15: api.user.User.WxConf:input_type -> api.common.WxConfReq
  3071. 45, // 16: api.user.User.FindTagListBySex:input_type -> api.common.SexReq
  3072. 46, // 17: api.user.User.FindOnlineList:input_type -> api.common.ListPage2Request
  3073. 43, // 18: api.user.User.FindWithinSevenDayRoomList:input_type -> api.common.ListPageRequest
  3074. 43, // 19: api.user.User.FindOverSevenDayRoomList:input_type -> api.common.ListPageRequest
  3075. 47, // 20: api.user.User.FindChatRecordList:input_type -> api.common.FindChatRecordListRequest
  3076. 48, // 21: api.user.User.FindChatRoomMsg:input_type -> api.common.FindChatRoomMsgRequest
  3077. 42, // 22: api.user.User.GetUserIsLike:input_type -> api.common.PersonParam
  3078. 49, // 23: api.user.User.FindMemeByType:input_type -> api.common.MemeRequest
  3079. 50, // 24: api.user.User.FindChatTopic:input_type -> api.common.FindChatTopicRequest
  3080. 51, // 25: api.user.User.RandomMeme:input_type -> api.common.RandomNum
  3081. 52, // 26: api.user.User.RandomSwiftMessage:input_type -> api.common.RandomNumAndSex
  3082. 37, // 27: api.user.User.FindMemeTitle:input_type -> google.protobuf.Empty
  3083. 42, // 28: api.user.User.UserGetChatCard:input_type -> api.common.PersonParam
  3084. 37, // 29: api.user.User.FindChatTopicTitle:input_type -> google.protobuf.Empty
  3085. 42, // 30: api.user.User.UserLike:input_type -> api.common.PersonParam
  3086. 42, // 31: api.user.User.UserUnLike:input_type -> api.common.PersonParam
  3087. 53, // 32: api.user.User.Report:input_type -> api.common.ReportChatRequest
  3088. 37, // 33: api.user.User.FindOverSevenDayAvatar:input_type -> google.protobuf.Empty
  3089. 54, // 34: api.user.User.UpdateLastScripID:input_type -> api.common.UpdateLastScripIDRequest
  3090. 18, // 35: api.user.User.CreateScrip:input_type -> api.user.CreateScripRequest
  3091. 17, // 36: api.user.User.DeleteScrip:input_type -> api.user.DeleteScripRequest
  3092. 16, // 37: api.user.User.FindMyScrip:input_type -> api.user.UserFindScripRequest
  3093. 55, // 38: api.user.User.FindOtherScrip:input_type -> api.common.FindScripRequest
  3094. 16, // 39: api.user.User.FindRecommendScrip:input_type -> api.user.UserFindScripRequest
  3095. 15, // 40: api.user.User.PersonLookScrip:input_type -> api.user.PersonLookScripRequest
  3096. 37, // 41: api.user.User.PersonClickLookBack:input_type -> google.protobuf.Empty
  3097. 14, // 42: api.user.User.PersonReplyScrip:input_type -> api.user.ReplyScripRequest
  3098. 56, // 43: api.user.User.UserDeleteChat:input_type -> api.common.RoomIDRequest
  3099. 37, // 44: api.user.User.GetUserAllUnreadNum:input_type -> google.protobuf.Empty
  3100. 42, // 45: api.user.User.GetUserRoomByPerson:input_type -> api.common.PersonParam
  3101. 43, // 46: api.user.User.FindLikeList:input_type -> api.common.ListPageRequest
  3102. 43, // 47: api.user.User.FindLikedList:input_type -> api.common.ListPageRequest
  3103. 56, // 48: api.user.User.UserSetBlackChat:input_type -> api.common.RoomIDRequest
  3104. 57, // 49: api.user.User.CheckUserPartnerIsRelationship:input_type -> api.common.PartnerIDParam
  3105. 28, // 50: api.user.User.GetPartnerCircleInfo:input_type -> api.user.KeyRequest
  3106. 37, // 51: api.user.User.GetLookAndLikeStatisticsMessage:input_type -> google.protobuf.Empty
  3107. 37, // 52: api.user.User.GetUserLookNum:input_type -> google.protobuf.Empty
  3108. 37, // 53: api.user.User.UserFinishInformation:input_type -> google.protobuf.Empty
  3109. 37, // 54: api.user.User.UserInformationStatus:input_type -> google.protobuf.Empty
  3110. 37, // 55: api.user.User.UserGetInformationAward:input_type -> google.protobuf.Empty
  3111. 42, // 56: api.user.User.UnlockLookRecord:input_type -> api.common.PersonParam
  3112. 20, // 57: api.user.User.UserRecharge:input_type -> api.user.UserRechargeRequest
  3113. 37, // 58: api.user.User.FindRechargeList:input_type -> google.protobuf.Empty
  3114. 33, // 59: api.user.User.FindPayList:input_type -> api.user.FindPayOrderListRequest
  3115. 37, // 60: api.user.User.FindRecommendPersonList:input_type -> google.protobuf.Empty
  3116. 37, // 61: api.user.User.FindMatchingAvatarAndNum:input_type -> google.protobuf.Empty
  3117. 37, // 62: api.user.User.GetWindowInfo:input_type -> google.protobuf.Empty
  3118. 37, // 63: api.user.User.GetUserFreeNum:input_type -> google.protobuf.Empty
  3119. 45, // 64: api.user.User.GetRandomMatching:input_type -> api.common.SexReq
  3120. 56, // 65: api.user.User.UnlockVoice:input_type -> api.common.RoomIDRequest
  3121. 56, // 66: api.user.User.UnlockPicture:input_type -> api.common.RoomIDRequest
  3122. 37, // 67: api.user.User.UpdateUserIsRegister:input_type -> google.protobuf.Empty
  3123. 41, // 68: api.user.User.CreateUserPartnerRoom:input_type -> api.common.CreateChatRoomParam
  3124. 1, // 69: api.user.User.SendMessage:input_type -> api.user.SendMessageRequest
  3125. 58, // 70: api.user.User.ManagerFindUserList:input_type -> api.common.ManagerFindPersonListRequest
  3126. 58, // 71: api.user.User.ManagerFindInformationUserList:input_type -> api.common.ManagerFindPersonListRequest
  3127. 2, // 72: api.user.User.ManagerFindIsCheckQualityUserList:input_type -> api.user.ManagerFindIsCheckQualityUserListRequest
  3128. 58, // 73: api.user.User.ManagerFindHighQualityUserList:input_type -> api.common.ManagerFindPersonListRequest
  3129. 4, // 74: api.user.User.ManagerMarkHighQualityUser:input_type -> api.user.ManagerMarkHighQualityUserRequest
  3130. 59, // 75: api.user.User.ManagerMarkHighQualityUserOne:input_type -> api.common.PersonIDParam
  3131. 60, // 76: api.user.User.ManagerSetUserBlack:input_type -> api.common.PersonIDList
  3132. 59, // 77: api.user.User.ManagerDeleteHighQualityUser:input_type -> api.common.PersonIDParam
  3133. 61, // 78: api.user.User.ManagerUpdateUserVoice:input_type -> api.common.ManagerUpdatePersonVoiceRequest
  3134. 62, // 79: api.user.User.ManagerUpdateUserPictures:input_type -> api.common.ManagerUpdatePersonPicturesRequest
  3135. 63, // 80: api.user.User.ManagerUpdateUserSignature:input_type -> api.common.ManagerUpdatePersonSignatureRequest
  3136. 64, // 81: api.user.User.ManagerUpdateUserAvatar:input_type -> api.common.ManagerUpdatePersonAvatarRequest
  3137. 65, // 82: api.user.User.ManagerUpdateUserName:input_type -> api.common.ManagerUpdatePersonNameRequest
  3138. 66, // 83: api.user.User.ManagerUpdateUserWeight:input_type -> api.common.ManagerUpdatePersonWeightRequest
  3139. 67, // 84: api.user.User.ManagerUpdateUserIsBlack:input_type -> api.common.ManagerUpdatePersonIsBlackRequest
  3140. 3, // 85: api.user.User.ManagerUpdateUserCredit:input_type -> api.user.ManagerUpdateUserCreditRequest
  3141. 59, // 86: api.user.User.GetUserDBMsg:input_type -> api.common.PersonIDParam
  3142. 60, // 87: api.user.User.FindUserDBList:input_type -> api.common.PersonIDList
  3143. 68, // 88: api.user.User.UpdateLastScripIDDB:input_type -> api.common.UpdateLastScripIDDBRequest
  3144. 69, // 89: api.user.User.FindRecommendUserDBList:input_type -> api.common.FindRecommendRequest
  3145. 59, // 90: api.user.User.UpdateUserLastLoginTime:input_type -> api.common.PersonIDParam
  3146. 70, // 91: api.user.User.GetUserDBMsgByAccountID:input_type -> api.common.IDParam
  3147. 6, // 92: api.user.User.FindRecommendHighQualityUserDBList:input_type -> api.user.FindRecommendHighQualityUserRequest
  3148. 59, // 93: api.user.User.GetUserDBMsgFromWebsocket:input_type -> api.common.PersonIDParam
  3149. 42, // 94: api.user.User.SendMsgReduceCredit:input_type -> api.common.PersonParam
  3150. 42, // 95: api.user.User.LookBackScripReduceCredit:input_type -> api.common.PersonParam
  3151. 42, // 96: api.user.User.CreateScripReduceCredit:input_type -> api.common.PersonParam
  3152. 42, // 97: api.user.User.ReplyScripReduceCredit:input_type -> api.common.PersonParam
  3153. 42, // 98: api.user.User.MatchingCredit:input_type -> api.common.PersonParam
  3154. 11, // 99: api.user.User.SendNewMessageUnreadReminder:input_type -> api.user.SendNewMessageUnreadReminderRequest
  3155. 59, // 100: api.user.User.SendNewVisitorTemplateReminder:input_type -> api.common.PersonIDParam
  3156. 10, // 101: api.user.User.UpdateUserMatchedNumAndReturnUserMsg:input_type -> api.user.UpdateUserMatchedNumRequest
  3157. 5, // 102: api.user.User.GetRecommendUserDB:input_type -> api.user.GetRecommendUserDBRequest
  3158. 0, // 103: api.user.User.ReportUserBlack:input_type -> api.user.ReportUserBlackRequest
  3159. 27, // 104: api.user.User.GetUserInfo:output_type -> api.user.UserInfo
  3160. 37, // 105: api.user.User.SendPhoneCode:output_type -> google.protobuf.Empty
  3161. 37, // 106: api.user.User.CheckPhoneCode:output_type -> google.protobuf.Empty
  3162. 37, // 107: api.user.User.UpdateUserInformation:output_type -> google.protobuf.Empty
  3163. 71, // 108: api.user.User.CreateUserPersonRoom:output_type -> api.chat.RoomReply
  3164. 24, // 109: api.user.User.GetUserBalance:output_type -> api.user.UserBalance
  3165. 72, // 110: api.user.User.UserGetHomeInfo:output_type -> api.common.HomeInfo
  3166. 73, // 111: api.user.User.UserGetPersonLikedAndLooked:output_type -> api.common.LookedAndLikedNum
  3167. 74, // 112: api.user.User.FindLookList:output_type -> api.statistics.LookAndLikeListReply
  3168. 75, // 113: api.user.User.WxConf:output_type -> api.common.WxConfResponse
  3169. 76, // 114: api.user.User.FindTagListBySex:output_type -> api.common.TagListReply
  3170. 77, // 115: api.user.User.FindOnlineList:output_type -> api.common.RecommendPersonListReply
  3171. 25, // 116: api.user.User.FindWithinSevenDayRoomList:output_type -> api.user.UserFindChatListReply
  3172. 25, // 117: api.user.User.FindOverSevenDayRoomList:output_type -> api.user.UserFindChatListReply
  3173. 78, // 118: api.user.User.FindChatRecordList:output_type -> api.common.ChatRecordListReply
  3174. 79, // 119: api.user.User.FindChatRoomMsg:output_type -> api.common.ChatRoomMsg
  3175. 80, // 120: api.user.User.GetUserIsLike:output_type -> api.common.IsLike
  3176. 81, // 121: api.user.User.FindMemeByType:output_type -> api.common.MemeList
  3177. 82, // 122: api.user.User.FindChatTopic:output_type -> api.common.ChatTopicList
  3178. 83, // 123: api.user.User.RandomMeme:output_type -> api.common.CommonTextList
  3179. 83, // 124: api.user.User.RandomSwiftMessage:output_type -> api.common.CommonTextList
  3180. 84, // 125: api.user.User.FindMemeTitle:output_type -> api.common.MemeTitleList
  3181. 85, // 126: api.user.User.UserGetChatCard:output_type -> api.common.ChatCardInfo
  3182. 84, // 127: api.user.User.FindChatTopicTitle:output_type -> api.common.MemeTitleList
  3183. 37, // 128: api.user.User.UserLike:output_type -> google.protobuf.Empty
  3184. 37, // 129: api.user.User.UserUnLike:output_type -> google.protobuf.Empty
  3185. 37, // 130: api.user.User.Report:output_type -> google.protobuf.Empty
  3186. 86, // 131: api.user.User.FindOverSevenDayAvatar:output_type -> api.common.FindOverSevenDayAvatarReply
  3187. 37, // 132: api.user.User.UpdateLastScripID:output_type -> google.protobuf.Empty
  3188. 87, // 133: api.user.User.CreateScrip:output_type -> api.common.ScripID
  3189. 37, // 134: api.user.User.DeleteScrip:output_type -> google.protobuf.Empty
  3190. 88, // 135: api.user.User.FindMyScrip:output_type -> api.common.ScripReply
  3191. 88, // 136: api.user.User.FindOtherScrip:output_type -> api.common.ScripReply
  3192. 88, // 137: api.user.User.FindRecommendScrip:output_type -> api.common.ScripReply
  3193. 37, // 138: api.user.User.PersonLookScrip:output_type -> google.protobuf.Empty
  3194. 89, // 139: api.user.User.PersonClickLookBack:output_type -> api.common.ScripInfo
  3195. 90, // 140: api.user.User.PersonReplyScrip:output_type -> api.common.ChatRecordInfo
  3196. 37, // 141: api.user.User.UserDeleteChat:output_type -> google.protobuf.Empty
  3197. 91, // 142: api.user.User.GetUserAllUnreadNum:output_type -> api.chat.UnreadNumReply
  3198. 92, // 143: api.user.User.GetUserRoomByPerson:output_type -> api.chat.UserRoomInfo
  3199. 74, // 144: api.user.User.FindLikeList:output_type -> api.statistics.LookAndLikeListReply
  3200. 74, // 145: api.user.User.FindLikedList:output_type -> api.statistics.LookAndLikeListReply
  3201. 37, // 146: api.user.User.UserSetBlackChat:output_type -> google.protobuf.Empty
  3202. 93, // 147: api.user.User.CheckUserPartnerIsRelationship:output_type -> api.chat.CheckUserPartnerIsRelationshipReply
  3203. 94, // 148: api.user.User.GetPartnerCircleInfo:output_type -> api.common.AddFriendMessageInfo
  3204. 95, // 149: api.user.User.GetLookAndLikeStatisticsMessage:output_type -> api.statistics.LookAndLikeMessageReply
  3205. 96, // 150: api.user.User.GetUserLookNum:output_type -> api.statistics.LookMessageReply
  3206. 37, // 151: api.user.User.UserFinishInformation:output_type -> google.protobuf.Empty
  3207. 23, // 152: api.user.User.UserInformationStatus:output_type -> api.user.InformationStatus
  3208. 37, // 153: api.user.User.UserGetInformationAward:output_type -> google.protobuf.Empty
  3209. 37, // 154: api.user.User.UnlockLookRecord:output_type -> google.protobuf.Empty
  3210. 30, // 155: api.user.User.UserRecharge:output_type -> api.user.PayInfo
  3211. 21, // 156: api.user.User.FindRechargeList:output_type -> api.user.RechargeList
  3212. 32, // 157: api.user.User.FindPayList:output_type -> api.user.PayOrderList
  3213. 77, // 158: api.user.User.FindRecommendPersonList:output_type -> api.common.RecommendPersonListReply
  3214. 19, // 159: api.user.User.FindMatchingAvatarAndNum:output_type -> api.user.FindMatchingAvatarAndNumReply
  3215. 97, // 160: api.user.User.GetWindowInfo:output_type -> api.chat.WindowInfo
  3216. 13, // 161: api.user.User.GetUserFreeNum:output_type -> api.user.UserFreeNum
  3217. 98, // 162: api.user.User.GetRandomMatching:output_type -> api.chat.GetRandomMatchingReply
  3218. 37, // 163: api.user.User.UnlockVoice:output_type -> google.protobuf.Empty
  3219. 37, // 164: api.user.User.UnlockPicture:output_type -> google.protobuf.Empty
  3220. 37, // 165: api.user.User.UpdateUserIsRegister:output_type -> google.protobuf.Empty
  3221. 71, // 166: api.user.User.CreateUserPartnerRoom:output_type -> api.chat.RoomReply
  3222. 99, // 167: api.user.User.SendMessage:output_type -> api.common.SendMessageReply
  3223. 100, // 168: api.user.User.ManagerFindUserList:output_type -> api.common.ManagerFindPersonListReply
  3224. 100, // 169: api.user.User.ManagerFindInformationUserList:output_type -> api.common.ManagerFindPersonListReply
  3225. 101, // 170: api.user.User.ManagerFindIsCheckQualityUserList:output_type -> api.common.ManagerFindPersonListReply2
  3226. 100, // 171: api.user.User.ManagerFindHighQualityUserList:output_type -> api.common.ManagerFindPersonListReply
  3227. 37, // 172: api.user.User.ManagerMarkHighQualityUser:output_type -> google.protobuf.Empty
  3228. 37, // 173: api.user.User.ManagerMarkHighQualityUserOne:output_type -> google.protobuf.Empty
  3229. 37, // 174: api.user.User.ManagerSetUserBlack:output_type -> google.protobuf.Empty
  3230. 37, // 175: api.user.User.ManagerDeleteHighQualityUser:output_type -> google.protobuf.Empty
  3231. 37, // 176: api.user.User.ManagerUpdateUserVoice:output_type -> google.protobuf.Empty
  3232. 37, // 177: api.user.User.ManagerUpdateUserPictures:output_type -> google.protobuf.Empty
  3233. 37, // 178: api.user.User.ManagerUpdateUserSignature:output_type -> google.protobuf.Empty
  3234. 37, // 179: api.user.User.ManagerUpdateUserAvatar:output_type -> google.protobuf.Empty
  3235. 37, // 180: api.user.User.ManagerUpdateUserName:output_type -> google.protobuf.Empty
  3236. 37, // 181: api.user.User.ManagerUpdateUserWeight:output_type -> google.protobuf.Empty
  3237. 37, // 182: api.user.User.ManagerUpdateUserIsBlack:output_type -> google.protobuf.Empty
  3238. 37, // 183: api.user.User.ManagerUpdateUserCredit:output_type -> google.protobuf.Empty
  3239. 102, // 184: api.user.User.GetUserDBMsg:output_type -> api.common.PersonMsg
  3240. 103, // 185: api.user.User.FindUserDBList:output_type -> api.common.PersonDBReply
  3241. 37, // 186: api.user.User.UpdateLastScripIDDB:output_type -> google.protobuf.Empty
  3242. 103, // 187: api.user.User.FindRecommendUserDBList:output_type -> api.common.PersonDBReply
  3243. 37, // 188: api.user.User.UpdateUserLastLoginTime:output_type -> google.protobuf.Empty
  3244. 102, // 189: api.user.User.GetUserDBMsgByAccountID:output_type -> api.common.PersonMsg
  3245. 7, // 190: api.user.User.FindRecommendHighQualityUserDBList:output_type -> api.user.FindRecommendHighQualityUserReply
  3246. 9, // 191: api.user.User.GetUserDBMsgFromWebsocket:output_type -> api.user.GetUserDBMsgFromWebsocketReply
  3247. 37, // 192: api.user.User.SendMsgReduceCredit:output_type -> google.protobuf.Empty
  3248. 37, // 193: api.user.User.LookBackScripReduceCredit:output_type -> google.protobuf.Empty
  3249. 37, // 194: api.user.User.CreateScripReduceCredit:output_type -> google.protobuf.Empty
  3250. 37, // 195: api.user.User.ReplyScripReduceCredit:output_type -> google.protobuf.Empty
  3251. 37, // 196: api.user.User.MatchingCredit:output_type -> google.protobuf.Empty
  3252. 37, // 197: api.user.User.SendNewMessageUnreadReminder:output_type -> google.protobuf.Empty
  3253. 37, // 198: api.user.User.SendNewVisitorTemplateReminder:output_type -> google.protobuf.Empty
  3254. 8, // 199: api.user.User.UpdateUserMatchedNumAndReturnUserMsg:output_type -> api.user.UpdateUserMatchedNumAndReturnUserMsgReply
  3255. 104, // 200: api.user.User.GetRecommendUserDB:output_type -> api.common.PersonDB
  3256. 37, // 201: api.user.User.ReportUserBlack:output_type -> google.protobuf.Empty
  3257. 104, // [104:202] is the sub-list for method output_type
  3258. 6, // [6:104] is the sub-list for method input_type
  3259. 6, // [6:6] is the sub-list for extension type_name
  3260. 6, // [6:6] is the sub-list for extension extendee
  3261. 0, // [0:6] is the sub-list for field type_name
  3262. }
  3263. func init() { file_user_proto_init() }
  3264. func file_user_proto_init() {
  3265. if File_user_proto != nil {
  3266. return
  3267. }
  3268. if !protoimpl.UnsafeEnabled {
  3269. file_user_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  3270. switch v := v.(*ReportUserBlackRequest); i {
  3271. case 0:
  3272. return &v.state
  3273. case 1:
  3274. return &v.sizeCache
  3275. case 2:
  3276. return &v.unknownFields
  3277. default:
  3278. return nil
  3279. }
  3280. }
  3281. file_user_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  3282. switch v := v.(*SendMessageRequest); i {
  3283. case 0:
  3284. return &v.state
  3285. case 1:
  3286. return &v.sizeCache
  3287. case 2:
  3288. return &v.unknownFields
  3289. default:
  3290. return nil
  3291. }
  3292. }
  3293. file_user_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  3294. switch v := v.(*ManagerFindIsCheckQualityUserListRequest); i {
  3295. case 0:
  3296. return &v.state
  3297. case 1:
  3298. return &v.sizeCache
  3299. case 2:
  3300. return &v.unknownFields
  3301. default:
  3302. return nil
  3303. }
  3304. }
  3305. file_user_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  3306. switch v := v.(*ManagerUpdateUserCreditRequest); i {
  3307. case 0:
  3308. return &v.state
  3309. case 1:
  3310. return &v.sizeCache
  3311. case 2:
  3312. return &v.unknownFields
  3313. default:
  3314. return nil
  3315. }
  3316. }
  3317. file_user_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  3318. switch v := v.(*ManagerMarkHighQualityUserRequest); i {
  3319. case 0:
  3320. return &v.state
  3321. case 1:
  3322. return &v.sizeCache
  3323. case 2:
  3324. return &v.unknownFields
  3325. default:
  3326. return nil
  3327. }
  3328. }
  3329. file_user_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  3330. switch v := v.(*GetRecommendUserDBRequest); i {
  3331. case 0:
  3332. return &v.state
  3333. case 1:
  3334. return &v.sizeCache
  3335. case 2:
  3336. return &v.unknownFields
  3337. default:
  3338. return nil
  3339. }
  3340. }
  3341. file_user_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  3342. switch v := v.(*FindRecommendHighQualityUserRequest); i {
  3343. case 0:
  3344. return &v.state
  3345. case 1:
  3346. return &v.sizeCache
  3347. case 2:
  3348. return &v.unknownFields
  3349. default:
  3350. return nil
  3351. }
  3352. }
  3353. file_user_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  3354. switch v := v.(*FindRecommendHighQualityUserReply); i {
  3355. case 0:
  3356. return &v.state
  3357. case 1:
  3358. return &v.sizeCache
  3359. case 2:
  3360. return &v.unknownFields
  3361. default:
  3362. return nil
  3363. }
  3364. }
  3365. file_user_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  3366. switch v := v.(*UpdateUserMatchedNumAndReturnUserMsgReply); i {
  3367. case 0:
  3368. return &v.state
  3369. case 1:
  3370. return &v.sizeCache
  3371. case 2:
  3372. return &v.unknownFields
  3373. default:
  3374. return nil
  3375. }
  3376. }
  3377. file_user_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  3378. switch v := v.(*GetUserDBMsgFromWebsocketReply); i {
  3379. case 0:
  3380. return &v.state
  3381. case 1:
  3382. return &v.sizeCache
  3383. case 2:
  3384. return &v.unknownFields
  3385. default:
  3386. return nil
  3387. }
  3388. }
  3389. file_user_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  3390. switch v := v.(*UpdateUserMatchedNumRequest); i {
  3391. case 0:
  3392. return &v.state
  3393. case 1:
  3394. return &v.sizeCache
  3395. case 2:
  3396. return &v.unknownFields
  3397. default:
  3398. return nil
  3399. }
  3400. }
  3401. file_user_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  3402. switch v := v.(*SendNewMessageUnreadReminderRequest); i {
  3403. case 0:
  3404. return &v.state
  3405. case 1:
  3406. return &v.sizeCache
  3407. case 2:
  3408. return &v.unknownFields
  3409. default:
  3410. return nil
  3411. }
  3412. }
  3413. file_user_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  3414. switch v := v.(*SendMsgReduceCreditReply); i {
  3415. case 0:
  3416. return &v.state
  3417. case 1:
  3418. return &v.sizeCache
  3419. case 2:
  3420. return &v.unknownFields
  3421. default:
  3422. return nil
  3423. }
  3424. }
  3425. file_user_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  3426. switch v := v.(*UserFreeNum); i {
  3427. case 0:
  3428. return &v.state
  3429. case 1:
  3430. return &v.sizeCache
  3431. case 2:
  3432. return &v.unknownFields
  3433. default:
  3434. return nil
  3435. }
  3436. }
  3437. file_user_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  3438. switch v := v.(*ReplyScripRequest); i {
  3439. case 0:
  3440. return &v.state
  3441. case 1:
  3442. return &v.sizeCache
  3443. case 2:
  3444. return &v.unknownFields
  3445. default:
  3446. return nil
  3447. }
  3448. }
  3449. file_user_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  3450. switch v := v.(*PersonLookScripRequest); i {
  3451. case 0:
  3452. return &v.state
  3453. case 1:
  3454. return &v.sizeCache
  3455. case 2:
  3456. return &v.unknownFields
  3457. default:
  3458. return nil
  3459. }
  3460. }
  3461. file_user_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  3462. switch v := v.(*UserFindScripRequest); i {
  3463. case 0:
  3464. return &v.state
  3465. case 1:
  3466. return &v.sizeCache
  3467. case 2:
  3468. return &v.unknownFields
  3469. default:
  3470. return nil
  3471. }
  3472. }
  3473. file_user_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  3474. switch v := v.(*DeleteScripRequest); i {
  3475. case 0:
  3476. return &v.state
  3477. case 1:
  3478. return &v.sizeCache
  3479. case 2:
  3480. return &v.unknownFields
  3481. default:
  3482. return nil
  3483. }
  3484. }
  3485. file_user_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  3486. switch v := v.(*CreateScripRequest); i {
  3487. case 0:
  3488. return &v.state
  3489. case 1:
  3490. return &v.sizeCache
  3491. case 2:
  3492. return &v.unknownFields
  3493. default:
  3494. return nil
  3495. }
  3496. }
  3497. file_user_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  3498. switch v := v.(*FindMatchingAvatarAndNumReply); i {
  3499. case 0:
  3500. return &v.state
  3501. case 1:
  3502. return &v.sizeCache
  3503. case 2:
  3504. return &v.unknownFields
  3505. default:
  3506. return nil
  3507. }
  3508. }
  3509. file_user_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  3510. switch v := v.(*UserRechargeRequest); i {
  3511. case 0:
  3512. return &v.state
  3513. case 1:
  3514. return &v.sizeCache
  3515. case 2:
  3516. return &v.unknownFields
  3517. default:
  3518. return nil
  3519. }
  3520. }
  3521. file_user_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  3522. switch v := v.(*RechargeList); i {
  3523. case 0:
  3524. return &v.state
  3525. case 1:
  3526. return &v.sizeCache
  3527. case 2:
  3528. return &v.unknownFields
  3529. default:
  3530. return nil
  3531. }
  3532. }
  3533. file_user_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  3534. switch v := v.(*RechargeInfo); i {
  3535. case 0:
  3536. return &v.state
  3537. case 1:
  3538. return &v.sizeCache
  3539. case 2:
  3540. return &v.unknownFields
  3541. default:
  3542. return nil
  3543. }
  3544. }
  3545. file_user_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  3546. switch v := v.(*InformationStatus); i {
  3547. case 0:
  3548. return &v.state
  3549. case 1:
  3550. return &v.sizeCache
  3551. case 2:
  3552. return &v.unknownFields
  3553. default:
  3554. return nil
  3555. }
  3556. }
  3557. file_user_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  3558. switch v := v.(*UserBalance); i {
  3559. case 0:
  3560. return &v.state
  3561. case 1:
  3562. return &v.sizeCache
  3563. case 2:
  3564. return &v.unknownFields
  3565. default:
  3566. return nil
  3567. }
  3568. }
  3569. file_user_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  3570. switch v := v.(*UserFindChatListReply); i {
  3571. case 0:
  3572. return &v.state
  3573. case 1:
  3574. return &v.sizeCache
  3575. case 2:
  3576. return &v.unknownFields
  3577. default:
  3578. return nil
  3579. }
  3580. }
  3581. file_user_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  3582. switch v := v.(*UserChatInfo); i {
  3583. case 0:
  3584. return &v.state
  3585. case 1:
  3586. return &v.sizeCache
  3587. case 2:
  3588. return &v.unknownFields
  3589. default:
  3590. return nil
  3591. }
  3592. }
  3593. file_user_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  3594. switch v := v.(*UserInfo); i {
  3595. case 0:
  3596. return &v.state
  3597. case 1:
  3598. return &v.sizeCache
  3599. case 2:
  3600. return &v.unknownFields
  3601. default:
  3602. return nil
  3603. }
  3604. }
  3605. file_user_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  3606. switch v := v.(*KeyRequest); i {
  3607. case 0:
  3608. return &v.state
  3609. case 1:
  3610. return &v.sizeCache
  3611. case 2:
  3612. return &v.unknownFields
  3613. default:
  3614. return nil
  3615. }
  3616. }
  3617. file_user_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  3618. switch v := v.(*CreatePayRequest); i {
  3619. case 0:
  3620. return &v.state
  3621. case 1:
  3622. return &v.sizeCache
  3623. case 2:
  3624. return &v.unknownFields
  3625. default:
  3626. return nil
  3627. }
  3628. }
  3629. file_user_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  3630. switch v := v.(*PayInfo); i {
  3631. case 0:
  3632. return &v.state
  3633. case 1:
  3634. return &v.sizeCache
  3635. case 2:
  3636. return &v.unknownFields
  3637. default:
  3638. return nil
  3639. }
  3640. }
  3641. file_user_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  3642. switch v := v.(*PayOrderInfo); i {
  3643. case 0:
  3644. return &v.state
  3645. case 1:
  3646. return &v.sizeCache
  3647. case 2:
  3648. return &v.unknownFields
  3649. default:
  3650. return nil
  3651. }
  3652. }
  3653. file_user_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  3654. switch v := v.(*PayOrderList); i {
  3655. case 0:
  3656. return &v.state
  3657. case 1:
  3658. return &v.sizeCache
  3659. case 2:
  3660. return &v.unknownFields
  3661. default:
  3662. return nil
  3663. }
  3664. }
  3665. file_user_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  3666. switch v := v.(*FindPayOrderListRequest); i {
  3667. case 0:
  3668. return &v.state
  3669. case 1:
  3670. return &v.sizeCache
  3671. case 2:
  3672. return &v.unknownFields
  3673. default:
  3674. return nil
  3675. }
  3676. }
  3677. file_user_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  3678. switch v := v.(*PayCallbackReply); i {
  3679. case 0:
  3680. return &v.state
  3681. case 1:
  3682. return &v.sizeCache
  3683. case 2:
  3684. return &v.unknownFields
  3685. default:
  3686. return nil
  3687. }
  3688. }
  3689. }
  3690. type x struct{}
  3691. out := protoimpl.TypeBuilder{
  3692. File: protoimpl.DescBuilder{
  3693. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  3694. RawDescriptor: file_user_proto_rawDesc,
  3695. NumEnums: 0,
  3696. NumMessages: 35,
  3697. NumExtensions: 0,
  3698. NumServices: 1,
  3699. },
  3700. GoTypes: file_user_proto_goTypes,
  3701. DependencyIndexes: file_user_proto_depIdxs,
  3702. MessageInfos: file_user_proto_msgTypes,
  3703. }.Build()
  3704. File_user_proto = out.File
  3705. file_user_proto_rawDesc = nil
  3706. file_user_proto_goTypes = nil
  3707. file_user_proto_depIdxs = nil
  3708. }