user.pb.go 123 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736
  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 UserFreeNum struct {
  26. state protoimpl.MessageState
  27. sizeCache protoimpl.SizeCache
  28. unknownFields protoimpl.UnknownFields
  29. ReplyScripNum int64 `protobuf:"varint,1,opt,name=replyScripNum,proto3" json:"replyScripNum"` // 今日可免费回复纸条的次数
  30. CreateScripNum int64 `protobuf:"varint,2,opt,name=createScripNum,proto3" json:"createScripNum"` // 今日免费创建纸条的次数
  31. MatchingNum int64 `protobuf:"varint,3,opt,name=matchingNum,proto3" json:"matchingNum"` // 今日免费匹配数
  32. }
  33. func (x *UserFreeNum) Reset() {
  34. *x = UserFreeNum{}
  35. if protoimpl.UnsafeEnabled {
  36. mi := &file_user_proto_msgTypes[0]
  37. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  38. ms.StoreMessageInfo(mi)
  39. }
  40. }
  41. func (x *UserFreeNum) String() string {
  42. return protoimpl.X.MessageStringOf(x)
  43. }
  44. func (*UserFreeNum) ProtoMessage() {}
  45. func (x *UserFreeNum) ProtoReflect() protoreflect.Message {
  46. mi := &file_user_proto_msgTypes[0]
  47. if protoimpl.UnsafeEnabled && x != nil {
  48. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  49. if ms.LoadMessageInfo() == nil {
  50. ms.StoreMessageInfo(mi)
  51. }
  52. return ms
  53. }
  54. return mi.MessageOf(x)
  55. }
  56. // Deprecated: Use UserFreeNum.ProtoReflect.Descriptor instead.
  57. func (*UserFreeNum) Descriptor() ([]byte, []int) {
  58. return file_user_proto_rawDescGZIP(), []int{0}
  59. }
  60. func (x *UserFreeNum) GetReplyScripNum() int64 {
  61. if x != nil {
  62. return x.ReplyScripNum
  63. }
  64. return 0
  65. }
  66. func (x *UserFreeNum) GetCreateScripNum() int64 {
  67. if x != nil {
  68. return x.CreateScripNum
  69. }
  70. return 0
  71. }
  72. func (x *UserFreeNum) GetMatchingNum() int64 {
  73. if x != nil {
  74. return x.MatchingNum
  75. }
  76. return 0
  77. }
  78. type ReplyScripRequest struct {
  79. state protoimpl.MessageState
  80. sizeCache protoimpl.SizeCache
  81. unknownFields protoimpl.UnknownFields
  82. ScripId int64 `protobuf:"varint,4,opt,name=scripId,proto3" json:"scripId"` // 小纸条ID
  83. Message *common.Message `protobuf:"bytes,5,opt,name=message,proto3" json:"message"` // 回复内容 只需要提供 回复小纸条的内容 或 回复小纸条的素材链接
  84. MsgType string `protobuf:"bytes,6,opt,name=msgType,proto3" json:"msgType"`
  85. }
  86. func (x *ReplyScripRequest) Reset() {
  87. *x = ReplyScripRequest{}
  88. if protoimpl.UnsafeEnabled {
  89. mi := &file_user_proto_msgTypes[1]
  90. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  91. ms.StoreMessageInfo(mi)
  92. }
  93. }
  94. func (x *ReplyScripRequest) String() string {
  95. return protoimpl.X.MessageStringOf(x)
  96. }
  97. func (*ReplyScripRequest) ProtoMessage() {}
  98. func (x *ReplyScripRequest) ProtoReflect() protoreflect.Message {
  99. mi := &file_user_proto_msgTypes[1]
  100. if protoimpl.UnsafeEnabled && x != nil {
  101. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  102. if ms.LoadMessageInfo() == nil {
  103. ms.StoreMessageInfo(mi)
  104. }
  105. return ms
  106. }
  107. return mi.MessageOf(x)
  108. }
  109. // Deprecated: Use ReplyScripRequest.ProtoReflect.Descriptor instead.
  110. func (*ReplyScripRequest) Descriptor() ([]byte, []int) {
  111. return file_user_proto_rawDescGZIP(), []int{1}
  112. }
  113. func (x *ReplyScripRequest) GetScripId() int64 {
  114. if x != nil {
  115. return x.ScripId
  116. }
  117. return 0
  118. }
  119. func (x *ReplyScripRequest) GetMessage() *common.Message {
  120. if x != nil {
  121. return x.Message
  122. }
  123. return nil
  124. }
  125. func (x *ReplyScripRequest) GetMsgType() string {
  126. if x != nil {
  127. return x.MsgType
  128. }
  129. return ""
  130. }
  131. type PersonLookScripRequest struct {
  132. state protoimpl.MessageState
  133. sizeCache protoimpl.SizeCache
  134. unknownFields protoimpl.UnknownFields
  135. ScripId int64 `protobuf:"varint,3,opt,name=scripId,proto3" json:"scripId"` // 纸条id
  136. }
  137. func (x *PersonLookScripRequest) Reset() {
  138. *x = PersonLookScripRequest{}
  139. if protoimpl.UnsafeEnabled {
  140. mi := &file_user_proto_msgTypes[2]
  141. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  142. ms.StoreMessageInfo(mi)
  143. }
  144. }
  145. func (x *PersonLookScripRequest) String() string {
  146. return protoimpl.X.MessageStringOf(x)
  147. }
  148. func (*PersonLookScripRequest) ProtoMessage() {}
  149. func (x *PersonLookScripRequest) ProtoReflect() protoreflect.Message {
  150. mi := &file_user_proto_msgTypes[2]
  151. if protoimpl.UnsafeEnabled && x != nil {
  152. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  153. if ms.LoadMessageInfo() == nil {
  154. ms.StoreMessageInfo(mi)
  155. }
  156. return ms
  157. }
  158. return mi.MessageOf(x)
  159. }
  160. // Deprecated: Use PersonLookScripRequest.ProtoReflect.Descriptor instead.
  161. func (*PersonLookScripRequest) Descriptor() ([]byte, []int) {
  162. return file_user_proto_rawDescGZIP(), []int{2}
  163. }
  164. func (x *PersonLookScripRequest) GetScripId() int64 {
  165. if x != nil {
  166. return x.ScripId
  167. }
  168. return 0
  169. }
  170. type UserFindScripRequest struct {
  171. state protoimpl.MessageState
  172. sizeCache protoimpl.SizeCache
  173. unknownFields protoimpl.UnknownFields
  174. NextId int64 `protobuf:"varint,3,opt,name=nextId,proto3" json:"nextId"`
  175. Offset int64 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset"`
  176. }
  177. func (x *UserFindScripRequest) Reset() {
  178. *x = UserFindScripRequest{}
  179. if protoimpl.UnsafeEnabled {
  180. mi := &file_user_proto_msgTypes[3]
  181. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  182. ms.StoreMessageInfo(mi)
  183. }
  184. }
  185. func (x *UserFindScripRequest) String() string {
  186. return protoimpl.X.MessageStringOf(x)
  187. }
  188. func (*UserFindScripRequest) ProtoMessage() {}
  189. func (x *UserFindScripRequest) ProtoReflect() protoreflect.Message {
  190. mi := &file_user_proto_msgTypes[3]
  191. if protoimpl.UnsafeEnabled && x != nil {
  192. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  193. if ms.LoadMessageInfo() == nil {
  194. ms.StoreMessageInfo(mi)
  195. }
  196. return ms
  197. }
  198. return mi.MessageOf(x)
  199. }
  200. // Deprecated: Use UserFindScripRequest.ProtoReflect.Descriptor instead.
  201. func (*UserFindScripRequest) Descriptor() ([]byte, []int) {
  202. return file_user_proto_rawDescGZIP(), []int{3}
  203. }
  204. func (x *UserFindScripRequest) GetNextId() int64 {
  205. if x != nil {
  206. return x.NextId
  207. }
  208. return 0
  209. }
  210. func (x *UserFindScripRequest) GetOffset() int64 {
  211. if x != nil {
  212. return x.Offset
  213. }
  214. return 0
  215. }
  216. type DeleteScripRequest struct {
  217. state protoimpl.MessageState
  218. sizeCache protoimpl.SizeCache
  219. unknownFields protoimpl.UnknownFields
  220. ScripId int64 `protobuf:"varint,1,opt,name=scripId,proto3" json:"scripId"` // 纸条id
  221. }
  222. func (x *DeleteScripRequest) Reset() {
  223. *x = DeleteScripRequest{}
  224. if protoimpl.UnsafeEnabled {
  225. mi := &file_user_proto_msgTypes[4]
  226. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  227. ms.StoreMessageInfo(mi)
  228. }
  229. }
  230. func (x *DeleteScripRequest) String() string {
  231. return protoimpl.X.MessageStringOf(x)
  232. }
  233. func (*DeleteScripRequest) ProtoMessage() {}
  234. func (x *DeleteScripRequest) ProtoReflect() protoreflect.Message {
  235. mi := &file_user_proto_msgTypes[4]
  236. if protoimpl.UnsafeEnabled && x != nil {
  237. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  238. if ms.LoadMessageInfo() == nil {
  239. ms.StoreMessageInfo(mi)
  240. }
  241. return ms
  242. }
  243. return mi.MessageOf(x)
  244. }
  245. // Deprecated: Use DeleteScripRequest.ProtoReflect.Descriptor instead.
  246. func (*DeleteScripRequest) Descriptor() ([]byte, []int) {
  247. return file_user_proto_rawDescGZIP(), []int{4}
  248. }
  249. func (x *DeleteScripRequest) GetScripId() int64 {
  250. if x != nil {
  251. return x.ScripId
  252. }
  253. return 0
  254. }
  255. type CreateScripRequest struct {
  256. state protoimpl.MessageState
  257. sizeCache protoimpl.SizeCache
  258. unknownFields protoimpl.UnknownFields
  259. Text string `protobuf:"bytes,1,opt,name=text,proto3" json:"text"` // 纸条内容
  260. PictureUrl string `protobuf:"bytes,2,opt,name=pictureUrl,proto3" json:"pictureUrl"` // 纸条背景图
  261. }
  262. func (x *CreateScripRequest) Reset() {
  263. *x = CreateScripRequest{}
  264. if protoimpl.UnsafeEnabled {
  265. mi := &file_user_proto_msgTypes[5]
  266. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  267. ms.StoreMessageInfo(mi)
  268. }
  269. }
  270. func (x *CreateScripRequest) String() string {
  271. return protoimpl.X.MessageStringOf(x)
  272. }
  273. func (*CreateScripRequest) ProtoMessage() {}
  274. func (x *CreateScripRequest) ProtoReflect() protoreflect.Message {
  275. mi := &file_user_proto_msgTypes[5]
  276. if protoimpl.UnsafeEnabled && x != nil {
  277. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  278. if ms.LoadMessageInfo() == nil {
  279. ms.StoreMessageInfo(mi)
  280. }
  281. return ms
  282. }
  283. return mi.MessageOf(x)
  284. }
  285. // Deprecated: Use CreateScripRequest.ProtoReflect.Descriptor instead.
  286. func (*CreateScripRequest) Descriptor() ([]byte, []int) {
  287. return file_user_proto_rawDescGZIP(), []int{5}
  288. }
  289. func (x *CreateScripRequest) GetText() string {
  290. if x != nil {
  291. return x.Text
  292. }
  293. return ""
  294. }
  295. func (x *CreateScripRequest) GetPictureUrl() string {
  296. if x != nil {
  297. return x.PictureUrl
  298. }
  299. return ""
  300. }
  301. type FindMatchingAvatarAndNumReply struct {
  302. state protoimpl.MessageState
  303. sizeCache protoimpl.SizeCache
  304. unknownFields protoimpl.UnknownFields
  305. Num int64 `protobuf:"varint,1,opt,name=num,proto3" json:"num"` // 匹配人数
  306. List []string `protobuf:"bytes,2,rep,name=list,proto3" json:"list"` // 头像列表
  307. }
  308. func (x *FindMatchingAvatarAndNumReply) Reset() {
  309. *x = FindMatchingAvatarAndNumReply{}
  310. if protoimpl.UnsafeEnabled {
  311. mi := &file_user_proto_msgTypes[6]
  312. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  313. ms.StoreMessageInfo(mi)
  314. }
  315. }
  316. func (x *FindMatchingAvatarAndNumReply) String() string {
  317. return protoimpl.X.MessageStringOf(x)
  318. }
  319. func (*FindMatchingAvatarAndNumReply) ProtoMessage() {}
  320. func (x *FindMatchingAvatarAndNumReply) ProtoReflect() protoreflect.Message {
  321. mi := &file_user_proto_msgTypes[6]
  322. if protoimpl.UnsafeEnabled && x != nil {
  323. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  324. if ms.LoadMessageInfo() == nil {
  325. ms.StoreMessageInfo(mi)
  326. }
  327. return ms
  328. }
  329. return mi.MessageOf(x)
  330. }
  331. // Deprecated: Use FindMatchingAvatarAndNumReply.ProtoReflect.Descriptor instead.
  332. func (*FindMatchingAvatarAndNumReply) Descriptor() ([]byte, []int) {
  333. return file_user_proto_rawDescGZIP(), []int{6}
  334. }
  335. func (x *FindMatchingAvatarAndNumReply) GetNum() int64 {
  336. if x != nil {
  337. return x.Num
  338. }
  339. return 0
  340. }
  341. func (x *FindMatchingAvatarAndNumReply) GetList() []string {
  342. if x != nil {
  343. return x.List
  344. }
  345. return nil
  346. }
  347. type FindRecommendPersonListRequest struct {
  348. state protoimpl.MessageState
  349. sizeCache protoimpl.SizeCache
  350. unknownFields protoimpl.UnknownFields
  351. NextId string `protobuf:"bytes,1,opt,name=nextId,proto3" json:"nextId"`
  352. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  353. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别(不筛选就是0)
  354. }
  355. func (x *FindRecommendPersonListRequest) Reset() {
  356. *x = FindRecommendPersonListRequest{}
  357. if protoimpl.UnsafeEnabled {
  358. mi := &file_user_proto_msgTypes[7]
  359. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  360. ms.StoreMessageInfo(mi)
  361. }
  362. }
  363. func (x *FindRecommendPersonListRequest) String() string {
  364. return protoimpl.X.MessageStringOf(x)
  365. }
  366. func (*FindRecommendPersonListRequest) ProtoMessage() {}
  367. func (x *FindRecommendPersonListRequest) ProtoReflect() protoreflect.Message {
  368. mi := &file_user_proto_msgTypes[7]
  369. if protoimpl.UnsafeEnabled && x != nil {
  370. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  371. if ms.LoadMessageInfo() == nil {
  372. ms.StoreMessageInfo(mi)
  373. }
  374. return ms
  375. }
  376. return mi.MessageOf(x)
  377. }
  378. // Deprecated: Use FindRecommendPersonListRequest.ProtoReflect.Descriptor instead.
  379. func (*FindRecommendPersonListRequest) Descriptor() ([]byte, []int) {
  380. return file_user_proto_rawDescGZIP(), []int{7}
  381. }
  382. func (x *FindRecommendPersonListRequest) GetNextId() string {
  383. if x != nil {
  384. return x.NextId
  385. }
  386. return ""
  387. }
  388. func (x *FindRecommendPersonListRequest) GetOffset() int64 {
  389. if x != nil {
  390. return x.Offset
  391. }
  392. return 0
  393. }
  394. func (x *FindRecommendPersonListRequest) GetSex() int64 {
  395. if x != nil {
  396. return x.Sex
  397. }
  398. return 0
  399. }
  400. type UserRechargeRequest struct {
  401. state protoimpl.MessageState
  402. sizeCache protoimpl.SizeCache
  403. unknownFields protoimpl.UnknownFields
  404. RechargeTemplateId int64 `protobuf:"varint,1,opt,name=RechargeTemplateId,proto3" json:"RechargeTemplateId"` // 充值套餐ID
  405. }
  406. func (x *UserRechargeRequest) Reset() {
  407. *x = UserRechargeRequest{}
  408. if protoimpl.UnsafeEnabled {
  409. mi := &file_user_proto_msgTypes[8]
  410. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  411. ms.StoreMessageInfo(mi)
  412. }
  413. }
  414. func (x *UserRechargeRequest) String() string {
  415. return protoimpl.X.MessageStringOf(x)
  416. }
  417. func (*UserRechargeRequest) ProtoMessage() {}
  418. func (x *UserRechargeRequest) ProtoReflect() protoreflect.Message {
  419. mi := &file_user_proto_msgTypes[8]
  420. if protoimpl.UnsafeEnabled && x != nil {
  421. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  422. if ms.LoadMessageInfo() == nil {
  423. ms.StoreMessageInfo(mi)
  424. }
  425. return ms
  426. }
  427. return mi.MessageOf(x)
  428. }
  429. // Deprecated: Use UserRechargeRequest.ProtoReflect.Descriptor instead.
  430. func (*UserRechargeRequest) Descriptor() ([]byte, []int) {
  431. return file_user_proto_rawDescGZIP(), []int{8}
  432. }
  433. func (x *UserRechargeRequest) GetRechargeTemplateId() int64 {
  434. if x != nil {
  435. return x.RechargeTemplateId
  436. }
  437. return 0
  438. }
  439. type RechargeList struct {
  440. state protoimpl.MessageState
  441. sizeCache protoimpl.SizeCache
  442. unknownFields protoimpl.UnknownFields
  443. List []*RechargeInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  444. }
  445. func (x *RechargeList) Reset() {
  446. *x = RechargeList{}
  447. if protoimpl.UnsafeEnabled {
  448. mi := &file_user_proto_msgTypes[9]
  449. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  450. ms.StoreMessageInfo(mi)
  451. }
  452. }
  453. func (x *RechargeList) String() string {
  454. return protoimpl.X.MessageStringOf(x)
  455. }
  456. func (*RechargeList) ProtoMessage() {}
  457. func (x *RechargeList) ProtoReflect() protoreflect.Message {
  458. mi := &file_user_proto_msgTypes[9]
  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 RechargeList.ProtoReflect.Descriptor instead.
  469. func (*RechargeList) Descriptor() ([]byte, []int) {
  470. return file_user_proto_rawDescGZIP(), []int{9}
  471. }
  472. func (x *RechargeList) GetList() []*RechargeInfo {
  473. if x != nil {
  474. return x.List
  475. }
  476. return nil
  477. }
  478. type RechargeInfo struct {
  479. state protoimpl.MessageState
  480. sizeCache protoimpl.SizeCache
  481. unknownFields protoimpl.UnknownFields
  482. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  483. Price int64 `protobuf:"varint,2,opt,name=price,proto3" json:"price"`
  484. Credit int64 `protobuf:"varint,3,opt,name=credit,proto3" json:"credit"` // 积分
  485. GiveCredit int64 `protobuf:"varint,4,opt,name=giveCredit,proto3" json:"giveCredit"` // 赠送的积分
  486. Description string `protobuf:"bytes,5,opt,name=description,proto3" json:"description"` // 描述
  487. Title string `protobuf:"bytes,6,opt,name=title,proto3" json:"title"` // 标题
  488. }
  489. func (x *RechargeInfo) Reset() {
  490. *x = RechargeInfo{}
  491. if protoimpl.UnsafeEnabled {
  492. mi := &file_user_proto_msgTypes[10]
  493. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  494. ms.StoreMessageInfo(mi)
  495. }
  496. }
  497. func (x *RechargeInfo) String() string {
  498. return protoimpl.X.MessageStringOf(x)
  499. }
  500. func (*RechargeInfo) ProtoMessage() {}
  501. func (x *RechargeInfo) ProtoReflect() protoreflect.Message {
  502. mi := &file_user_proto_msgTypes[10]
  503. if protoimpl.UnsafeEnabled && x != nil {
  504. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  505. if ms.LoadMessageInfo() == nil {
  506. ms.StoreMessageInfo(mi)
  507. }
  508. return ms
  509. }
  510. return mi.MessageOf(x)
  511. }
  512. // Deprecated: Use RechargeInfo.ProtoReflect.Descriptor instead.
  513. func (*RechargeInfo) Descriptor() ([]byte, []int) {
  514. return file_user_proto_rawDescGZIP(), []int{10}
  515. }
  516. func (x *RechargeInfo) GetId() int64 {
  517. if x != nil {
  518. return x.Id
  519. }
  520. return 0
  521. }
  522. func (x *RechargeInfo) GetPrice() int64 {
  523. if x != nil {
  524. return x.Price
  525. }
  526. return 0
  527. }
  528. func (x *RechargeInfo) GetCredit() int64 {
  529. if x != nil {
  530. return x.Credit
  531. }
  532. return 0
  533. }
  534. func (x *RechargeInfo) GetGiveCredit() int64 {
  535. if x != nil {
  536. return x.GiveCredit
  537. }
  538. return 0
  539. }
  540. func (x *RechargeInfo) GetDescription() string {
  541. if x != nil {
  542. return x.Description
  543. }
  544. return ""
  545. }
  546. func (x *RechargeInfo) GetTitle() string {
  547. if x != nil {
  548. return x.Title
  549. }
  550. return ""
  551. }
  552. type InformationStatus struct {
  553. state protoimpl.MessageState
  554. sizeCache protoimpl.SizeCache
  555. unknownFields protoimpl.UnknownFields
  556. IsFinishInformation bool `protobuf:"varint,1,opt,name=isFinishInformation,proto3" json:"isFinishInformation"` //是否完善资料
  557. IsGetAward bool `protobuf:"varint,2,opt,name=isGetAward,proto3" json:"isGetAward"` // 是否领取奖励
  558. }
  559. func (x *InformationStatus) Reset() {
  560. *x = InformationStatus{}
  561. if protoimpl.UnsafeEnabled {
  562. mi := &file_user_proto_msgTypes[11]
  563. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  564. ms.StoreMessageInfo(mi)
  565. }
  566. }
  567. func (x *InformationStatus) String() string {
  568. return protoimpl.X.MessageStringOf(x)
  569. }
  570. func (*InformationStatus) ProtoMessage() {}
  571. func (x *InformationStatus) ProtoReflect() protoreflect.Message {
  572. mi := &file_user_proto_msgTypes[11]
  573. if protoimpl.UnsafeEnabled && x != nil {
  574. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  575. if ms.LoadMessageInfo() == nil {
  576. ms.StoreMessageInfo(mi)
  577. }
  578. return ms
  579. }
  580. return mi.MessageOf(x)
  581. }
  582. // Deprecated: Use InformationStatus.ProtoReflect.Descriptor instead.
  583. func (*InformationStatus) Descriptor() ([]byte, []int) {
  584. return file_user_proto_rawDescGZIP(), []int{11}
  585. }
  586. func (x *InformationStatus) GetIsFinishInformation() bool {
  587. if x != nil {
  588. return x.IsFinishInformation
  589. }
  590. return false
  591. }
  592. func (x *InformationStatus) GetIsGetAward() bool {
  593. if x != nil {
  594. return x.IsGetAward
  595. }
  596. return false
  597. }
  598. type UserBalance struct {
  599. state protoimpl.MessageState
  600. sizeCache protoimpl.SizeCache
  601. unknownFields protoimpl.UnknownFields
  602. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  603. Credit int64 `protobuf:"varint,2,opt,name=credit,proto3" json:"credit"` // 积分
  604. }
  605. func (x *UserBalance) Reset() {
  606. *x = UserBalance{}
  607. if protoimpl.UnsafeEnabled {
  608. mi := &file_user_proto_msgTypes[12]
  609. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  610. ms.StoreMessageInfo(mi)
  611. }
  612. }
  613. func (x *UserBalance) String() string {
  614. return protoimpl.X.MessageStringOf(x)
  615. }
  616. func (*UserBalance) ProtoMessage() {}
  617. func (x *UserBalance) ProtoReflect() protoreflect.Message {
  618. mi := &file_user_proto_msgTypes[12]
  619. if protoimpl.UnsafeEnabled && x != nil {
  620. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  621. if ms.LoadMessageInfo() == nil {
  622. ms.StoreMessageInfo(mi)
  623. }
  624. return ms
  625. }
  626. return mi.MessageOf(x)
  627. }
  628. // Deprecated: Use UserBalance.ProtoReflect.Descriptor instead.
  629. func (*UserBalance) Descriptor() ([]byte, []int) {
  630. return file_user_proto_rawDescGZIP(), []int{12}
  631. }
  632. func (x *UserBalance) GetId() string {
  633. if x != nil {
  634. return x.Id
  635. }
  636. return ""
  637. }
  638. func (x *UserBalance) GetCredit() int64 {
  639. if x != nil {
  640. return x.Credit
  641. }
  642. return 0
  643. }
  644. type UserFindChatListReply struct {
  645. state protoimpl.MessageState
  646. sizeCache protoimpl.SizeCache
  647. unknownFields protoimpl.UnknownFields
  648. List []*UserChatInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  649. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  650. }
  651. func (x *UserFindChatListReply) Reset() {
  652. *x = UserFindChatListReply{}
  653. if protoimpl.UnsafeEnabled {
  654. mi := &file_user_proto_msgTypes[13]
  655. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  656. ms.StoreMessageInfo(mi)
  657. }
  658. }
  659. func (x *UserFindChatListReply) String() string {
  660. return protoimpl.X.MessageStringOf(x)
  661. }
  662. func (*UserFindChatListReply) ProtoMessage() {}
  663. func (x *UserFindChatListReply) ProtoReflect() protoreflect.Message {
  664. mi := &file_user_proto_msgTypes[13]
  665. if protoimpl.UnsafeEnabled && x != nil {
  666. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  667. if ms.LoadMessageInfo() == nil {
  668. ms.StoreMessageInfo(mi)
  669. }
  670. return ms
  671. }
  672. return mi.MessageOf(x)
  673. }
  674. // Deprecated: Use UserFindChatListReply.ProtoReflect.Descriptor instead.
  675. func (*UserFindChatListReply) Descriptor() ([]byte, []int) {
  676. return file_user_proto_rawDescGZIP(), []int{13}
  677. }
  678. func (x *UserFindChatListReply) GetList() []*UserChatInfo {
  679. if x != nil {
  680. return x.List
  681. }
  682. return nil
  683. }
  684. func (x *UserFindChatListReply) GetNextId() int64 {
  685. if x != nil {
  686. return x.NextId
  687. }
  688. return 0
  689. }
  690. type UserChatInfo struct {
  691. state protoimpl.MessageState
  692. sizeCache protoimpl.SizeCache
  693. unknownFields protoimpl.UnknownFields
  694. PersonId string `protobuf:"bytes,2,opt,name=personId,proto3" json:"personId"` // 用户ID
  695. UnreadNum int64 `protobuf:"varint,3,opt,name=unreadNum,proto3" json:"unreadNum"` // 用户未读数
  696. LastContent string `protobuf:"bytes,4,opt,name=lastContent,proto3" json:"lastContent"` // 上次发送内容
  697. LastTime int64 `protobuf:"varint,5,opt,name=lastTime,proto3" json:"lastTime"` // 上次发送时间
  698. Likeability int64 `protobuf:"varint,6,opt,name=likeability,proto3" json:"likeability"` // 好感度
  699. Sex int64 `protobuf:"varint,8,opt,name=sex,proto3" json:"sex"` // 性别
  700. AvatarUrl string `protobuf:"bytes,9,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像
  701. Nickname string `protobuf:"bytes,10,opt,name=nickname,proto3" json:"nickname"` // 昵称
  702. Age int64 `protobuf:"varint,11,opt,name=age,proto3" json:"age"` // 年龄
  703. RoomId int64 `protobuf:"varint,12,opt,name=roomId,proto3" json:"roomId"` // 房间号ID
  704. }
  705. func (x *UserChatInfo) Reset() {
  706. *x = UserChatInfo{}
  707. if protoimpl.UnsafeEnabled {
  708. mi := &file_user_proto_msgTypes[14]
  709. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  710. ms.StoreMessageInfo(mi)
  711. }
  712. }
  713. func (x *UserChatInfo) String() string {
  714. return protoimpl.X.MessageStringOf(x)
  715. }
  716. func (*UserChatInfo) ProtoMessage() {}
  717. func (x *UserChatInfo) ProtoReflect() protoreflect.Message {
  718. mi := &file_user_proto_msgTypes[14]
  719. if protoimpl.UnsafeEnabled && x != nil {
  720. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  721. if ms.LoadMessageInfo() == nil {
  722. ms.StoreMessageInfo(mi)
  723. }
  724. return ms
  725. }
  726. return mi.MessageOf(x)
  727. }
  728. // Deprecated: Use UserChatInfo.ProtoReflect.Descriptor instead.
  729. func (*UserChatInfo) Descriptor() ([]byte, []int) {
  730. return file_user_proto_rawDescGZIP(), []int{14}
  731. }
  732. func (x *UserChatInfo) GetPersonId() string {
  733. if x != nil {
  734. return x.PersonId
  735. }
  736. return ""
  737. }
  738. func (x *UserChatInfo) GetUnreadNum() int64 {
  739. if x != nil {
  740. return x.UnreadNum
  741. }
  742. return 0
  743. }
  744. func (x *UserChatInfo) GetLastContent() string {
  745. if x != nil {
  746. return x.LastContent
  747. }
  748. return ""
  749. }
  750. func (x *UserChatInfo) GetLastTime() int64 {
  751. if x != nil {
  752. return x.LastTime
  753. }
  754. return 0
  755. }
  756. func (x *UserChatInfo) GetLikeability() int64 {
  757. if x != nil {
  758. return x.Likeability
  759. }
  760. return 0
  761. }
  762. func (x *UserChatInfo) GetSex() int64 {
  763. if x != nil {
  764. return x.Sex
  765. }
  766. return 0
  767. }
  768. func (x *UserChatInfo) GetAvatarUrl() string {
  769. if x != nil {
  770. return x.AvatarUrl
  771. }
  772. return ""
  773. }
  774. func (x *UserChatInfo) GetNickname() string {
  775. if x != nil {
  776. return x.Nickname
  777. }
  778. return ""
  779. }
  780. func (x *UserChatInfo) GetAge() int64 {
  781. if x != nil {
  782. return x.Age
  783. }
  784. return 0
  785. }
  786. func (x *UserChatInfo) GetRoomId() int64 {
  787. if x != nil {
  788. return x.RoomId
  789. }
  790. return 0
  791. }
  792. type UserInfo struct {
  793. state protoimpl.MessageState
  794. sizeCache protoimpl.SizeCache
  795. unknownFields protoimpl.UnknownFields
  796. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  797. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  798. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  799. Age int64 `protobuf:"varint,4,opt,name=age,proto3" json:"age"` // 年龄
  800. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  801. Constellation string `protobuf:"bytes,6,opt,name=constellation,proto3" json:"constellation"` // 星座
  802. Credit int64 `protobuf:"varint,7,opt,name=credit,proto3" json:"credit"` // 积分
  803. TagList []int64 `protobuf:"varint,8,rep,packed,name=tagList,proto3" json:"tagList"` // 标签
  804. Signature string `protobuf:"bytes,9,opt,name=signature,proto3" json:"signature"` // 签名
  805. IntroduceVoice string `protobuf:"bytes,10,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
  806. Province string `protobuf:"bytes,11,opt,name=province,proto3" json:"province"` // 省
  807. City string `protobuf:"bytes,12,opt,name=city,proto3" json:"city"` // 市
  808. Area string `protobuf:"bytes,13,opt,name=area,proto3" json:"area"` // 区
  809. UserId int64 `protobuf:"varint,14,opt,name=userId,proto3" json:"userId"` // 用户ID
  810. IsBlack bool `protobuf:"varint,15,opt,name=isBlack,proto3" json:"isBlack"` // 是否被封号
  811. }
  812. func (x *UserInfo) Reset() {
  813. *x = UserInfo{}
  814. if protoimpl.UnsafeEnabled {
  815. mi := &file_user_proto_msgTypes[15]
  816. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  817. ms.StoreMessageInfo(mi)
  818. }
  819. }
  820. func (x *UserInfo) String() string {
  821. return protoimpl.X.MessageStringOf(x)
  822. }
  823. func (*UserInfo) ProtoMessage() {}
  824. func (x *UserInfo) ProtoReflect() protoreflect.Message {
  825. mi := &file_user_proto_msgTypes[15]
  826. if protoimpl.UnsafeEnabled && x != nil {
  827. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  828. if ms.LoadMessageInfo() == nil {
  829. ms.StoreMessageInfo(mi)
  830. }
  831. return ms
  832. }
  833. return mi.MessageOf(x)
  834. }
  835. // Deprecated: Use UserInfo.ProtoReflect.Descriptor instead.
  836. func (*UserInfo) Descriptor() ([]byte, []int) {
  837. return file_user_proto_rawDescGZIP(), []int{15}
  838. }
  839. func (x *UserInfo) GetId() string {
  840. if x != nil {
  841. return x.Id
  842. }
  843. return ""
  844. }
  845. func (x *UserInfo) GetNickname() string {
  846. if x != nil {
  847. return x.Nickname
  848. }
  849. return ""
  850. }
  851. func (x *UserInfo) GetAvatarUrl() string {
  852. if x != nil {
  853. return x.AvatarUrl
  854. }
  855. return ""
  856. }
  857. func (x *UserInfo) GetAge() int64 {
  858. if x != nil {
  859. return x.Age
  860. }
  861. return 0
  862. }
  863. func (x *UserInfo) GetSex() int64 {
  864. if x != nil {
  865. return x.Sex
  866. }
  867. return 0
  868. }
  869. func (x *UserInfo) GetConstellation() string {
  870. if x != nil {
  871. return x.Constellation
  872. }
  873. return ""
  874. }
  875. func (x *UserInfo) GetCredit() int64 {
  876. if x != nil {
  877. return x.Credit
  878. }
  879. return 0
  880. }
  881. func (x *UserInfo) GetTagList() []int64 {
  882. if x != nil {
  883. return x.TagList
  884. }
  885. return nil
  886. }
  887. func (x *UserInfo) GetSignature() string {
  888. if x != nil {
  889. return x.Signature
  890. }
  891. return ""
  892. }
  893. func (x *UserInfo) GetIntroduceVoice() string {
  894. if x != nil {
  895. return x.IntroduceVoice
  896. }
  897. return ""
  898. }
  899. func (x *UserInfo) GetProvince() string {
  900. if x != nil {
  901. return x.Province
  902. }
  903. return ""
  904. }
  905. func (x *UserInfo) GetCity() string {
  906. if x != nil {
  907. return x.City
  908. }
  909. return ""
  910. }
  911. func (x *UserInfo) GetArea() string {
  912. if x != nil {
  913. return x.Area
  914. }
  915. return ""
  916. }
  917. func (x *UserInfo) GetUserId() int64 {
  918. if x != nil {
  919. return x.UserId
  920. }
  921. return 0
  922. }
  923. func (x *UserInfo) GetIsBlack() bool {
  924. if x != nil {
  925. return x.IsBlack
  926. }
  927. return false
  928. }
  929. type KeyRequest struct {
  930. state protoimpl.MessageState
  931. sizeCache protoimpl.SizeCache
  932. unknownFields protoimpl.UnknownFields
  933. Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key"`
  934. }
  935. func (x *KeyRequest) Reset() {
  936. *x = KeyRequest{}
  937. if protoimpl.UnsafeEnabled {
  938. mi := &file_user_proto_msgTypes[16]
  939. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  940. ms.StoreMessageInfo(mi)
  941. }
  942. }
  943. func (x *KeyRequest) String() string {
  944. return protoimpl.X.MessageStringOf(x)
  945. }
  946. func (*KeyRequest) ProtoMessage() {}
  947. func (x *KeyRequest) ProtoReflect() protoreflect.Message {
  948. mi := &file_user_proto_msgTypes[16]
  949. if protoimpl.UnsafeEnabled && x != nil {
  950. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  951. if ms.LoadMessageInfo() == nil {
  952. ms.StoreMessageInfo(mi)
  953. }
  954. return ms
  955. }
  956. return mi.MessageOf(x)
  957. }
  958. // Deprecated: Use KeyRequest.ProtoReflect.Descriptor instead.
  959. func (*KeyRequest) Descriptor() ([]byte, []int) {
  960. return file_user_proto_rawDescGZIP(), []int{16}
  961. }
  962. func (x *KeyRequest) GetKey() string {
  963. if x != nil {
  964. return x.Key
  965. }
  966. return ""
  967. }
  968. type CreatePayRequest struct {
  969. state protoimpl.MessageState
  970. sizeCache protoimpl.SizeCache
  971. unknownFields protoimpl.UnknownFields
  972. Money int64 `protobuf:"varint,1,opt,name=money,proto3" json:"money"` // 支付金额 单位 分
  973. Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type"` // 类型
  974. OpenId string `protobuf:"bytes,3,opt,name=openId,proto3" json:"openId"`
  975. Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description"`
  976. Attach string `protobuf:"bytes,5,opt,name=attach,proto3" json:"attach"`
  977. }
  978. func (x *CreatePayRequest) Reset() {
  979. *x = CreatePayRequest{}
  980. if protoimpl.UnsafeEnabled {
  981. mi := &file_user_proto_msgTypes[17]
  982. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  983. ms.StoreMessageInfo(mi)
  984. }
  985. }
  986. func (x *CreatePayRequest) String() string {
  987. return protoimpl.X.MessageStringOf(x)
  988. }
  989. func (*CreatePayRequest) ProtoMessage() {}
  990. func (x *CreatePayRequest) ProtoReflect() protoreflect.Message {
  991. mi := &file_user_proto_msgTypes[17]
  992. if protoimpl.UnsafeEnabled && x != nil {
  993. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  994. if ms.LoadMessageInfo() == nil {
  995. ms.StoreMessageInfo(mi)
  996. }
  997. return ms
  998. }
  999. return mi.MessageOf(x)
  1000. }
  1001. // Deprecated: Use CreatePayRequest.ProtoReflect.Descriptor instead.
  1002. func (*CreatePayRequest) Descriptor() ([]byte, []int) {
  1003. return file_user_proto_rawDescGZIP(), []int{17}
  1004. }
  1005. func (x *CreatePayRequest) GetMoney() int64 {
  1006. if x != nil {
  1007. return x.Money
  1008. }
  1009. return 0
  1010. }
  1011. func (x *CreatePayRequest) GetType() string {
  1012. if x != nil {
  1013. return x.Type
  1014. }
  1015. return ""
  1016. }
  1017. func (x *CreatePayRequest) GetOpenId() string {
  1018. if x != nil {
  1019. return x.OpenId
  1020. }
  1021. return ""
  1022. }
  1023. func (x *CreatePayRequest) GetDescription() string {
  1024. if x != nil {
  1025. return x.Description
  1026. }
  1027. return ""
  1028. }
  1029. func (x *CreatePayRequest) GetAttach() string {
  1030. if x != nil {
  1031. return x.Attach
  1032. }
  1033. return ""
  1034. }
  1035. type PayInfo struct {
  1036. state protoimpl.MessageState
  1037. sizeCache protoimpl.SizeCache
  1038. unknownFields protoimpl.UnknownFields
  1039. PayInfo *structpb.Value `protobuf:"bytes,1,opt,name=payInfo,proto3" json:"payInfo"`
  1040. OrderId int64 `protobuf:"varint,2,opt,name=orderId,proto3" json:"orderId"`
  1041. }
  1042. func (x *PayInfo) Reset() {
  1043. *x = PayInfo{}
  1044. if protoimpl.UnsafeEnabled {
  1045. mi := &file_user_proto_msgTypes[18]
  1046. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1047. ms.StoreMessageInfo(mi)
  1048. }
  1049. }
  1050. func (x *PayInfo) String() string {
  1051. return protoimpl.X.MessageStringOf(x)
  1052. }
  1053. func (*PayInfo) ProtoMessage() {}
  1054. func (x *PayInfo) ProtoReflect() protoreflect.Message {
  1055. mi := &file_user_proto_msgTypes[18]
  1056. if protoimpl.UnsafeEnabled && x != nil {
  1057. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1058. if ms.LoadMessageInfo() == nil {
  1059. ms.StoreMessageInfo(mi)
  1060. }
  1061. return ms
  1062. }
  1063. return mi.MessageOf(x)
  1064. }
  1065. // Deprecated: Use PayInfo.ProtoReflect.Descriptor instead.
  1066. func (*PayInfo) Descriptor() ([]byte, []int) {
  1067. return file_user_proto_rawDescGZIP(), []int{18}
  1068. }
  1069. func (x *PayInfo) GetPayInfo() *structpb.Value {
  1070. if x != nil {
  1071. return x.PayInfo
  1072. }
  1073. return nil
  1074. }
  1075. func (x *PayInfo) GetOrderId() int64 {
  1076. if x != nil {
  1077. return x.OrderId
  1078. }
  1079. return 0
  1080. }
  1081. type PayOrderInfo struct {
  1082. state protoimpl.MessageState
  1083. sizeCache protoimpl.SizeCache
  1084. unknownFields protoimpl.UnknownFields
  1085. UserID string `protobuf:"bytes,1,opt,name=userID,proto3" json:"userID"`
  1086. OrderID int64 `protobuf:"varint,2,opt,name=orderID,proto3" json:"orderID"` // 订单的唯一ID
  1087. Money int64 `protobuf:"varint,3,opt,name=money,proto3" json:"money"` // 支付金额 ,单位分
  1088. Type string `protobuf:"bytes,4,opt,name=type,proto3" json:"type"` // 类型
  1089. TransactionID string `protobuf:"bytes,5,opt,name=TransactionID,proto3" json:"TransactionID"`
  1090. OpenId string `protobuf:"bytes,6,opt,name=openId,proto3" json:"openId"`
  1091. Description string `protobuf:"bytes,7,opt,name=description,proto3" json:"description"`
  1092. Status string `protobuf:"bytes,9,opt,name=status,proto3" json:"status"` // 状态
  1093. PayTime int64 `protobuf:"varint,10,opt,name=payTime,proto3" json:"payTime"` // 支付时间
  1094. CreateTime int64 `protobuf:"varint,11,opt,name=createTime,proto3" json:"createTime"` // 创建时间
  1095. }
  1096. func (x *PayOrderInfo) Reset() {
  1097. *x = PayOrderInfo{}
  1098. if protoimpl.UnsafeEnabled {
  1099. mi := &file_user_proto_msgTypes[19]
  1100. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1101. ms.StoreMessageInfo(mi)
  1102. }
  1103. }
  1104. func (x *PayOrderInfo) String() string {
  1105. return protoimpl.X.MessageStringOf(x)
  1106. }
  1107. func (*PayOrderInfo) ProtoMessage() {}
  1108. func (x *PayOrderInfo) ProtoReflect() protoreflect.Message {
  1109. mi := &file_user_proto_msgTypes[19]
  1110. if protoimpl.UnsafeEnabled && x != nil {
  1111. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1112. if ms.LoadMessageInfo() == nil {
  1113. ms.StoreMessageInfo(mi)
  1114. }
  1115. return ms
  1116. }
  1117. return mi.MessageOf(x)
  1118. }
  1119. // Deprecated: Use PayOrderInfo.ProtoReflect.Descriptor instead.
  1120. func (*PayOrderInfo) Descriptor() ([]byte, []int) {
  1121. return file_user_proto_rawDescGZIP(), []int{19}
  1122. }
  1123. func (x *PayOrderInfo) GetUserID() string {
  1124. if x != nil {
  1125. return x.UserID
  1126. }
  1127. return ""
  1128. }
  1129. func (x *PayOrderInfo) GetOrderID() int64 {
  1130. if x != nil {
  1131. return x.OrderID
  1132. }
  1133. return 0
  1134. }
  1135. func (x *PayOrderInfo) GetMoney() int64 {
  1136. if x != nil {
  1137. return x.Money
  1138. }
  1139. return 0
  1140. }
  1141. func (x *PayOrderInfo) GetType() string {
  1142. if x != nil {
  1143. return x.Type
  1144. }
  1145. return ""
  1146. }
  1147. func (x *PayOrderInfo) GetTransactionID() string {
  1148. if x != nil {
  1149. return x.TransactionID
  1150. }
  1151. return ""
  1152. }
  1153. func (x *PayOrderInfo) GetOpenId() string {
  1154. if x != nil {
  1155. return x.OpenId
  1156. }
  1157. return ""
  1158. }
  1159. func (x *PayOrderInfo) GetDescription() string {
  1160. if x != nil {
  1161. return x.Description
  1162. }
  1163. return ""
  1164. }
  1165. func (x *PayOrderInfo) GetStatus() string {
  1166. if x != nil {
  1167. return x.Status
  1168. }
  1169. return ""
  1170. }
  1171. func (x *PayOrderInfo) GetPayTime() int64 {
  1172. if x != nil {
  1173. return x.PayTime
  1174. }
  1175. return 0
  1176. }
  1177. func (x *PayOrderInfo) GetCreateTime() int64 {
  1178. if x != nil {
  1179. return x.CreateTime
  1180. }
  1181. return 0
  1182. }
  1183. type PayOrderList struct {
  1184. state protoimpl.MessageState
  1185. sizeCache protoimpl.SizeCache
  1186. unknownFields protoimpl.UnknownFields
  1187. List []*PayOrderInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1188. NextId int64 `protobuf:"varint,2,opt,name=nextId,proto3" json:"nextId"`
  1189. }
  1190. func (x *PayOrderList) Reset() {
  1191. *x = PayOrderList{}
  1192. if protoimpl.UnsafeEnabled {
  1193. mi := &file_user_proto_msgTypes[20]
  1194. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1195. ms.StoreMessageInfo(mi)
  1196. }
  1197. }
  1198. func (x *PayOrderList) String() string {
  1199. return protoimpl.X.MessageStringOf(x)
  1200. }
  1201. func (*PayOrderList) ProtoMessage() {}
  1202. func (x *PayOrderList) ProtoReflect() protoreflect.Message {
  1203. mi := &file_user_proto_msgTypes[20]
  1204. if protoimpl.UnsafeEnabled && x != nil {
  1205. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1206. if ms.LoadMessageInfo() == nil {
  1207. ms.StoreMessageInfo(mi)
  1208. }
  1209. return ms
  1210. }
  1211. return mi.MessageOf(x)
  1212. }
  1213. // Deprecated: Use PayOrderList.ProtoReflect.Descriptor instead.
  1214. func (*PayOrderList) Descriptor() ([]byte, []int) {
  1215. return file_user_proto_rawDescGZIP(), []int{20}
  1216. }
  1217. func (x *PayOrderList) GetList() []*PayOrderInfo {
  1218. if x != nil {
  1219. return x.List
  1220. }
  1221. return nil
  1222. }
  1223. func (x *PayOrderList) GetNextId() int64 {
  1224. if x != nil {
  1225. return x.NextId
  1226. }
  1227. return 0
  1228. }
  1229. type FindPayOrderListRequest struct {
  1230. state protoimpl.MessageState
  1231. sizeCache protoimpl.SizeCache
  1232. unknownFields protoimpl.UnknownFields
  1233. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  1234. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  1235. Status string `protobuf:"bytes,3,opt,name=status,proto3" json:"status"`
  1236. }
  1237. func (x *FindPayOrderListRequest) Reset() {
  1238. *x = FindPayOrderListRequest{}
  1239. if protoimpl.UnsafeEnabled {
  1240. mi := &file_user_proto_msgTypes[21]
  1241. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1242. ms.StoreMessageInfo(mi)
  1243. }
  1244. }
  1245. func (x *FindPayOrderListRequest) String() string {
  1246. return protoimpl.X.MessageStringOf(x)
  1247. }
  1248. func (*FindPayOrderListRequest) ProtoMessage() {}
  1249. func (x *FindPayOrderListRequest) ProtoReflect() protoreflect.Message {
  1250. mi := &file_user_proto_msgTypes[21]
  1251. if protoimpl.UnsafeEnabled && x != nil {
  1252. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1253. if ms.LoadMessageInfo() == nil {
  1254. ms.StoreMessageInfo(mi)
  1255. }
  1256. return ms
  1257. }
  1258. return mi.MessageOf(x)
  1259. }
  1260. // Deprecated: Use FindPayOrderListRequest.ProtoReflect.Descriptor instead.
  1261. func (*FindPayOrderListRequest) Descriptor() ([]byte, []int) {
  1262. return file_user_proto_rawDescGZIP(), []int{21}
  1263. }
  1264. func (x *FindPayOrderListRequest) GetNextId() int64 {
  1265. if x != nil {
  1266. return x.NextId
  1267. }
  1268. return 0
  1269. }
  1270. func (x *FindPayOrderListRequest) GetOffset() int64 {
  1271. if x != nil {
  1272. return x.Offset
  1273. }
  1274. return 0
  1275. }
  1276. func (x *FindPayOrderListRequest) GetStatus() string {
  1277. if x != nil {
  1278. return x.Status
  1279. }
  1280. return ""
  1281. }
  1282. type PayCallbackReply struct {
  1283. state protoimpl.MessageState
  1284. sizeCache protoimpl.SizeCache
  1285. unknownFields protoimpl.UnknownFields
  1286. Result []byte `protobuf:"bytes,1,opt,name=result,proto3" json:"result"`
  1287. }
  1288. func (x *PayCallbackReply) Reset() {
  1289. *x = PayCallbackReply{}
  1290. if protoimpl.UnsafeEnabled {
  1291. mi := &file_user_proto_msgTypes[22]
  1292. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1293. ms.StoreMessageInfo(mi)
  1294. }
  1295. }
  1296. func (x *PayCallbackReply) String() string {
  1297. return protoimpl.X.MessageStringOf(x)
  1298. }
  1299. func (*PayCallbackReply) ProtoMessage() {}
  1300. func (x *PayCallbackReply) ProtoReflect() protoreflect.Message {
  1301. mi := &file_user_proto_msgTypes[22]
  1302. if protoimpl.UnsafeEnabled && x != nil {
  1303. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1304. if ms.LoadMessageInfo() == nil {
  1305. ms.StoreMessageInfo(mi)
  1306. }
  1307. return ms
  1308. }
  1309. return mi.MessageOf(x)
  1310. }
  1311. // Deprecated: Use PayCallbackReply.ProtoReflect.Descriptor instead.
  1312. func (*PayCallbackReply) Descriptor() ([]byte, []int) {
  1313. return file_user_proto_rawDescGZIP(), []int{22}
  1314. }
  1315. func (x *PayCallbackReply) GetResult() []byte {
  1316. if x != nil {
  1317. return x.Result
  1318. }
  1319. return nil
  1320. }
  1321. var File_user_proto protoreflect.FileDescriptor
  1322. var file_user_proto_rawDesc = []byte{
  1323. 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x08, 0x61, 0x70,
  1324. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
  1325. 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70,
  1326. 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f,
  1327. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  1328. 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  1329. 0x75, 0x66, 0x2f, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
  1330. 0x13, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x70,
  1331. 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1332. 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x61,
  1333. 0x70, 0x69, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2f, 0x73, 0x74,
  1334. 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x7d,
  1335. 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x46, 0x72, 0x65, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x24, 0x0a,
  1336. 0x0d, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4e, 0x75, 0x6d, 0x18, 0x01,
  1337. 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70,
  1338. 0x4e, 0x75, 0x6d, 0x12, 0x26, 0x0a, 0x0e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72,
  1339. 0x69, 0x70, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x63, 0x72, 0x65,
  1340. 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4e, 0x75, 0x6d, 0x12, 0x20, 0x0a, 0x0b, 0x6d,
  1341. 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,
  1342. 0x52, 0x0b, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x4e, 0x75, 0x6d, 0x22, 0x76, 0x0a,
  1343. 0x11, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65,
  1344. 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x18, 0x04, 0x20,
  1345. 0x01, 0x28, 0x03, 0x52, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x12, 0x2d, 0x0a, 0x07,
  1346. 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e,
  1347. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61,
  1348. 0x67, 0x65, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d,
  1349. 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x73,
  1350. 0x67, 0x54, 0x79, 0x70, 0x65, 0x22, 0x32, 0x0a, 0x16, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c,
  1351. 0x6f, 0x6f, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  1352. 0x18, 0x0a, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,
  1353. 0x52, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x22, 0x46, 0x0a, 0x14, 0x55, 0x73, 0x65,
  1354. 0x72, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1355. 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,
  1356. 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66,
  1357. 0x73, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65,
  1358. 0x74, 0x22, 0x2e, 0x0a, 0x12, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70,
  1359. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70,
  1360. 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49,
  1361. 0x64, 0x22, 0x48, 0x0a, 0x12, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70,
  1362. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x65, 0x78, 0x74, 0x18,
  1363. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x65, 0x78, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x70,
  1364. 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  1365. 0x0a, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x22, 0x45, 0x0a, 0x1d, 0x46,
  1366. 0x69, 0x6e, 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x41, 0x76, 0x61, 0x74, 0x61,
  1367. 0x72, 0x41, 0x6e, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x10, 0x0a, 0x03,
  1368. 0x6e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6e, 0x75, 0x6d, 0x12, 0x12,
  1369. 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x6c, 0x69,
  1370. 0x73, 0x74, 0x22, 0x62, 0x0a, 0x1e, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d,
  1371. 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71,
  1372. 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01,
  1373. 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06,
  1374. 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66,
  1375. 0x66, 0x73, 0x65, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28,
  1376. 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x22, 0x45, 0x0a, 0x13, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65,
  1377. 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2e, 0x0a,
  1378. 0x12, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74,
  1379. 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x12, 0x52, 0x65, 0x63, 0x68, 0x61,
  1380. 0x72, 0x67, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x22, 0x3a, 0x0a,
  1381. 0x0c, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2a, 0x0a,
  1382. 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70,
  1383. 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x49,
  1384. 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xa4, 0x01, 0x0a, 0x0c, 0x52, 0x65,
  1385. 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
  1386. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x72,
  1387. 0x69, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65,
  1388. 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,
  1389. 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x67, 0x69, 0x76, 0x65,
  1390. 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x67, 0x69,
  1391. 0x76, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63,
  1392. 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64,
  1393. 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69,
  1394. 0x74, 0x6c, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65,
  1395. 0x22, 0x65, 0x0a, 0x11, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53,
  1396. 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x30, 0x0a, 0x13, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73,
  1397. 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01,
  1398. 0x28, 0x08, 0x52, 0x13, 0x69, 0x73, 0x46, 0x69, 0x6e, 0x69, 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f,
  1399. 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x73, 0x47, 0x65, 0x74,
  1400. 0x41, 0x77, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x47,
  1401. 0x65, 0x74, 0x41, 0x77, 0x61, 0x72, 0x64, 0x22, 0x35, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x42,
  1402. 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  1403. 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74,
  1404. 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x22, 0x5b,
  1405. 0x0a, 0x15, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x69,
  1406. 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x2a, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18,
  1407. 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72,
  1408. 0x2e, 0x55, 0x73, 0x65, 0x72, 0x43, 0x68, 0x61, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c,
  1409. 0x69, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20,
  1410. 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x22, 0x9e, 0x02, 0x0a, 0x0c,
  1411. 0x55, 0x73, 0x65, 0x72, 0x43, 0x68, 0x61, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1a, 0x0a, 0x08,
  1412. 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  1413. 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x6e, 0x72, 0x65,
  1414. 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x75, 0x6e, 0x72,
  1415. 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x43, 0x6f,
  1416. 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6c, 0x61, 0x73,
  1417. 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x61, 0x73, 0x74,
  1418. 0x54, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74,
  1419. 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x6c, 0x69, 0x6b, 0x65, 0x61, 0x62, 0x69, 0x6c,
  1420. 0x69, 0x74, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6c, 0x69, 0x6b, 0x65, 0x61,
  1421. 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x08, 0x20,
  1422. 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74,
  1423. 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61,
  1424. 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61,
  1425. 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61,
  1426. 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52,
  1427. 0x03, 0x61, 0x67, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x18, 0x0c,
  1428. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64, 0x22, 0x8c, 0x03, 0x0a,
  1429. 0x08, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
  1430. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63,
  1431. 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63,
  1432. 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55,
  1433. 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72,
  1434. 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03,
  1435. 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01,
  1436. 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74,
  1437. 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d,
  1438. 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a,
  1439. 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63,
  1440. 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74,
  1441. 0x18, 0x08, 0x20, 0x03, 0x28, 0x03, 0x52, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12,
  1442. 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x09, 0x20, 0x01,
  1443. 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x26, 0x0a,
  1444. 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18,
  1445. 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65,
  1446. 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63,
  1447. 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63,
  1448. 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52,
  1449. 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x0d, 0x20,
  1450. 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65,
  1451. 0x72, 0x49, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49,
  1452. 0x64, 0x12, 0x18, 0x0a, 0x07, 0x69, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x18, 0x0f, 0x20, 0x01,
  1453. 0x28, 0x08, 0x52, 0x07, 0x69, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x22, 0x1e, 0x0a, 0x0a, 0x4b,
  1454. 0x65, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79,
  1455. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x22, 0x8e, 0x01, 0x0a, 0x10,
  1456. 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x61, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1457. 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  1458. 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02,
  1459. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70,
  1460. 0x65, 0x6e, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e,
  1461. 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
  1462. 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70,
  1463. 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x18, 0x05,
  1464. 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x22, 0x55, 0x0a, 0x07,
  1465. 0x50, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x30, 0x0a, 0x07, 0x70, 0x61, 0x79, 0x49, 0x6e,
  1466. 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  1467. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65,
  1468. 0x52, 0x07, 0x70, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x72, 0x64,
  1469. 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6f, 0x72, 0x64, 0x65,
  1470. 0x72, 0x49, 0x64, 0x22, 0x9c, 0x02, 0x0a, 0x0c, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72,
  1471. 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x44, 0x18, 0x01,
  1472. 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12, 0x18, 0x0a, 0x07,
  1473. 0x6f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6f,
  1474. 0x72, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18,
  1475. 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x12, 0x12, 0x0a, 0x04,
  1476. 0x74, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65,
  1477. 0x12, 0x24, 0x0a, 0x0d, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49,
  1478. 0x44, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63,
  1479. 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64,
  1480. 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6f, 0x70, 0x65, 0x6e, 0x49, 0x64, 0x12, 0x20,
  1481. 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20,
  1482. 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  1483. 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09,
  1484. 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x61, 0x79, 0x54,
  1485. 0x69, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x70, 0x61, 0x79, 0x54, 0x69,
  1486. 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65,
  1487. 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69,
  1488. 0x6d, 0x65, 0x22, 0x52, 0x0a, 0x0c, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69,
  1489. 0x73, 0x74, 0x12, 0x2a, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,
  1490. 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x79, 0x4f,
  1491. 0x72, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x16,
  1492. 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  1493. 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x22, 0x61, 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x61,
  1494. 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1495. 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  1496. 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66,
  1497. 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65,
  1498. 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28,
  1499. 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x2a, 0x0a, 0x10, 0x50, 0x61, 0x79,
  1500. 0x43, 0x61, 0x6c, 0x6c, 0x62, 0x61, 0x63, 0x6b, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x16, 0x0a,
  1501. 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x72,
  1502. 0x65, 0x73, 0x75, 0x6c, 0x74, 0x32, 0x91, 0x37, 0x0a, 0x04, 0x55, 0x73, 0x65, 0x72, 0x12, 0x7e,
  1503. 0x0a, 0x15, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f,
  1504. 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1505. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x72,
  1506. 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e,
  1507. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  1508. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f,
  1509. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x2f,
  1510. 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0x54,
  1511. 0x0a, 0x0b, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x2e,
  1512. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  1513. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72,
  1514. 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x19, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  1515. 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66,
  1516. 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x40, 0x0a, 0x0c, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x44,
  1517. 0x42, 0x4d, 0x73, 0x67, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  1518. 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a,
  1519. 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72,
  1520. 0x73, 0x6f, 0x6e, 0x4d, 0x73, 0x67, 0x12, 0x69, 0x0a, 0x0d, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68,
  1521. 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1522. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f,
  1523. 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  1524. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  1525. 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  1526. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x64, 0x65, 0x2f, 0x73, 0x65, 0x6e, 0x64, 0x3a, 0x01,
  1527. 0x2a, 0x12, 0x6c, 0x0a, 0x0e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43,
  1528. 0x6f, 0x64, 0x65, 0x12, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1529. 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x52,
  1530. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  1531. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1f,
  1532. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65,
  1533. 0x72, 0x2f, 0x63, 0x6f, 0x64, 0x65, 0x2f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12,
  1534. 0x94, 0x01, 0x0a, 0x1e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72,
  1535. 0x74, 0x6e, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68,
  1536. 0x69, 0x70, 0x12, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  1537. 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x2d,
  1538. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x55,
  1539. 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x73, 0x52, 0x65, 0x6c, 0x61,
  1540. 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x27, 0x82,
  1541. 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  1542. 0x2f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x2f, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73,
  1543. 0x68, 0x69, 0x70, 0x3a, 0x01, 0x2a, 0x12, 0x6e, 0x0a, 0x14, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
  1544. 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x6f, 0x6f, 0x6d, 0x12, 0x1f,
  1545. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x72, 0x65, 0x61,
  1546. 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a,
  1547. 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x52,
  1548. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61,
  1549. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x2f, 0x72,
  1550. 0x6f, 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72,
  1551. 0x74, 0x6e, 0x65, 0x72, 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14,
  1552. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x71,
  1553. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  1554. 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61,
  1555. 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15,
  1556. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x69, 0x72, 0x63, 0x6c, 0x65,
  1557. 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x5b, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72,
  1558. 0x47, 0x65, 0x74, 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x17, 0x2e, 0x61, 0x70,
  1559. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50,
  1560. 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  1561. 0x6e, 0x2e, 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x19, 0x82, 0xd3, 0xe4, 0x93,
  1562. 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x68, 0x6f,
  1563. 0x6d, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x45, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65,
  1564. 0x72, 0x44, 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1565. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x4c, 0x69, 0x73,
  1566. 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50,
  1567. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x71, 0x0a, 0x0c,
  1568. 0x46, 0x69, 0x6e, 0x64, 0x4c, 0x6f, 0x6f, 0x6b, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61,
  1569. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61,
  1570. 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1571. 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41,
  1572. 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  1573. 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  1574. 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12,
  1575. 0x71, 0x0a, 0x0c, 0x46, 0x69, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12,
  1576. 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73,
  1577. 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61,
  1578. 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f,
  1579. 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70,
  1580. 0x6c, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69,
  1581. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x3a,
  1582. 0x01, 0x2a, 0x12, 0x73, 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x4c,
  1583. 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1584. 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1585. 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63,
  1586. 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73,
  1587. 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14,
  1588. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6c,
  1589. 0x69, 0x6b, 0x65, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x86, 0x01, 0x0a, 0x1f, 0x47, 0x65, 0x74, 0x4c,
  1590. 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73,
  1591. 0x74, 0x69, 0x63, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f,
  1592. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  1593. 0x70, 0x74, 0x79, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73,
  1594. 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65,
  1595. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x22, 0x82, 0xd3,
  1596. 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  1597. 0x6e, 0x75, 0x6d, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x5f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a,
  1598. 0x12, 0x5c, 0x0a, 0x06, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x12, 0x15, 0x2e, 0x61, 0x70, 0x69,
  1599. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65,
  1600. 0x71, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x57,
  1601. 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x1f, 0x82,
  1602. 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x77, 0x78, 0x2f, 0x6a,
  1603. 0x73, 0x73, 0x64, 0x6b, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x5f,
  1604. 0x0a, 0x10, 0x46, 0x69, 0x6e, 0x64, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x79, 0x53,
  1605. 0x65, 0x78, 0x12, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  1606. 0x53, 0x65, 0x78, 0x52, 0x65, 0x71, 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  1607. 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79,
  1608. 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  1609. 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x74, 0x61, 0x67, 0x3a, 0x01, 0x2a, 0x12,
  1610. 0x76, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73,
  1611. 0x74, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c,
  1612. 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x32, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  1613. 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x63,
  1614. 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74,
  1615. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f,
  1616. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6f, 0x6e,
  1617. 0x6c, 0x69, 0x6e, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x81, 0x01, 0x0a, 0x1a, 0x46, 0x69, 0x6e, 0x64,
  1618. 0x57, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x52, 0x6f,
  1619. 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  1620. 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75,
  1621. 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55,
  1622. 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52,
  1623. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61,
  1624. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63, 0x68, 0x61,
  1625. 0x74, 0x2f, 0x77, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0x7d, 0x0a, 0x18, 0x46,
  1626. 0x69, 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x52,
  1627. 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1628. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71,
  1629. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e,
  1630. 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x69, 0x73, 0x74,
  1631. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f,
  1632. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63, 0x68,
  1633. 0x61, 0x74, 0x2f, 0x6f, 0x76, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x6f, 0x0a, 0x1b, 0x55, 0x73,
  1634. 0x65, 0x72, 0x47, 0x65, 0x74, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x6b, 0x65, 0x64,
  1635. 0x41, 0x6e, 0x64, 0x4c, 0x6f, 0x6f, 0x6b, 0x65, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1636. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72,
  1637. 0x61, 0x6d, 0x1a, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  1638. 0x4c, 0x6f, 0x6f, 0x6b, 0x65, 0x64, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x4e, 0x75,
  1639. 0x6d, 0x22, 0x18, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x12, 0x22, 0x0d, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  1640. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x5d, 0x0a, 0x0e, 0x47,
  1641. 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x16, 0x2e,
  1642. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  1643. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72,
  1644. 0x2e, 0x55, 0x73, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x22, 0x1c, 0x82, 0xd3,
  1645. 0xe4, 0x93, 0x02, 0x16, 0x22, 0x11, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  1646. 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x69, 0x0a, 0x0e, 0x47, 0x65,
  1647. 0x74, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x6f, 0x6b, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67,
  1648. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  1649. 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69,
  1650. 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  1651. 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12,
  1652. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x2f, 0x6e,
  1653. 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x7e, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61,
  1654. 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x25, 0x2e, 0x61, 0x70,
  1655. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61,
  1656. 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65,
  1657. 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  1658. 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  1659. 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70,
  1660. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x72, 0x65, 0x63, 0x6f,
  1661. 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x72, 0x0a, 0x0f, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61,
  1662. 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x12, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1663. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f,
  1664. 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x61,
  1665. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f,
  1666. 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f,
  1667. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x72, 0x6f,
  1668. 0x6f, 0x6d, 0x2f, 0x6d, 0x73, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x59, 0x0a, 0x0d, 0x47, 0x65, 0x74,
  1669. 0x55, 0x73, 0x65, 0x72, 0x49, 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69,
  1670. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61,
  1671. 0x72, 0x61, 0x6d, 0x1a, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1672. 0x2e, 0x49, 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x22, 0x1b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x22,
  1673. 0x10, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x73, 0x6c, 0x69, 0x6b,
  1674. 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x15, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x69,
  1675. 0x73, 0x68, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x2e,
  1676. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  1677. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  1678. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x27, 0x82,
  1679. 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  1680. 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x66, 0x69, 0x6e,
  1681. 0x69, 0x73, 0x68, 0x3a, 0x01, 0x2a, 0x12, 0x75, 0x0a, 0x15, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e,
  1682. 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12,
  1683. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  1684. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
  1685. 0x65, 0x72, 0x2e, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74,
  1686. 0x61, 0x74, 0x75, 0x73, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61,
  1687. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74,
  1688. 0x69, 0x6f, 0x6e, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a,
  1689. 0x17, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74,
  1690. 0x69, 0x6f, 0x6e, 0x41, 0x77, 0x61, 0x72, 0x64, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  1691. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  1692. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  1693. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20,
  1694. 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x69, 0x6e, 0x66, 0x6f,
  1695. 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x61, 0x77, 0x61, 0x72, 0x64, 0x3a, 0x01, 0x2a,
  1696. 0x12, 0x64, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x47, 0x65, 0x74, 0x43, 0x68, 0x61, 0x74, 0x43,
  1697. 0x61, 0x72, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1698. 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x18, 0x2e, 0x61,
  1699. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x43, 0x61,
  1700. 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13,
  1701. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x63,
  1702. 0x61, 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x56, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69,
  1703. 0x6b, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  1704. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  1705. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  1706. 0x70, 0x74, 0x79, 0x22, 0x19, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x22, 0x0e, 0x2f, 0x61, 0x70,
  1707. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x5a,
  1708. 0x0a, 0x0a, 0x55, 0x73, 0x65, 0x72, 0x55, 0x6e, 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x17, 0x2e, 0x61,
  1709. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  1710. 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  1711. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1b, 0x82,
  1712. 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x22, 0x10, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  1713. 0x2f, 0x75, 0x6e, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x65, 0x0a, 0x10, 0x55, 0x6e,
  1714. 0x6c, 0x6f, 0x63, 0x6b, 0x4c, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x12, 0x17,
  1715. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73,
  1716. 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  1717. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
  1718. 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  1719. 0x65, 0x72, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x2f, 0x75, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x3a, 0x01,
  1720. 0x2a, 0x12, 0x46, 0x0a, 0x13, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x64, 0x75,
  1721. 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1722. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61,
  1723. 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1724. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x4c, 0x0a, 0x19, 0x4c, 0x6f, 0x6f,
  1725. 0x6b, 0x42, 0x61, 0x63, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65,
  1726. 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  1727. 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a,
  1728. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  1729. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x4a, 0x0a, 0x17, 0x43, 0x72, 0x65, 0x61, 0x74,
  1730. 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64,
  1731. 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  1732. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  1733. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  1734. 0x70, 0x74, 0x79, 0x12, 0x49, 0x0a, 0x16, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69,
  1735. 0x70, 0x52, 0x65, 0x64, 0x75, 0x63, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e,
  1736. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f,
  1737. 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  1738. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x44,
  1739. 0x0a, 0x11, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x43, 0x72, 0x65,
  1740. 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1741. 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67,
  1742. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  1743. 0x6d, 0x70, 0x74, 0x79, 0x12, 0x46, 0x0a, 0x13, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x50, 0x69,
  1744. 0x63, 0x74, 0x75, 0x72, 0x65, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17, 0x2e, 0x61, 0x70,
  1745. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50,
  1746. 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  1747. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12, 0x41, 0x0a, 0x0e,
  1748. 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x17,
  1749. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73,
  1750. 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  1751. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x12,
  1752. 0x64, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x65, 0x6d, 0x65, 0x42, 0x79, 0x54, 0x79, 0x70,
  1753. 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d,
  1754. 0x65, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69,
  1755. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x4c, 0x69, 0x73, 0x74,
  1756. 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  1757. 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f, 0x74, 0x79,
  1758. 0x70, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61,
  1759. 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  1760. 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69,
  1761. 0x63, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1762. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x4c,
  1763. 0x69, 0x73, 0x74, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70,
  1764. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x74, 0x6f, 0x70, 0x69,
  1765. 0x63, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x0a, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x65,
  1766. 0x6d, 0x65, 0x12, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  1767. 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x75, 0x6d, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1768. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x54, 0x65, 0x78,
  1769. 0x74, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f,
  1770. 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6d, 0x65,
  1771. 0x6d, 0x65, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x75, 0x0a, 0x12,
  1772. 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x53, 0x77, 0x69, 0x66, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61,
  1773. 0x67, 0x65, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  1774. 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x75, 0x6d, 0x41, 0x6e, 0x64, 0x53, 0x65, 0x78, 0x1a,
  1775. 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d,
  1776. 0x6d, 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x26, 0x82, 0xd3, 0xe4,
  1777. 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66,
  1778. 0x69, 0x6e, 0x64, 0x2f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d,
  1779. 0x3a, 0x01, 0x2a, 0x12, 0x68, 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x65, 0x6d, 0x65, 0x54,
  1780. 0x69, 0x74, 0x6c, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  1781. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x19, 0x2e, 0x61,
  1782. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69,
  1783. 0x74, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22,
  1784. 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f,
  1785. 0x6d, 0x65, 0x6d, 0x65, 0x2f, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x65, 0x0a,
  1786. 0x10, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x74, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x43, 0x68, 0x61,
  1787. 0x74, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52,
  1788. 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67,
  1789. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  1790. 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61,
  1791. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x65, 0x74, 0x2f, 0x62, 0x6c, 0x61, 0x63,
  1792. 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x65, 0x0a, 0x0e, 0x55, 0x73, 0x65, 0x72, 0x44, 0x65, 0x6c, 0x65,
  1793. 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  1794. 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1795. 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1796. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  1797. 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61,
  1798. 0x74, 0x2f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x12, 0x46,
  1799. 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x54, 0x69, 0x74, 0x6c,
  1800. 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1801. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1802. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65,
  1803. 0x4c, 0x69, 0x73, 0x74, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61,
  1804. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x63, 0x68, 0x61,
  1805. 0x74, 0x2f, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x5f, 0x0a, 0x0c, 0x55, 0x73,
  1806. 0x65, 0x72, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69,
  1807. 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72,
  1808. 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x11, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1809. 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1d, 0x82, 0xd3,
  1810. 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  1811. 0x72, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x10, 0x46,
  1812. 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12,
  1813. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  1814. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73,
  1815. 0x65, 0x72, 0x2e, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22,
  1816. 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  1817. 0x65, 0x72, 0x2f, 0x72, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x2f, 0x6c, 0x69, 0x73, 0x74,
  1818. 0x3a, 0x01, 0x2a, 0x12, 0x67, 0x0a, 0x0b, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x61, 0x79, 0x4c, 0x69,
  1819. 0x73, 0x74, 0x12, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x69,
  1820. 0x6e, 0x64, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  1821. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72,
  1822. 0x2e, 0x50, 0x61, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x1d, 0x82,
  1823. 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  1824. 0x2f, 0x70, 0x61, 0x79, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x5c, 0x0a, 0x06,
  1825. 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  1826. 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65,
  1827. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  1828. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1b, 0x82,
  1829. 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x22, 0x10, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72,
  1830. 0x2f, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x58, 0x0a, 0x17, 0x46, 0x69,
  1831. 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x44,
  1832. 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  1833. 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64,
  1834. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1835. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x52, 0x65, 0x70,
  1836. 0x6c, 0x79, 0x22, 0x00, 0x12, 0x8e, 0x01, 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63,
  1837. 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74,
  1838. 0x12, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64,
  1839. 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c,
  1840. 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69,
  1841. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e,
  1842. 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79,
  1843. 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  1844. 0x73, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65,
  1845. 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x80, 0x01, 0x0a, 0x16, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x76,
  1846. 0x65, 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72,
  1847. 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  1848. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1849. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x65,
  1850. 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x52, 0x65, 0x70, 0x6c,
  1851. 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  1852. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6f, 0x76, 0x65, 0x72, 0x2f, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72,
  1853. 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x82, 0x01, 0x0a, 0x18, 0x46, 0x69, 0x6e,
  1854. 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x41,
  1855. 0x6e, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  1856. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x27, 0x2e,
  1857. 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x61, 0x74,
  1858. 0x63, 0x68, 0x69, 0x6e, 0x67, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x41, 0x6e, 0x64, 0x4e, 0x75,
  1859. 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a,
  1860. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69,
  1861. 0x6e, 0x67, 0x2f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x63, 0x0a,
  1862. 0x0b, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1c, 0x2e, 0x61,
  1863. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63,
  1864. 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69,
  1865. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x22,
  1866. 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  1867. 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x3a,
  1868. 0x01, 0x2a, 0x12, 0x66, 0x0a, 0x0b, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69,
  1869. 0x70, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x44, 0x65, 0x6c,
  1870. 0x65, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  1871. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  1872. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22,
  1873. 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70,
  1874. 0x2f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6b, 0x0a, 0x0b, 0x46, 0x69,
  1875. 0x6e, 0x64, 0x4d, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1876. 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72,
  1877. 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1878. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c,
  1879. 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  1880. 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f,
  1881. 0x73, 0x65, 0x6c, 0x66, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4f,
  1882. 0x74, 0x68, 0x65, 0x72, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1883. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70,
  1884. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1885. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  1886. 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73,
  1887. 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6f, 0x74,
  1888. 0x68, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x77, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65,
  1889. 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1e, 0x2e, 0x61,
  1890. 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64,
  1891. 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61,
  1892. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52,
  1893. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61,
  1894. 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x66, 0x69,
  1895. 0x6e, 0x64, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12,
  1896. 0x6c, 0x0a, 0x0f, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x6f, 0x6f, 0x6b, 0x53, 0x63, 0x72,
  1897. 0x69, 0x70, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x50, 0x65,
  1898. 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x6f, 0x6f, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71,
  1899. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  1900. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1f, 0x82, 0xd3,
  1901. 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f,
  1902. 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x6a, 0x0a,
  1903. 0x13, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x4c, 0x6f, 0x6f, 0x6b,
  1904. 0x42, 0x61, 0x63, 0x6b, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  1905. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x15, 0x2e, 0x61,
  1906. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49,
  1907. 0x6e, 0x66, 0x6f, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70,
  1908. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x6f, 0x6f,
  1909. 0x6b, 0x2f, 0x62, 0x61, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a, 0x10, 0x50, 0x65, 0x72,
  1910. 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1b, 0x2e,
  1911. 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63,
  1912. 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69,
  1913. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f,
  1914. 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15,
  1915. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f,
  1916. 0x72, 0x65, 0x70, 0x6c, 0x79, 0x3a, 0x01, 0x2a, 0x12, 0x79, 0x0a, 0x11, 0x55, 0x70, 0x64, 0x61,
  1917. 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x12, 0x24, 0x2e,
  1918. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74,
  1919. 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75,
  1920. 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  1921. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x26, 0x82, 0xd3, 0xe4,
  1922. 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x73,
  1923. 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x61, 0x73, 0x74, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
  1924. 0x3a, 0x01, 0x2a, 0x12, 0x63, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77,
  1925. 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  1926. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x14, 0x2e, 0x61,
  1927. 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x57, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x49, 0x6e,
  1928. 0x66, 0x6f, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69,
  1929. 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x77, 0x69, 0x6e, 0x64, 0x6f,
  1930. 0x77, 0x2f, 0x67, 0x65, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x5e, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55,
  1931. 0x73, 0x65, 0x72, 0x46, 0x72, 0x65, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  1932. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  1933. 0x74, 0x79, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x73,
  1934. 0x65, 0x72, 0x46, 0x72, 0x65, 0x65, 0x4e, 0x75, 0x6d, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  1935. 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x66, 0x72, 0x65,
  1936. 0x65, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x6f, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x52,
  1937. 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x12, 0x12, 0x2e,
  1938. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x78, 0x52, 0x65,
  1939. 0x71, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x47, 0x65, 0x74,
  1940. 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x52, 0x65,
  1941. 0x70, 0x6c, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70,
  1942. 0x69, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x2f, 0x6d, 0x61,
  1943. 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x3a, 0x01, 0x2a, 0x42, 0x3d, 0x0a, 0x08, 0x61, 0x70, 0x69,
  1944. 0x2e, 0x75, 0x73, 0x65, 0x72, 0x50, 0x01, 0x5a, 0x2f, 0x67, 0x69, 0x74, 0x2e, 0x69, 0x6b, 0x75,
  1945. 0x62, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2f, 0x70,
  1946. 0x77, 0x2d, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x75,
  1947. 0x73, 0x65, 0x72, 0x3b, 0x75, 0x73, 0x65, 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  1948. }
  1949. var (
  1950. file_user_proto_rawDescOnce sync.Once
  1951. file_user_proto_rawDescData = file_user_proto_rawDesc
  1952. )
  1953. func file_user_proto_rawDescGZIP() []byte {
  1954. file_user_proto_rawDescOnce.Do(func() {
  1955. file_user_proto_rawDescData = protoimpl.X.CompressGZIP(file_user_proto_rawDescData)
  1956. })
  1957. return file_user_proto_rawDescData
  1958. }
  1959. var file_user_proto_msgTypes = make([]protoimpl.MessageInfo, 23)
  1960. var file_user_proto_goTypes = []interface{}{
  1961. (*UserFreeNum)(nil), // 0: api.user.UserFreeNum
  1962. (*ReplyScripRequest)(nil), // 1: api.user.ReplyScripRequest
  1963. (*PersonLookScripRequest)(nil), // 2: api.user.PersonLookScripRequest
  1964. (*UserFindScripRequest)(nil), // 3: api.user.UserFindScripRequest
  1965. (*DeleteScripRequest)(nil), // 4: api.user.DeleteScripRequest
  1966. (*CreateScripRequest)(nil), // 5: api.user.CreateScripRequest
  1967. (*FindMatchingAvatarAndNumReply)(nil), // 6: api.user.FindMatchingAvatarAndNumReply
  1968. (*FindRecommendPersonListRequest)(nil), // 7: api.user.FindRecommendPersonListRequest
  1969. (*UserRechargeRequest)(nil), // 8: api.user.UserRechargeRequest
  1970. (*RechargeList)(nil), // 9: api.user.RechargeList
  1971. (*RechargeInfo)(nil), // 10: api.user.RechargeInfo
  1972. (*InformationStatus)(nil), // 11: api.user.InformationStatus
  1973. (*UserBalance)(nil), // 12: api.user.UserBalance
  1974. (*UserFindChatListReply)(nil), // 13: api.user.UserFindChatListReply
  1975. (*UserChatInfo)(nil), // 14: api.user.UserChatInfo
  1976. (*UserInfo)(nil), // 15: api.user.UserInfo
  1977. (*KeyRequest)(nil), // 16: api.user.KeyRequest
  1978. (*CreatePayRequest)(nil), // 17: api.user.CreatePayRequest
  1979. (*PayInfo)(nil), // 18: api.user.PayInfo
  1980. (*PayOrderInfo)(nil), // 19: api.user.PayOrderInfo
  1981. (*PayOrderList)(nil), // 20: api.user.PayOrderList
  1982. (*FindPayOrderListRequest)(nil), // 21: api.user.FindPayOrderListRequest
  1983. (*PayCallbackReply)(nil), // 22: api.user.PayCallbackReply
  1984. (*common.Message)(nil), // 23: api.common.Message
  1985. (*structpb.Value)(nil), // 24: google.protobuf.Value
  1986. (*common.UpdateInformationRequest)(nil), // 25: api.common.UpdateInformationRequest
  1987. (*emptypb.Empty)(nil), // 26: google.protobuf.Empty
  1988. (*common.PersonIDParam)(nil), // 27: api.common.PersonIDParam
  1989. (*common.SendPhoneCodeRequest)(nil), // 28: api.common.SendPhoneCodeRequest
  1990. (*common.CheckPhoneCodeRequest)(nil), // 29: api.common.CheckPhoneCodeRequest
  1991. (*common.PartnerIDParam)(nil), // 30: api.common.PartnerIDParam
  1992. (*common.CreateChatRoomParam)(nil), // 31: api.common.CreateChatRoomParam
  1993. (*common.PersonParam)(nil), // 32: api.common.PersonParam
  1994. (*common.PersonIDList)(nil), // 33: api.common.PersonIDList
  1995. (*common.ListPageRequest)(nil), // 34: api.common.ListPageRequest
  1996. (*common.WxConfReq)(nil), // 35: api.common.WxConfReq
  1997. (*common.SexReq)(nil), // 36: api.common.SexReq
  1998. (*common.ListPage2Request)(nil), // 37: api.common.ListPage2Request
  1999. (*common.FindChatRecordListRequest)(nil), // 38: api.common.FindChatRecordListRequest
  2000. (*common.FindChatRoomMsgRequest)(nil), // 39: api.common.FindChatRoomMsgRequest
  2001. (*common.MemeRequest)(nil), // 40: api.common.MemeRequest
  2002. (*common.FindChatTopicRequest)(nil), // 41: api.common.FindChatTopicRequest
  2003. (*common.RandomNum)(nil), // 42: api.common.RandomNum
  2004. (*common.RandomNumAndSex)(nil), // 43: api.common.RandomNumAndSex
  2005. (*common.RoomIDRequest)(nil), // 44: api.common.RoomIDRequest
  2006. (*common.ReportChatRequest)(nil), // 45: api.common.ReportChatRequest
  2007. (*common.FindRecommendRequest)(nil), // 46: api.common.FindRecommendRequest
  2008. (*common.FindScripRequest)(nil), // 47: api.common.FindScripRequest
  2009. (*common.UpdateLastScripIDRequest)(nil), // 48: api.common.UpdateLastScripIDRequest
  2010. (*common.PersonMsg)(nil), // 49: api.common.PersonMsg
  2011. (*chat.CheckUserPartnerIsRelationshipReply)(nil), // 50: api.chat.CheckUserPartnerIsRelationshipReply
  2012. (*chat.RoomReply)(nil), // 51: api.chat.RoomReply
  2013. (*common.AddFriendMessageInfo)(nil), // 52: api.common.AddFriendMessageInfo
  2014. (*common.HomeInfo)(nil), // 53: api.common.HomeInfo
  2015. (*common.PersonDBReply)(nil), // 54: api.common.PersonDBReply
  2016. (*statistics.LookAndLikeListReply)(nil), // 55: api.statistics.LookAndLikeListReply
  2017. (*statistics.LookAndLikeMessageReply)(nil), // 56: api.statistics.LookAndLikeMessageReply
  2018. (*common.WxConfResponse)(nil), // 57: api.common.WxConfResponse
  2019. (*common.TagListReply)(nil), // 58: api.common.TagListReply
  2020. (*common.RecommendPersonListReply)(nil), // 59: api.common.RecommendPersonListReply
  2021. (*common.LookedAndLikedNum)(nil), // 60: api.common.LookedAndLikedNum
  2022. (*statistics.LookMessageReply)(nil), // 61: api.statistics.LookMessageReply
  2023. (*common.ChatRecordListReply)(nil), // 62: api.common.ChatRecordListReply
  2024. (*common.ChatRoomMsg)(nil), // 63: api.common.ChatRoomMsg
  2025. (*common.IsLike)(nil), // 64: api.common.IsLike
  2026. (*common.ChatCardInfo)(nil), // 65: api.common.ChatCardInfo
  2027. (*common.MemeList)(nil), // 66: api.common.MemeList
  2028. (*common.ChatTopicList)(nil), // 67: api.common.ChatTopicList
  2029. (*common.CommonTextList)(nil), // 68: api.common.CommonTextList
  2030. (*common.MemeTitleList)(nil), // 69: api.common.MemeTitleList
  2031. (*common.FindOverSevenDayAvatarReply)(nil), // 70: api.common.FindOverSevenDayAvatarReply
  2032. (*common.ScripID)(nil), // 71: api.common.ScripID
  2033. (*common.ScripReply)(nil), // 72: api.common.ScripReply
  2034. (*common.ScripInfo)(nil), // 73: api.common.ScripInfo
  2035. (*common.ChatRecordInfo)(nil), // 74: api.common.ChatRecordInfo
  2036. (*chat.WindowInfo)(nil), // 75: api.chat.WindowInfo
  2037. (*chat.GetRandomMatchingReply)(nil), // 76: api.chat.GetRandomMatchingReply
  2038. }
  2039. var file_user_proto_depIdxs = []int32{
  2040. 23, // 0: api.user.ReplyScripRequest.message:type_name -> api.common.Message
  2041. 10, // 1: api.user.RechargeList.list:type_name -> api.user.RechargeInfo
  2042. 14, // 2: api.user.UserFindChatListReply.list:type_name -> api.user.UserChatInfo
  2043. 24, // 3: api.user.PayInfo.payInfo:type_name -> google.protobuf.Value
  2044. 19, // 4: api.user.PayOrderList.list:type_name -> api.user.PayOrderInfo
  2045. 25, // 5: api.user.User.UpdateUserInformation:input_type -> api.common.UpdateInformationRequest
  2046. 26, // 6: api.user.User.GetUserInfo:input_type -> google.protobuf.Empty
  2047. 27, // 7: api.user.User.GetUserDBMsg:input_type -> api.common.PersonIDParam
  2048. 28, // 8: api.user.User.SendPhoneCode:input_type -> api.common.SendPhoneCodeRequest
  2049. 29, // 9: api.user.User.CheckPhoneCode:input_type -> api.common.CheckPhoneCodeRequest
  2050. 30, // 10: api.user.User.CheckUserPartnerIsRelationship:input_type -> api.common.PartnerIDParam
  2051. 31, // 11: api.user.User.CreateUserPersonRoom:input_type -> api.common.CreateChatRoomParam
  2052. 16, // 12: api.user.User.GetPartnerCircleInfo:input_type -> api.user.KeyRequest
  2053. 32, // 13: api.user.User.UserGetHomeInfo:input_type -> api.common.PersonParam
  2054. 33, // 14: api.user.User.FindUserDBList:input_type -> api.common.PersonIDList
  2055. 34, // 15: api.user.User.FindLookList:input_type -> api.common.ListPageRequest
  2056. 34, // 16: api.user.User.FindLikeList:input_type -> api.common.ListPageRequest
  2057. 34, // 17: api.user.User.FindLikedList:input_type -> api.common.ListPageRequest
  2058. 26, // 18: api.user.User.GetLookAndLikeStatisticsMessage:input_type -> google.protobuf.Empty
  2059. 35, // 19: api.user.User.WxConf:input_type -> api.common.WxConfReq
  2060. 36, // 20: api.user.User.FindTagListBySex:input_type -> api.common.SexReq
  2061. 37, // 21: api.user.User.FindOnlineList:input_type -> api.common.ListPage2Request
  2062. 34, // 22: api.user.User.FindWithinSevenDayRoomList:input_type -> api.common.ListPageRequest
  2063. 34, // 23: api.user.User.FindOverSevenDayRoomList:input_type -> api.common.ListPageRequest
  2064. 32, // 24: api.user.User.UserGetPersonLikedAndLooked:input_type -> api.common.PersonParam
  2065. 26, // 25: api.user.User.GetUserBalance:input_type -> google.protobuf.Empty
  2066. 26, // 26: api.user.User.GetUserLookNum:input_type -> google.protobuf.Empty
  2067. 38, // 27: api.user.User.FindChatRecordList:input_type -> api.common.FindChatRecordListRequest
  2068. 39, // 28: api.user.User.FindChatRoomMsg:input_type -> api.common.FindChatRoomMsgRequest
  2069. 32, // 29: api.user.User.GetUserIsLike:input_type -> api.common.PersonParam
  2070. 26, // 30: api.user.User.UserFinishInformation:input_type -> google.protobuf.Empty
  2071. 26, // 31: api.user.User.UserInformationStatus:input_type -> google.protobuf.Empty
  2072. 26, // 32: api.user.User.UserGetInformationAward:input_type -> google.protobuf.Empty
  2073. 32, // 33: api.user.User.UserGetChatCard:input_type -> api.common.PersonParam
  2074. 32, // 34: api.user.User.UserLike:input_type -> api.common.PersonParam
  2075. 32, // 35: api.user.User.UserUnLike:input_type -> api.common.PersonParam
  2076. 32, // 36: api.user.User.UnlockLookRecord:input_type -> api.common.PersonParam
  2077. 32, // 37: api.user.User.SendMsgReduceCredit:input_type -> api.common.PersonParam
  2078. 32, // 38: api.user.User.LookBackScripReduceCredit:input_type -> api.common.PersonParam
  2079. 32, // 39: api.user.User.CreateScripReduceCredit:input_type -> api.common.PersonParam
  2080. 32, // 40: api.user.User.ReplyScripReduceCredit:input_type -> api.common.PersonParam
  2081. 32, // 41: api.user.User.UnlockVoiceCredit:input_type -> api.common.PersonParam
  2082. 32, // 42: api.user.User.UnlockPictureCredit:input_type -> api.common.PersonParam
  2083. 32, // 43: api.user.User.MatchingCredit:input_type -> api.common.PersonParam
  2084. 40, // 44: api.user.User.FindMemeByType:input_type -> api.common.MemeRequest
  2085. 41, // 45: api.user.User.FindChatTopic:input_type -> api.common.FindChatTopicRequest
  2086. 42, // 46: api.user.User.RandomMeme:input_type -> api.common.RandomNum
  2087. 43, // 47: api.user.User.RandomSwiftMessage:input_type -> api.common.RandomNumAndSex
  2088. 26, // 48: api.user.User.FindMemeTitle:input_type -> google.protobuf.Empty
  2089. 44, // 49: api.user.User.UserSetBlackChat:input_type -> api.common.RoomIDRequest
  2090. 44, // 50: api.user.User.UserDeleteChat:input_type -> api.common.RoomIDRequest
  2091. 26, // 51: api.user.User.FindChatTopicTitle:input_type -> google.protobuf.Empty
  2092. 8, // 52: api.user.User.UserRecharge:input_type -> api.user.UserRechargeRequest
  2093. 26, // 53: api.user.User.FindRechargeList:input_type -> google.protobuf.Empty
  2094. 21, // 54: api.user.User.FindPayList:input_type -> api.user.FindPayOrderListRequest
  2095. 45, // 55: api.user.User.Report:input_type -> api.common.ReportChatRequest
  2096. 46, // 56: api.user.User.FindRecommendUserDBList:input_type -> api.common.FindRecommendRequest
  2097. 7, // 57: api.user.User.FindRecommendPersonList:input_type -> api.user.FindRecommendPersonListRequest
  2098. 26, // 58: api.user.User.FindOverSevenDayAvatar:input_type -> google.protobuf.Empty
  2099. 26, // 59: api.user.User.FindMatchingAvatarAndNum:input_type -> google.protobuf.Empty
  2100. 5, // 60: api.user.User.CreateScrip:input_type -> api.user.CreateScripRequest
  2101. 4, // 61: api.user.User.DeleteScrip:input_type -> api.user.DeleteScripRequest
  2102. 3, // 62: api.user.User.FindMyScrip:input_type -> api.user.UserFindScripRequest
  2103. 47, // 63: api.user.User.FindOtherScrip:input_type -> api.common.FindScripRequest
  2104. 3, // 64: api.user.User.FindRecommendScrip:input_type -> api.user.UserFindScripRequest
  2105. 2, // 65: api.user.User.PersonLookScrip:input_type -> api.user.PersonLookScripRequest
  2106. 26, // 66: api.user.User.PersonClickLookBack:input_type -> google.protobuf.Empty
  2107. 1, // 67: api.user.User.PersonReplyScrip:input_type -> api.user.ReplyScripRequest
  2108. 48, // 68: api.user.User.UpdateLastScripID:input_type -> api.common.UpdateLastScripIDRequest
  2109. 26, // 69: api.user.User.GetWindowInfo:input_type -> google.protobuf.Empty
  2110. 26, // 70: api.user.User.GetUserFreeNum:input_type -> google.protobuf.Empty
  2111. 36, // 71: api.user.User.GetRandomMatching:input_type -> api.common.SexReq
  2112. 26, // 72: api.user.User.UpdateUserInformation:output_type -> google.protobuf.Empty
  2113. 15, // 73: api.user.User.GetUserInfo:output_type -> api.user.UserInfo
  2114. 49, // 74: api.user.User.GetUserDBMsg:output_type -> api.common.PersonMsg
  2115. 26, // 75: api.user.User.SendPhoneCode:output_type -> google.protobuf.Empty
  2116. 26, // 76: api.user.User.CheckPhoneCode:output_type -> google.protobuf.Empty
  2117. 50, // 77: api.user.User.CheckUserPartnerIsRelationship:output_type -> api.chat.CheckUserPartnerIsRelationshipReply
  2118. 51, // 78: api.user.User.CreateUserPersonRoom:output_type -> api.chat.RoomReply
  2119. 52, // 79: api.user.User.GetPartnerCircleInfo:output_type -> api.common.AddFriendMessageInfo
  2120. 53, // 80: api.user.User.UserGetHomeInfo:output_type -> api.common.HomeInfo
  2121. 54, // 81: api.user.User.FindUserDBList:output_type -> api.common.PersonDBReply
  2122. 55, // 82: api.user.User.FindLookList:output_type -> api.statistics.LookAndLikeListReply
  2123. 55, // 83: api.user.User.FindLikeList:output_type -> api.statistics.LookAndLikeListReply
  2124. 55, // 84: api.user.User.FindLikedList:output_type -> api.statistics.LookAndLikeListReply
  2125. 56, // 85: api.user.User.GetLookAndLikeStatisticsMessage:output_type -> api.statistics.LookAndLikeMessageReply
  2126. 57, // 86: api.user.User.WxConf:output_type -> api.common.WxConfResponse
  2127. 58, // 87: api.user.User.FindTagListBySex:output_type -> api.common.TagListReply
  2128. 59, // 88: api.user.User.FindOnlineList:output_type -> api.common.RecommendPersonListReply
  2129. 13, // 89: api.user.User.FindWithinSevenDayRoomList:output_type -> api.user.UserFindChatListReply
  2130. 13, // 90: api.user.User.FindOverSevenDayRoomList:output_type -> api.user.UserFindChatListReply
  2131. 60, // 91: api.user.User.UserGetPersonLikedAndLooked:output_type -> api.common.LookedAndLikedNum
  2132. 12, // 92: api.user.User.GetUserBalance:output_type -> api.user.UserBalance
  2133. 61, // 93: api.user.User.GetUserLookNum:output_type -> api.statistics.LookMessageReply
  2134. 62, // 94: api.user.User.FindChatRecordList:output_type -> api.common.ChatRecordListReply
  2135. 63, // 95: api.user.User.FindChatRoomMsg:output_type -> api.common.ChatRoomMsg
  2136. 64, // 96: api.user.User.GetUserIsLike:output_type -> api.common.IsLike
  2137. 26, // 97: api.user.User.UserFinishInformation:output_type -> google.protobuf.Empty
  2138. 11, // 98: api.user.User.UserInformationStatus:output_type -> api.user.InformationStatus
  2139. 26, // 99: api.user.User.UserGetInformationAward:output_type -> google.protobuf.Empty
  2140. 65, // 100: api.user.User.UserGetChatCard:output_type -> api.common.ChatCardInfo
  2141. 26, // 101: api.user.User.UserLike:output_type -> google.protobuf.Empty
  2142. 26, // 102: api.user.User.UserUnLike:output_type -> google.protobuf.Empty
  2143. 26, // 103: api.user.User.UnlockLookRecord:output_type -> google.protobuf.Empty
  2144. 26, // 104: api.user.User.SendMsgReduceCredit:output_type -> google.protobuf.Empty
  2145. 26, // 105: api.user.User.LookBackScripReduceCredit:output_type -> google.protobuf.Empty
  2146. 26, // 106: api.user.User.CreateScripReduceCredit:output_type -> google.protobuf.Empty
  2147. 26, // 107: api.user.User.ReplyScripReduceCredit:output_type -> google.protobuf.Empty
  2148. 26, // 108: api.user.User.UnlockVoiceCredit:output_type -> google.protobuf.Empty
  2149. 26, // 109: api.user.User.UnlockPictureCredit:output_type -> google.protobuf.Empty
  2150. 26, // 110: api.user.User.MatchingCredit:output_type -> google.protobuf.Empty
  2151. 66, // 111: api.user.User.FindMemeByType:output_type -> api.common.MemeList
  2152. 67, // 112: api.user.User.FindChatTopic:output_type -> api.common.ChatTopicList
  2153. 68, // 113: api.user.User.RandomMeme:output_type -> api.common.CommonTextList
  2154. 68, // 114: api.user.User.RandomSwiftMessage:output_type -> api.common.CommonTextList
  2155. 69, // 115: api.user.User.FindMemeTitle:output_type -> api.common.MemeTitleList
  2156. 26, // 116: api.user.User.UserSetBlackChat:output_type -> google.protobuf.Empty
  2157. 26, // 117: api.user.User.UserDeleteChat:output_type -> google.protobuf.Empty
  2158. 69, // 118: api.user.User.FindChatTopicTitle:output_type -> api.common.MemeTitleList
  2159. 18, // 119: api.user.User.UserRecharge:output_type -> api.user.PayInfo
  2160. 9, // 120: api.user.User.FindRechargeList:output_type -> api.user.RechargeList
  2161. 20, // 121: api.user.User.FindPayList:output_type -> api.user.PayOrderList
  2162. 26, // 122: api.user.User.Report:output_type -> google.protobuf.Empty
  2163. 54, // 123: api.user.User.FindRecommendUserDBList:output_type -> api.common.PersonDBReply
  2164. 59, // 124: api.user.User.FindRecommendPersonList:output_type -> api.common.RecommendPersonListReply
  2165. 70, // 125: api.user.User.FindOverSevenDayAvatar:output_type -> api.common.FindOverSevenDayAvatarReply
  2166. 6, // 126: api.user.User.FindMatchingAvatarAndNum:output_type -> api.user.FindMatchingAvatarAndNumReply
  2167. 71, // 127: api.user.User.CreateScrip:output_type -> api.common.ScripID
  2168. 26, // 128: api.user.User.DeleteScrip:output_type -> google.protobuf.Empty
  2169. 72, // 129: api.user.User.FindMyScrip:output_type -> api.common.ScripReply
  2170. 72, // 130: api.user.User.FindOtherScrip:output_type -> api.common.ScripReply
  2171. 72, // 131: api.user.User.FindRecommendScrip:output_type -> api.common.ScripReply
  2172. 26, // 132: api.user.User.PersonLookScrip:output_type -> google.protobuf.Empty
  2173. 73, // 133: api.user.User.PersonClickLookBack:output_type -> api.common.ScripInfo
  2174. 74, // 134: api.user.User.PersonReplyScrip:output_type -> api.common.ChatRecordInfo
  2175. 26, // 135: api.user.User.UpdateLastScripID:output_type -> google.protobuf.Empty
  2176. 75, // 136: api.user.User.GetWindowInfo:output_type -> api.chat.WindowInfo
  2177. 0, // 137: api.user.User.GetUserFreeNum:output_type -> api.user.UserFreeNum
  2178. 76, // 138: api.user.User.GetRandomMatching:output_type -> api.chat.GetRandomMatchingReply
  2179. 72, // [72:139] is the sub-list for method output_type
  2180. 5, // [5:72] is the sub-list for method input_type
  2181. 5, // [5:5] is the sub-list for extension type_name
  2182. 5, // [5:5] is the sub-list for extension extendee
  2183. 0, // [0:5] is the sub-list for field type_name
  2184. }
  2185. func init() { file_user_proto_init() }
  2186. func file_user_proto_init() {
  2187. if File_user_proto != nil {
  2188. return
  2189. }
  2190. if !protoimpl.UnsafeEnabled {
  2191. file_user_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  2192. switch v := v.(*UserFreeNum); i {
  2193. case 0:
  2194. return &v.state
  2195. case 1:
  2196. return &v.sizeCache
  2197. case 2:
  2198. return &v.unknownFields
  2199. default:
  2200. return nil
  2201. }
  2202. }
  2203. file_user_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  2204. switch v := v.(*ReplyScripRequest); i {
  2205. case 0:
  2206. return &v.state
  2207. case 1:
  2208. return &v.sizeCache
  2209. case 2:
  2210. return &v.unknownFields
  2211. default:
  2212. return nil
  2213. }
  2214. }
  2215. file_user_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  2216. switch v := v.(*PersonLookScripRequest); i {
  2217. case 0:
  2218. return &v.state
  2219. case 1:
  2220. return &v.sizeCache
  2221. case 2:
  2222. return &v.unknownFields
  2223. default:
  2224. return nil
  2225. }
  2226. }
  2227. file_user_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  2228. switch v := v.(*UserFindScripRequest); i {
  2229. case 0:
  2230. return &v.state
  2231. case 1:
  2232. return &v.sizeCache
  2233. case 2:
  2234. return &v.unknownFields
  2235. default:
  2236. return nil
  2237. }
  2238. }
  2239. file_user_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  2240. switch v := v.(*DeleteScripRequest); i {
  2241. case 0:
  2242. return &v.state
  2243. case 1:
  2244. return &v.sizeCache
  2245. case 2:
  2246. return &v.unknownFields
  2247. default:
  2248. return nil
  2249. }
  2250. }
  2251. file_user_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  2252. switch v := v.(*CreateScripRequest); i {
  2253. case 0:
  2254. return &v.state
  2255. case 1:
  2256. return &v.sizeCache
  2257. case 2:
  2258. return &v.unknownFields
  2259. default:
  2260. return nil
  2261. }
  2262. }
  2263. file_user_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  2264. switch v := v.(*FindMatchingAvatarAndNumReply); i {
  2265. case 0:
  2266. return &v.state
  2267. case 1:
  2268. return &v.sizeCache
  2269. case 2:
  2270. return &v.unknownFields
  2271. default:
  2272. return nil
  2273. }
  2274. }
  2275. file_user_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  2276. switch v := v.(*FindRecommendPersonListRequest); i {
  2277. case 0:
  2278. return &v.state
  2279. case 1:
  2280. return &v.sizeCache
  2281. case 2:
  2282. return &v.unknownFields
  2283. default:
  2284. return nil
  2285. }
  2286. }
  2287. file_user_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  2288. switch v := v.(*UserRechargeRequest); i {
  2289. case 0:
  2290. return &v.state
  2291. case 1:
  2292. return &v.sizeCache
  2293. case 2:
  2294. return &v.unknownFields
  2295. default:
  2296. return nil
  2297. }
  2298. }
  2299. file_user_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  2300. switch v := v.(*RechargeList); i {
  2301. case 0:
  2302. return &v.state
  2303. case 1:
  2304. return &v.sizeCache
  2305. case 2:
  2306. return &v.unknownFields
  2307. default:
  2308. return nil
  2309. }
  2310. }
  2311. file_user_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  2312. switch v := v.(*RechargeInfo); i {
  2313. case 0:
  2314. return &v.state
  2315. case 1:
  2316. return &v.sizeCache
  2317. case 2:
  2318. return &v.unknownFields
  2319. default:
  2320. return nil
  2321. }
  2322. }
  2323. file_user_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  2324. switch v := v.(*InformationStatus); i {
  2325. case 0:
  2326. return &v.state
  2327. case 1:
  2328. return &v.sizeCache
  2329. case 2:
  2330. return &v.unknownFields
  2331. default:
  2332. return nil
  2333. }
  2334. }
  2335. file_user_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  2336. switch v := v.(*UserBalance); i {
  2337. case 0:
  2338. return &v.state
  2339. case 1:
  2340. return &v.sizeCache
  2341. case 2:
  2342. return &v.unknownFields
  2343. default:
  2344. return nil
  2345. }
  2346. }
  2347. file_user_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  2348. switch v := v.(*UserFindChatListReply); i {
  2349. case 0:
  2350. return &v.state
  2351. case 1:
  2352. return &v.sizeCache
  2353. case 2:
  2354. return &v.unknownFields
  2355. default:
  2356. return nil
  2357. }
  2358. }
  2359. file_user_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  2360. switch v := v.(*UserChatInfo); i {
  2361. case 0:
  2362. return &v.state
  2363. case 1:
  2364. return &v.sizeCache
  2365. case 2:
  2366. return &v.unknownFields
  2367. default:
  2368. return nil
  2369. }
  2370. }
  2371. file_user_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  2372. switch v := v.(*UserInfo); i {
  2373. case 0:
  2374. return &v.state
  2375. case 1:
  2376. return &v.sizeCache
  2377. case 2:
  2378. return &v.unknownFields
  2379. default:
  2380. return nil
  2381. }
  2382. }
  2383. file_user_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  2384. switch v := v.(*KeyRequest); i {
  2385. case 0:
  2386. return &v.state
  2387. case 1:
  2388. return &v.sizeCache
  2389. case 2:
  2390. return &v.unknownFields
  2391. default:
  2392. return nil
  2393. }
  2394. }
  2395. file_user_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  2396. switch v := v.(*CreatePayRequest); i {
  2397. case 0:
  2398. return &v.state
  2399. case 1:
  2400. return &v.sizeCache
  2401. case 2:
  2402. return &v.unknownFields
  2403. default:
  2404. return nil
  2405. }
  2406. }
  2407. file_user_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  2408. switch v := v.(*PayInfo); i {
  2409. case 0:
  2410. return &v.state
  2411. case 1:
  2412. return &v.sizeCache
  2413. case 2:
  2414. return &v.unknownFields
  2415. default:
  2416. return nil
  2417. }
  2418. }
  2419. file_user_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  2420. switch v := v.(*PayOrderInfo); i {
  2421. case 0:
  2422. return &v.state
  2423. case 1:
  2424. return &v.sizeCache
  2425. case 2:
  2426. return &v.unknownFields
  2427. default:
  2428. return nil
  2429. }
  2430. }
  2431. file_user_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  2432. switch v := v.(*PayOrderList); i {
  2433. case 0:
  2434. return &v.state
  2435. case 1:
  2436. return &v.sizeCache
  2437. case 2:
  2438. return &v.unknownFields
  2439. default:
  2440. return nil
  2441. }
  2442. }
  2443. file_user_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  2444. switch v := v.(*FindPayOrderListRequest); i {
  2445. case 0:
  2446. return &v.state
  2447. case 1:
  2448. return &v.sizeCache
  2449. case 2:
  2450. return &v.unknownFields
  2451. default:
  2452. return nil
  2453. }
  2454. }
  2455. file_user_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  2456. switch v := v.(*PayCallbackReply); i {
  2457. case 0:
  2458. return &v.state
  2459. case 1:
  2460. return &v.sizeCache
  2461. case 2:
  2462. return &v.unknownFields
  2463. default:
  2464. return nil
  2465. }
  2466. }
  2467. }
  2468. type x struct{}
  2469. out := protoimpl.TypeBuilder{
  2470. File: protoimpl.DescBuilder{
  2471. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  2472. RawDescriptor: file_user_proto_rawDesc,
  2473. NumEnums: 0,
  2474. NumMessages: 23,
  2475. NumExtensions: 0,
  2476. NumServices: 1,
  2477. },
  2478. GoTypes: file_user_proto_goTypes,
  2479. DependencyIndexes: file_user_proto_depIdxs,
  2480. MessageInfos: file_user_proto_msgTypes,
  2481. }.Build()
  2482. File_user_proto = out.File
  2483. file_user_proto_rawDesc = nil
  2484. file_user_proto_goTypes = nil
  2485. file_user_proto_depIdxs = nil
  2486. }