partner.pb.go 90 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968
  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: partner.proto
  6. package partner
  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. reflect "reflect"
  16. sync "sync"
  17. )
  18. const (
  19. // Verify that this generated code is sufficiently up-to-date.
  20. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  21. // Verify that runtime/protoimpl is sufficiently up-to-date.
  22. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  23. )
  24. type PartnerWithdrawRecordListReply struct {
  25. state protoimpl.MessageState
  26. sizeCache protoimpl.SizeCache
  27. unknownFields protoimpl.UnknownFields
  28. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  29. List []*WithdrawInfo `protobuf:"bytes,2,rep,name=list,proto3" json:"list"`
  30. }
  31. func (x *PartnerWithdrawRecordListReply) Reset() {
  32. *x = PartnerWithdrawRecordListReply{}
  33. if protoimpl.UnsafeEnabled {
  34. mi := &file_partner_proto_msgTypes[0]
  35. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  36. ms.StoreMessageInfo(mi)
  37. }
  38. }
  39. func (x *PartnerWithdrawRecordListReply) String() string {
  40. return protoimpl.X.MessageStringOf(x)
  41. }
  42. func (*PartnerWithdrawRecordListReply) ProtoMessage() {}
  43. func (x *PartnerWithdrawRecordListReply) ProtoReflect() protoreflect.Message {
  44. mi := &file_partner_proto_msgTypes[0]
  45. if protoimpl.UnsafeEnabled && x != nil {
  46. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  47. if ms.LoadMessageInfo() == nil {
  48. ms.StoreMessageInfo(mi)
  49. }
  50. return ms
  51. }
  52. return mi.MessageOf(x)
  53. }
  54. // Deprecated: Use PartnerWithdrawRecordListReply.ProtoReflect.Descriptor instead.
  55. func (*PartnerWithdrawRecordListReply) Descriptor() ([]byte, []int) {
  56. return file_partner_proto_rawDescGZIP(), []int{0}
  57. }
  58. func (x *PartnerWithdrawRecordListReply) GetNextId() int64 {
  59. if x != nil {
  60. return x.NextId
  61. }
  62. return 0
  63. }
  64. func (x *PartnerWithdrawRecordListReply) GetList() []*WithdrawInfo {
  65. if x != nil {
  66. return x.List
  67. }
  68. return nil
  69. }
  70. type WithdrawInfo struct {
  71. state protoimpl.MessageState
  72. sizeCache protoimpl.SizeCache
  73. unknownFields protoimpl.UnknownFields
  74. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"` // 记录ID
  75. Money int64 `protobuf:"varint,2,opt,name=money,proto3" json:"money"` // 提现多少钱
  76. Credit int64 `protobuf:"varint,3,opt,name=credit,proto3" json:"credit"` // 提现需要多少积分
  77. Status string `protobuf:"bytes,4,opt,name=status,proto3" json:"status"` // 状态
  78. Result string `protobuf:"bytes,5,opt,name=result,proto3" json:"result"` // 结果
  79. }
  80. func (x *WithdrawInfo) Reset() {
  81. *x = WithdrawInfo{}
  82. if protoimpl.UnsafeEnabled {
  83. mi := &file_partner_proto_msgTypes[1]
  84. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  85. ms.StoreMessageInfo(mi)
  86. }
  87. }
  88. func (x *WithdrawInfo) String() string {
  89. return protoimpl.X.MessageStringOf(x)
  90. }
  91. func (*WithdrawInfo) ProtoMessage() {}
  92. func (x *WithdrawInfo) ProtoReflect() protoreflect.Message {
  93. mi := &file_partner_proto_msgTypes[1]
  94. if protoimpl.UnsafeEnabled && x != nil {
  95. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  96. if ms.LoadMessageInfo() == nil {
  97. ms.StoreMessageInfo(mi)
  98. }
  99. return ms
  100. }
  101. return mi.MessageOf(x)
  102. }
  103. // Deprecated: Use WithdrawInfo.ProtoReflect.Descriptor instead.
  104. func (*WithdrawInfo) Descriptor() ([]byte, []int) {
  105. return file_partner_proto_rawDescGZIP(), []int{1}
  106. }
  107. func (x *WithdrawInfo) GetId() int64 {
  108. if x != nil {
  109. return x.Id
  110. }
  111. return 0
  112. }
  113. func (x *WithdrawInfo) GetMoney() int64 {
  114. if x != nil {
  115. return x.Money
  116. }
  117. return 0
  118. }
  119. func (x *WithdrawInfo) GetCredit() int64 {
  120. if x != nil {
  121. return x.Credit
  122. }
  123. return 0
  124. }
  125. func (x *WithdrawInfo) GetStatus() string {
  126. if x != nil {
  127. return x.Status
  128. }
  129. return ""
  130. }
  131. func (x *WithdrawInfo) GetResult() string {
  132. if x != nil {
  133. return x.Result
  134. }
  135. return ""
  136. }
  137. type PartnerWithdrawTemplateListReply struct {
  138. state protoimpl.MessageState
  139. sizeCache protoimpl.SizeCache
  140. unknownFields protoimpl.UnknownFields
  141. List []*PartnerWithdrawTemplateInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  142. }
  143. func (x *PartnerWithdrawTemplateListReply) Reset() {
  144. *x = PartnerWithdrawTemplateListReply{}
  145. if protoimpl.UnsafeEnabled {
  146. mi := &file_partner_proto_msgTypes[2]
  147. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  148. ms.StoreMessageInfo(mi)
  149. }
  150. }
  151. func (x *PartnerWithdrawTemplateListReply) String() string {
  152. return protoimpl.X.MessageStringOf(x)
  153. }
  154. func (*PartnerWithdrawTemplateListReply) ProtoMessage() {}
  155. func (x *PartnerWithdrawTemplateListReply) ProtoReflect() protoreflect.Message {
  156. mi := &file_partner_proto_msgTypes[2]
  157. if protoimpl.UnsafeEnabled && x != nil {
  158. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  159. if ms.LoadMessageInfo() == nil {
  160. ms.StoreMessageInfo(mi)
  161. }
  162. return ms
  163. }
  164. return mi.MessageOf(x)
  165. }
  166. // Deprecated: Use PartnerWithdrawTemplateListReply.ProtoReflect.Descriptor instead.
  167. func (*PartnerWithdrawTemplateListReply) Descriptor() ([]byte, []int) {
  168. return file_partner_proto_rawDescGZIP(), []int{2}
  169. }
  170. func (x *PartnerWithdrawTemplateListReply) GetList() []*PartnerWithdrawTemplateInfo {
  171. if x != nil {
  172. return x.List
  173. }
  174. return nil
  175. }
  176. type PartnerWithdrawTemplateInfo struct {
  177. state protoimpl.MessageState
  178. sizeCache protoimpl.SizeCache
  179. unknownFields protoimpl.UnknownFields
  180. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  181. Money int64 `protobuf:"varint,2,opt,name=money,proto3" json:"money"` // 提现多少钱
  182. Credit int64 `protobuf:"varint,3,opt,name=credit,proto3" json:"credit"` // 提现需要多少积分
  183. Title string `protobuf:"bytes,4,opt,name=title,proto3" json:"title"` // 提现的标题
  184. }
  185. func (x *PartnerWithdrawTemplateInfo) Reset() {
  186. *x = PartnerWithdrawTemplateInfo{}
  187. if protoimpl.UnsafeEnabled {
  188. mi := &file_partner_proto_msgTypes[3]
  189. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  190. ms.StoreMessageInfo(mi)
  191. }
  192. }
  193. func (x *PartnerWithdrawTemplateInfo) String() string {
  194. return protoimpl.X.MessageStringOf(x)
  195. }
  196. func (*PartnerWithdrawTemplateInfo) ProtoMessage() {}
  197. func (x *PartnerWithdrawTemplateInfo) ProtoReflect() protoreflect.Message {
  198. mi := &file_partner_proto_msgTypes[3]
  199. if protoimpl.UnsafeEnabled && x != nil {
  200. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  201. if ms.LoadMessageInfo() == nil {
  202. ms.StoreMessageInfo(mi)
  203. }
  204. return ms
  205. }
  206. return mi.MessageOf(x)
  207. }
  208. // Deprecated: Use PartnerWithdrawTemplateInfo.ProtoReflect.Descriptor instead.
  209. func (*PartnerWithdrawTemplateInfo) Descriptor() ([]byte, []int) {
  210. return file_partner_proto_rawDescGZIP(), []int{3}
  211. }
  212. func (x *PartnerWithdrawTemplateInfo) GetId() int64 {
  213. if x != nil {
  214. return x.Id
  215. }
  216. return 0
  217. }
  218. func (x *PartnerWithdrawTemplateInfo) GetMoney() int64 {
  219. if x != nil {
  220. return x.Money
  221. }
  222. return 0
  223. }
  224. func (x *PartnerWithdrawTemplateInfo) GetCredit() int64 {
  225. if x != nil {
  226. return x.Credit
  227. }
  228. return 0
  229. }
  230. func (x *PartnerWithdrawTemplateInfo) GetTitle() string {
  231. if x != nil {
  232. return x.Title
  233. }
  234. return ""
  235. }
  236. type PartnerUpdateWorkingStatusRequest struct {
  237. state protoimpl.MessageState
  238. sizeCache protoimpl.SizeCache
  239. unknownFields protoimpl.UnknownFields
  240. WorkingStatus string `protobuf:"bytes,1,opt,name=workingStatus,proto3" json:"workingStatus"` // 工作状态
  241. }
  242. func (x *PartnerUpdateWorkingStatusRequest) Reset() {
  243. *x = PartnerUpdateWorkingStatusRequest{}
  244. if protoimpl.UnsafeEnabled {
  245. mi := &file_partner_proto_msgTypes[4]
  246. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  247. ms.StoreMessageInfo(mi)
  248. }
  249. }
  250. func (x *PartnerUpdateWorkingStatusRequest) String() string {
  251. return protoimpl.X.MessageStringOf(x)
  252. }
  253. func (*PartnerUpdateWorkingStatusRequest) ProtoMessage() {}
  254. func (x *PartnerUpdateWorkingStatusRequest) ProtoReflect() protoreflect.Message {
  255. mi := &file_partner_proto_msgTypes[4]
  256. if protoimpl.UnsafeEnabled && x != nil {
  257. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  258. if ms.LoadMessageInfo() == nil {
  259. ms.StoreMessageInfo(mi)
  260. }
  261. return ms
  262. }
  263. return mi.MessageOf(x)
  264. }
  265. // Deprecated: Use PartnerUpdateWorkingStatusRequest.ProtoReflect.Descriptor instead.
  266. func (*PartnerUpdateWorkingStatusRequest) Descriptor() ([]byte, []int) {
  267. return file_partner_proto_rawDescGZIP(), []int{4}
  268. }
  269. func (x *PartnerUpdateWorkingStatusRequest) GetWorkingStatus() string {
  270. if x != nil {
  271. return x.WorkingStatus
  272. }
  273. return ""
  274. }
  275. type PartnerGetAwardRequest struct {
  276. state protoimpl.MessageState
  277. sizeCache protoimpl.SizeCache
  278. unknownFields protoimpl.UnknownFields
  279. AwardType string `protobuf:"bytes,1,opt,name=awardType,proto3" json:"awardType"` // 奖励类型
  280. PersonID string `protobuf:"bytes,2,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  281. PersonType string `protobuf:"bytes,3,opt,name=personType,proto3" json:"personType"` // 类型
  282. }
  283. func (x *PartnerGetAwardRequest) Reset() {
  284. *x = PartnerGetAwardRequest{}
  285. if protoimpl.UnsafeEnabled {
  286. mi := &file_partner_proto_msgTypes[5]
  287. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  288. ms.StoreMessageInfo(mi)
  289. }
  290. }
  291. func (x *PartnerGetAwardRequest) String() string {
  292. return protoimpl.X.MessageStringOf(x)
  293. }
  294. func (*PartnerGetAwardRequest) ProtoMessage() {}
  295. func (x *PartnerGetAwardRequest) ProtoReflect() protoreflect.Message {
  296. mi := &file_partner_proto_msgTypes[5]
  297. if protoimpl.UnsafeEnabled && x != nil {
  298. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  299. if ms.LoadMessageInfo() == nil {
  300. ms.StoreMessageInfo(mi)
  301. }
  302. return ms
  303. }
  304. return mi.MessageOf(x)
  305. }
  306. // Deprecated: Use PartnerGetAwardRequest.ProtoReflect.Descriptor instead.
  307. func (*PartnerGetAwardRequest) Descriptor() ([]byte, []int) {
  308. return file_partner_proto_rawDescGZIP(), []int{5}
  309. }
  310. func (x *PartnerGetAwardRequest) GetAwardType() string {
  311. if x != nil {
  312. return x.AwardType
  313. }
  314. return ""
  315. }
  316. func (x *PartnerGetAwardRequest) GetPersonID() string {
  317. if x != nil {
  318. return x.PersonID
  319. }
  320. return ""
  321. }
  322. func (x *PartnerGetAwardRequest) GetPersonType() string {
  323. if x != nil {
  324. return x.PersonType
  325. }
  326. return ""
  327. }
  328. type LevelTable struct {
  329. state protoimpl.MessageState
  330. sizeCache protoimpl.SizeCache
  331. unknownFields protoimpl.UnknownFields
  332. List []*LevelInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  333. }
  334. func (x *LevelTable) Reset() {
  335. *x = LevelTable{}
  336. if protoimpl.UnsafeEnabled {
  337. mi := &file_partner_proto_msgTypes[6]
  338. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  339. ms.StoreMessageInfo(mi)
  340. }
  341. }
  342. func (x *LevelTable) String() string {
  343. return protoimpl.X.MessageStringOf(x)
  344. }
  345. func (*LevelTable) ProtoMessage() {}
  346. func (x *LevelTable) ProtoReflect() protoreflect.Message {
  347. mi := &file_partner_proto_msgTypes[6]
  348. if protoimpl.UnsafeEnabled && x != nil {
  349. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  350. if ms.LoadMessageInfo() == nil {
  351. ms.StoreMessageInfo(mi)
  352. }
  353. return ms
  354. }
  355. return mi.MessageOf(x)
  356. }
  357. // Deprecated: Use LevelTable.ProtoReflect.Descriptor instead.
  358. func (*LevelTable) Descriptor() ([]byte, []int) {
  359. return file_partner_proto_rawDescGZIP(), []int{6}
  360. }
  361. func (x *LevelTable) GetList() []*LevelInfo {
  362. if x != nil {
  363. return x.List
  364. }
  365. return nil
  366. }
  367. type LevelInfo struct {
  368. state protoimpl.MessageState
  369. sizeCache protoimpl.SizeCache
  370. unknownFields protoimpl.UnknownFields
  371. Level int64 `protobuf:"varint,1,opt,name=level,proto3" json:"level"` // 等级
  372. ChatBenefit int64 `protobuf:"varint,2,opt,name=chatBenefit,proto3" json:"chatBenefit"` // 聊天收益
  373. CallBenefit int64 `protobuf:"varint,3,opt,name=callBenefit,proto3" json:"callBenefit"` // 语音通话收益
  374. Condition string `protobuf:"bytes,4,opt,name=condition,proto3" json:"condition"` // 达成条件
  375. }
  376. func (x *LevelInfo) Reset() {
  377. *x = LevelInfo{}
  378. if protoimpl.UnsafeEnabled {
  379. mi := &file_partner_proto_msgTypes[7]
  380. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  381. ms.StoreMessageInfo(mi)
  382. }
  383. }
  384. func (x *LevelInfo) String() string {
  385. return protoimpl.X.MessageStringOf(x)
  386. }
  387. func (*LevelInfo) ProtoMessage() {}
  388. func (x *LevelInfo) ProtoReflect() protoreflect.Message {
  389. mi := &file_partner_proto_msgTypes[7]
  390. if protoimpl.UnsafeEnabled && x != nil {
  391. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  392. if ms.LoadMessageInfo() == nil {
  393. ms.StoreMessageInfo(mi)
  394. }
  395. return ms
  396. }
  397. return mi.MessageOf(x)
  398. }
  399. // Deprecated: Use LevelInfo.ProtoReflect.Descriptor instead.
  400. func (*LevelInfo) Descriptor() ([]byte, []int) {
  401. return file_partner_proto_rawDescGZIP(), []int{7}
  402. }
  403. func (x *LevelInfo) GetLevel() int64 {
  404. if x != nil {
  405. return x.Level
  406. }
  407. return 0
  408. }
  409. func (x *LevelInfo) GetChatBenefit() int64 {
  410. if x != nil {
  411. return x.ChatBenefit
  412. }
  413. return 0
  414. }
  415. func (x *LevelInfo) GetCallBenefit() int64 {
  416. if x != nil {
  417. return x.CallBenefit
  418. }
  419. return 0
  420. }
  421. func (x *LevelInfo) GetCondition() string {
  422. if x != nil {
  423. return x.Condition
  424. }
  425. return ""
  426. }
  427. type AddPartnerBalanceRequest struct {
  428. state protoimpl.MessageState
  429. sizeCache protoimpl.SizeCache
  430. unknownFields protoimpl.UnknownFields
  431. PartnerId string `protobuf:"bytes,1,opt,name=partnerId,proto3" json:"partnerId"`
  432. Balance int64 `protobuf:"varint,2,opt,name=balance,proto3" json:"balance"`
  433. }
  434. func (x *AddPartnerBalanceRequest) Reset() {
  435. *x = AddPartnerBalanceRequest{}
  436. if protoimpl.UnsafeEnabled {
  437. mi := &file_partner_proto_msgTypes[8]
  438. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  439. ms.StoreMessageInfo(mi)
  440. }
  441. }
  442. func (x *AddPartnerBalanceRequest) String() string {
  443. return protoimpl.X.MessageStringOf(x)
  444. }
  445. func (*AddPartnerBalanceRequest) ProtoMessage() {}
  446. func (x *AddPartnerBalanceRequest) ProtoReflect() protoreflect.Message {
  447. mi := &file_partner_proto_msgTypes[8]
  448. if protoimpl.UnsafeEnabled && x != nil {
  449. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  450. if ms.LoadMessageInfo() == nil {
  451. ms.StoreMessageInfo(mi)
  452. }
  453. return ms
  454. }
  455. return mi.MessageOf(x)
  456. }
  457. // Deprecated: Use AddPartnerBalanceRequest.ProtoReflect.Descriptor instead.
  458. func (*AddPartnerBalanceRequest) Descriptor() ([]byte, []int) {
  459. return file_partner_proto_rawDescGZIP(), []int{8}
  460. }
  461. func (x *AddPartnerBalanceRequest) GetPartnerId() string {
  462. if x != nil {
  463. return x.PartnerId
  464. }
  465. return ""
  466. }
  467. func (x *AddPartnerBalanceRequest) GetBalance() int64 {
  468. if x != nil {
  469. return x.Balance
  470. }
  471. return 0
  472. }
  473. type PartnerInfo struct {
  474. state protoimpl.MessageState
  475. sizeCache protoimpl.SizeCache
  476. unknownFields protoimpl.UnknownFields
  477. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  478. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  479. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  480. Age int64 `protobuf:"varint,4,opt,name=age,proto3" json:"age"` // 年龄
  481. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  482. Constellation string `protobuf:"bytes,6,opt,name=constellation,proto3" json:"constellation"` // 星座
  483. Level int64 `protobuf:"varint,7,opt,name=level,proto3" json:"level"` // 等级
  484. TagList []int64 `protobuf:"varint,8,rep,packed,name=tagList,proto3" json:"tagList"` // 标签
  485. Signature string `protobuf:"bytes,9,opt,name=signature,proto3" json:"signature"` // 签名
  486. IntroduceVoice string `protobuf:"bytes,10,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
  487. Province string `protobuf:"bytes,11,opt,name=province,proto3" json:"province"` // 省
  488. City string `protobuf:"bytes,12,opt,name=city,proto3" json:"city"` // 市
  489. Area string `protobuf:"bytes,13,opt,name=area,proto3" json:"area"` // 区
  490. PartnerId int64 `protobuf:"varint,14,opt,name=partnerId,proto3" json:"partnerId"` // 接待员ID
  491. IsBlack bool `protobuf:"varint,15,opt,name=isBlack,proto3" json:"isBlack"` // 是否被封号
  492. WorkingStatus string `protobuf:"bytes,16,opt,name=workingStatus,proto3" json:"workingStatus"` // 工作状态
  493. }
  494. func (x *PartnerInfo) Reset() {
  495. *x = PartnerInfo{}
  496. if protoimpl.UnsafeEnabled {
  497. mi := &file_partner_proto_msgTypes[9]
  498. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  499. ms.StoreMessageInfo(mi)
  500. }
  501. }
  502. func (x *PartnerInfo) String() string {
  503. return protoimpl.X.MessageStringOf(x)
  504. }
  505. func (*PartnerInfo) ProtoMessage() {}
  506. func (x *PartnerInfo) ProtoReflect() protoreflect.Message {
  507. mi := &file_partner_proto_msgTypes[9]
  508. if protoimpl.UnsafeEnabled && x != nil {
  509. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  510. if ms.LoadMessageInfo() == nil {
  511. ms.StoreMessageInfo(mi)
  512. }
  513. return ms
  514. }
  515. return mi.MessageOf(x)
  516. }
  517. // Deprecated: Use PartnerInfo.ProtoReflect.Descriptor instead.
  518. func (*PartnerInfo) Descriptor() ([]byte, []int) {
  519. return file_partner_proto_rawDescGZIP(), []int{9}
  520. }
  521. func (x *PartnerInfo) GetId() string {
  522. if x != nil {
  523. return x.Id
  524. }
  525. return ""
  526. }
  527. func (x *PartnerInfo) GetNickname() string {
  528. if x != nil {
  529. return x.Nickname
  530. }
  531. return ""
  532. }
  533. func (x *PartnerInfo) GetAvatarUrl() string {
  534. if x != nil {
  535. return x.AvatarUrl
  536. }
  537. return ""
  538. }
  539. func (x *PartnerInfo) GetAge() int64 {
  540. if x != nil {
  541. return x.Age
  542. }
  543. return 0
  544. }
  545. func (x *PartnerInfo) GetSex() int64 {
  546. if x != nil {
  547. return x.Sex
  548. }
  549. return 0
  550. }
  551. func (x *PartnerInfo) GetConstellation() string {
  552. if x != nil {
  553. return x.Constellation
  554. }
  555. return ""
  556. }
  557. func (x *PartnerInfo) GetLevel() int64 {
  558. if x != nil {
  559. return x.Level
  560. }
  561. return 0
  562. }
  563. func (x *PartnerInfo) GetTagList() []int64 {
  564. if x != nil {
  565. return x.TagList
  566. }
  567. return nil
  568. }
  569. func (x *PartnerInfo) GetSignature() string {
  570. if x != nil {
  571. return x.Signature
  572. }
  573. return ""
  574. }
  575. func (x *PartnerInfo) GetIntroduceVoice() string {
  576. if x != nil {
  577. return x.IntroduceVoice
  578. }
  579. return ""
  580. }
  581. func (x *PartnerInfo) GetProvince() string {
  582. if x != nil {
  583. return x.Province
  584. }
  585. return ""
  586. }
  587. func (x *PartnerInfo) GetCity() string {
  588. if x != nil {
  589. return x.City
  590. }
  591. return ""
  592. }
  593. func (x *PartnerInfo) GetArea() string {
  594. if x != nil {
  595. return x.Area
  596. }
  597. return ""
  598. }
  599. func (x *PartnerInfo) GetPartnerId() int64 {
  600. if x != nil {
  601. return x.PartnerId
  602. }
  603. return 0
  604. }
  605. func (x *PartnerInfo) GetIsBlack() bool {
  606. if x != nil {
  607. return x.IsBlack
  608. }
  609. return false
  610. }
  611. func (x *PartnerInfo) GetWorkingStatus() string {
  612. if x != nil {
  613. return x.WorkingStatus
  614. }
  615. return ""
  616. }
  617. type PartnerMessage struct {
  618. state protoimpl.MessageState
  619. sizeCache protoimpl.SizeCache
  620. unknownFields protoimpl.UnknownFields
  621. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  622. LookNum int64 `protobuf:"varint,2,opt,name=lookNum,proto3" json:"lookNum"` // 看过我的数量
  623. LookUnreadNum int64 `protobuf:"varint,3,opt,name=lookUnreadNum,proto3" json:"lookUnreadNum"` // 未读的看过我的数量
  624. TodayReceptionNum int64 `protobuf:"varint,4,opt,name=todayReceptionNum,proto3" json:"todayReceptionNum"` // 今日接待人数
  625. ReversionRate string `protobuf:"bytes,5,opt,name=reversionRate,proto3" json:"reversionRate"` // 五分钟的回复率
  626. }
  627. func (x *PartnerMessage) Reset() {
  628. *x = PartnerMessage{}
  629. if protoimpl.UnsafeEnabled {
  630. mi := &file_partner_proto_msgTypes[10]
  631. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  632. ms.StoreMessageInfo(mi)
  633. }
  634. }
  635. func (x *PartnerMessage) String() string {
  636. return protoimpl.X.MessageStringOf(x)
  637. }
  638. func (*PartnerMessage) ProtoMessage() {}
  639. func (x *PartnerMessage) ProtoReflect() protoreflect.Message {
  640. mi := &file_partner_proto_msgTypes[10]
  641. if protoimpl.UnsafeEnabled && x != nil {
  642. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  643. if ms.LoadMessageInfo() == nil {
  644. ms.StoreMessageInfo(mi)
  645. }
  646. return ms
  647. }
  648. return mi.MessageOf(x)
  649. }
  650. // Deprecated: Use PartnerMessage.ProtoReflect.Descriptor instead.
  651. func (*PartnerMessage) Descriptor() ([]byte, []int) {
  652. return file_partner_proto_rawDescGZIP(), []int{10}
  653. }
  654. func (x *PartnerMessage) GetId() string {
  655. if x != nil {
  656. return x.Id
  657. }
  658. return ""
  659. }
  660. func (x *PartnerMessage) GetLookNum() int64 {
  661. if x != nil {
  662. return x.LookNum
  663. }
  664. return 0
  665. }
  666. func (x *PartnerMessage) GetLookUnreadNum() int64 {
  667. if x != nil {
  668. return x.LookUnreadNum
  669. }
  670. return 0
  671. }
  672. func (x *PartnerMessage) GetTodayReceptionNum() int64 {
  673. if x != nil {
  674. return x.TodayReceptionNum
  675. }
  676. return 0
  677. }
  678. func (x *PartnerMessage) GetReversionRate() string {
  679. if x != nil {
  680. return x.ReversionRate
  681. }
  682. return ""
  683. }
  684. type PartnerBalance struct {
  685. state protoimpl.MessageState
  686. sizeCache protoimpl.SizeCache
  687. unknownFields protoimpl.UnknownFields
  688. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  689. Balance int64 `protobuf:"varint,2,opt,name=balance,proto3" json:"balance"` // 可提现余额
  690. TodayProfit int64 `protobuf:"varint,3,opt,name=todayProfit,proto3" json:"todayProfit"` // 今日收益
  691. Level int64 `protobuf:"varint,4,opt,name=level,proto3" json:"level"` // 等级
  692. }
  693. func (x *PartnerBalance) Reset() {
  694. *x = PartnerBalance{}
  695. if protoimpl.UnsafeEnabled {
  696. mi := &file_partner_proto_msgTypes[11]
  697. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  698. ms.StoreMessageInfo(mi)
  699. }
  700. }
  701. func (x *PartnerBalance) String() string {
  702. return protoimpl.X.MessageStringOf(x)
  703. }
  704. func (*PartnerBalance) ProtoMessage() {}
  705. func (x *PartnerBalance) ProtoReflect() protoreflect.Message {
  706. mi := &file_partner_proto_msgTypes[11]
  707. if protoimpl.UnsafeEnabled && x != nil {
  708. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  709. if ms.LoadMessageInfo() == nil {
  710. ms.StoreMessageInfo(mi)
  711. }
  712. return ms
  713. }
  714. return mi.MessageOf(x)
  715. }
  716. // Deprecated: Use PartnerBalance.ProtoReflect.Descriptor instead.
  717. func (*PartnerBalance) Descriptor() ([]byte, []int) {
  718. return file_partner_proto_rawDescGZIP(), []int{11}
  719. }
  720. func (x *PartnerBalance) GetId() string {
  721. if x != nil {
  722. return x.Id
  723. }
  724. return ""
  725. }
  726. func (x *PartnerBalance) GetBalance() int64 {
  727. if x != nil {
  728. return x.Balance
  729. }
  730. return 0
  731. }
  732. func (x *PartnerBalance) GetTodayProfit() int64 {
  733. if x != nil {
  734. return x.TodayProfit
  735. }
  736. return 0
  737. }
  738. func (x *PartnerBalance) GetLevel() int64 {
  739. if x != nil {
  740. return x.Level
  741. }
  742. return 0
  743. }
  744. type PartnerDBBalance struct {
  745. state protoimpl.MessageState
  746. sizeCache protoimpl.SizeCache
  747. unknownFields protoimpl.UnknownFields
  748. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  749. Level int64 `protobuf:"varint,2,opt,name=level,proto3" json:"level"` // 等级
  750. ChatBenefit int64 `protobuf:"varint,3,opt,name=chatBenefit,proto3" json:"chatBenefit"` // 聊天收益
  751. CallBenefit int64 `protobuf:"varint,4,opt,name=callBenefit,proto3" json:"callBenefit"` // 语音通话收益
  752. }
  753. func (x *PartnerDBBalance) Reset() {
  754. *x = PartnerDBBalance{}
  755. if protoimpl.UnsafeEnabled {
  756. mi := &file_partner_proto_msgTypes[12]
  757. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  758. ms.StoreMessageInfo(mi)
  759. }
  760. }
  761. func (x *PartnerDBBalance) String() string {
  762. return protoimpl.X.MessageStringOf(x)
  763. }
  764. func (*PartnerDBBalance) ProtoMessage() {}
  765. func (x *PartnerDBBalance) ProtoReflect() protoreflect.Message {
  766. mi := &file_partner_proto_msgTypes[12]
  767. if protoimpl.UnsafeEnabled && x != nil {
  768. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  769. if ms.LoadMessageInfo() == nil {
  770. ms.StoreMessageInfo(mi)
  771. }
  772. return ms
  773. }
  774. return mi.MessageOf(x)
  775. }
  776. // Deprecated: Use PartnerDBBalance.ProtoReflect.Descriptor instead.
  777. func (*PartnerDBBalance) Descriptor() ([]byte, []int) {
  778. return file_partner_proto_rawDescGZIP(), []int{12}
  779. }
  780. func (x *PartnerDBBalance) GetId() string {
  781. if x != nil {
  782. return x.Id
  783. }
  784. return ""
  785. }
  786. func (x *PartnerDBBalance) GetLevel() int64 {
  787. if x != nil {
  788. return x.Level
  789. }
  790. return 0
  791. }
  792. func (x *PartnerDBBalance) GetChatBenefit() int64 {
  793. if x != nil {
  794. return x.ChatBenefit
  795. }
  796. return 0
  797. }
  798. func (x *PartnerDBBalance) GetCallBenefit() int64 {
  799. if x != nil {
  800. return x.CallBenefit
  801. }
  802. return 0
  803. }
  804. type RandomPartnerInfo struct {
  805. state protoimpl.MessageState
  806. sizeCache protoimpl.SizeCache
  807. unknownFields protoimpl.UnknownFields
  808. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  809. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  810. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  811. Sex int64 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex"` // 性别
  812. }
  813. func (x *RandomPartnerInfo) Reset() {
  814. *x = RandomPartnerInfo{}
  815. if protoimpl.UnsafeEnabled {
  816. mi := &file_partner_proto_msgTypes[13]
  817. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  818. ms.StoreMessageInfo(mi)
  819. }
  820. }
  821. func (x *RandomPartnerInfo) String() string {
  822. return protoimpl.X.MessageStringOf(x)
  823. }
  824. func (*RandomPartnerInfo) ProtoMessage() {}
  825. func (x *RandomPartnerInfo) ProtoReflect() protoreflect.Message {
  826. mi := &file_partner_proto_msgTypes[13]
  827. if protoimpl.UnsafeEnabled && x != nil {
  828. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  829. if ms.LoadMessageInfo() == nil {
  830. ms.StoreMessageInfo(mi)
  831. }
  832. return ms
  833. }
  834. return mi.MessageOf(x)
  835. }
  836. // Deprecated: Use RandomPartnerInfo.ProtoReflect.Descriptor instead.
  837. func (*RandomPartnerInfo) Descriptor() ([]byte, []int) {
  838. return file_partner_proto_rawDescGZIP(), []int{13}
  839. }
  840. func (x *RandomPartnerInfo) GetId() string {
  841. if x != nil {
  842. return x.Id
  843. }
  844. return ""
  845. }
  846. func (x *RandomPartnerInfo) GetNickname() string {
  847. if x != nil {
  848. return x.Nickname
  849. }
  850. return ""
  851. }
  852. func (x *RandomPartnerInfo) GetAvatarUrl() string {
  853. if x != nil {
  854. return x.AvatarUrl
  855. }
  856. return ""
  857. }
  858. func (x *RandomPartnerInfo) GetSex() int64 {
  859. if x != nil {
  860. return x.Sex
  861. }
  862. return 0
  863. }
  864. type GetRandomPartnerRequest struct {
  865. state protoimpl.MessageState
  866. sizeCache protoimpl.SizeCache
  867. unknownFields protoimpl.UnknownFields
  868. Sex int64 `protobuf:"varint,1,opt,name=sex,proto3" json:"sex"` // 性别
  869. }
  870. func (x *GetRandomPartnerRequest) Reset() {
  871. *x = GetRandomPartnerRequest{}
  872. if protoimpl.UnsafeEnabled {
  873. mi := &file_partner_proto_msgTypes[14]
  874. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  875. ms.StoreMessageInfo(mi)
  876. }
  877. }
  878. func (x *GetRandomPartnerRequest) String() string {
  879. return protoimpl.X.MessageStringOf(x)
  880. }
  881. func (*GetRandomPartnerRequest) ProtoMessage() {}
  882. func (x *GetRandomPartnerRequest) ProtoReflect() protoreflect.Message {
  883. mi := &file_partner_proto_msgTypes[14]
  884. if protoimpl.UnsafeEnabled && x != nil {
  885. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  886. if ms.LoadMessageInfo() == nil {
  887. ms.StoreMessageInfo(mi)
  888. }
  889. return ms
  890. }
  891. return mi.MessageOf(x)
  892. }
  893. // Deprecated: Use GetRandomPartnerRequest.ProtoReflect.Descriptor instead.
  894. func (*GetRandomPartnerRequest) Descriptor() ([]byte, []int) {
  895. return file_partner_proto_rawDescGZIP(), []int{14}
  896. }
  897. func (x *GetRandomPartnerRequest) GetSex() int64 {
  898. if x != nil {
  899. return x.Sex
  900. }
  901. return 0
  902. }
  903. type PartnerApplyWithdrawRequest struct {
  904. state protoimpl.MessageState
  905. sizeCache protoimpl.SizeCache
  906. unknownFields protoimpl.UnknownFields
  907. TemplateId int64 `protobuf:"varint,1,opt,name=templateId,proto3" json:"templateId"` // 提现模板id
  908. }
  909. func (x *PartnerApplyWithdrawRequest) Reset() {
  910. *x = PartnerApplyWithdrawRequest{}
  911. if protoimpl.UnsafeEnabled {
  912. mi := &file_partner_proto_msgTypes[15]
  913. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  914. ms.StoreMessageInfo(mi)
  915. }
  916. }
  917. func (x *PartnerApplyWithdrawRequest) String() string {
  918. return protoimpl.X.MessageStringOf(x)
  919. }
  920. func (*PartnerApplyWithdrawRequest) ProtoMessage() {}
  921. func (x *PartnerApplyWithdrawRequest) ProtoReflect() protoreflect.Message {
  922. mi := &file_partner_proto_msgTypes[15]
  923. if protoimpl.UnsafeEnabled && x != nil {
  924. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  925. if ms.LoadMessageInfo() == nil {
  926. ms.StoreMessageInfo(mi)
  927. }
  928. return ms
  929. }
  930. return mi.MessageOf(x)
  931. }
  932. // Deprecated: Use PartnerApplyWithdrawRequest.ProtoReflect.Descriptor instead.
  933. func (*PartnerApplyWithdrawRequest) Descriptor() ([]byte, []int) {
  934. return file_partner_proto_rawDescGZIP(), []int{15}
  935. }
  936. func (x *PartnerApplyWithdrawRequest) GetTemplateId() int64 {
  937. if x != nil {
  938. return x.TemplateId
  939. }
  940. return 0
  941. }
  942. var File_partner_proto protoreflect.FileDescriptor
  943. var file_partner_proto_rawDesc = []byte{
  944. 0x0a, 0x0d, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
  945. 0x0b, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x1a, 0x1c, 0x67, 0x6f,
  946. 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74,
  947. 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67,
  948. 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74,
  949. 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d,
  950. 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  951. 0x1a, 0x1f, 0x61, 0x70, 0x69, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73,
  952. 0x2f, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  953. 0x6f, 0x1a, 0x13, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74,
  954. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x67, 0x0a, 0x1e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  955. 0x72, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c,
  956. 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74,
  957. 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64,
  958. 0x12, 0x2d, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x19,
  959. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x57, 0x69, 0x74,
  960. 0x68, 0x64, 0x72, 0x61, 0x77, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22,
  961. 0x7c, 0x0a, 0x0c, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x49, 0x6e, 0x66, 0x6f, 0x12,
  962. 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12,
  963. 0x14, 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05,
  964. 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18,
  965. 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x16, 0x0a,
  966. 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73,
  967. 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18,
  968. 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0x60, 0x0a,
  969. 0x20, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77,
  970. 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c,
  971. 0x79, 0x12, 0x3c, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32,
  972. 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61,
  973. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x54, 0x65, 0x6d,
  974. 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22,
  975. 0x71, 0x0a, 0x1b, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72,
  976. 0x61, 0x77, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e,
  977. 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14,
  978. 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6d,
  979. 0x6f, 0x6e, 0x65, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x03,
  980. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x14, 0x0a, 0x05,
  981. 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74,
  982. 0x6c, 0x65, 0x22, 0x49, 0x0a, 0x21, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x55, 0x70, 0x64,
  983. 0x61, 0x74, 0x65, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  984. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x77, 0x6f, 0x72, 0x6b, 0x69,
  985. 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d,
  986. 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x72, 0x0a,
  987. 0x16, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72, 0x64,
  988. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x77, 0x61, 0x72, 0x64,
  989. 0x54, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x77, 0x61, 0x72,
  990. 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  991. 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49,
  992. 0x44, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18,
  993. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70,
  994. 0x65, 0x22, 0x38, 0x0a, 0x0a, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x12,
  995. 0x2a, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e,
  996. 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x4c, 0x65, 0x76, 0x65,
  997. 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x83, 0x01, 0x0a, 0x09,
  998. 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x65, 0x76,
  999. 0x65, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12,
  1000. 0x20, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x74, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x18, 0x02,
  1001. 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x68, 0x61, 0x74, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69,
  1002. 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x61, 0x6c, 0x6c, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74,
  1003. 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x61, 0x6c, 0x6c, 0x42, 0x65, 0x6e, 0x65,
  1004. 0x66, 0x69, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e,
  1005. 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f,
  1006. 0x6e, 0x22, 0x52, 0x0a, 0x18, 0x41, 0x64, 0x64, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x42,
  1007. 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1c, 0x0a,
  1008. 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  1009. 0x52, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x62,
  1010. 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x62, 0x61,
  1011. 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x22, 0xb9, 0x03, 0x0a, 0x0b, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1012. 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  1013. 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d,
  1014. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d,
  1015. 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03,
  1016. 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12,
  1017. 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67,
  1018. 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03,
  1019. 0x73, 0x65, 0x78, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61,
  1020. 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73,
  1021. 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x65, 0x76,
  1022. 0x65, 0x6c, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12,
  1023. 0x18, 0x0a, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x08, 0x20, 0x03, 0x28, 0x03,
  1024. 0x52, 0x07, 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67,
  1025. 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69,
  1026. 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f,
  1027. 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52,
  1028. 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12,
  1029. 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28,
  1030. 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63,
  1031. 0x69, 0x74, 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12,
  1032. 0x12, 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61,
  1033. 0x72, 0x65, 0x61, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64,
  1034. 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49,
  1035. 0x64, 0x12, 0x18, 0x0a, 0x07, 0x69, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x18, 0x0f, 0x20, 0x01,
  1036. 0x28, 0x08, 0x52, 0x07, 0x69, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x12, 0x24, 0x0a, 0x0d, 0x77,
  1037. 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x10, 0x20, 0x01,
  1038. 0x28, 0x09, 0x52, 0x0d, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75,
  1039. 0x73, 0x22, 0xb4, 0x01, 0x0a, 0x0e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x4d, 0x65, 0x73,
  1040. 0x73, 0x61, 0x67, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  1041. 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x6c, 0x6f, 0x6f, 0x6b, 0x4e, 0x75, 0x6d, 0x18,
  1042. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6c, 0x6f, 0x6f, 0x6b, 0x4e, 0x75, 0x6d, 0x12, 0x24,
  1043. 0x0a, 0x0d, 0x6c, 0x6f, 0x6f, 0x6b, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x18,
  1044. 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x6c, 0x6f, 0x6f, 0x6b, 0x55, 0x6e, 0x72, 0x65, 0x61,
  1045. 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x2c, 0x0a, 0x11, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x52, 0x65, 0x63,
  1046. 0x65, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x4e, 0x75, 0x6d, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52,
  1047. 0x11, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x52, 0x65, 0x63, 0x65, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x4e,
  1048. 0x75, 0x6d, 0x12, 0x24, 0x0a, 0x0d, 0x72, 0x65, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52,
  1049. 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x72, 0x65, 0x76, 0x65, 0x72,
  1050. 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x74, 0x65, 0x22, 0x72, 0x0a, 0x0e, 0x50, 0x61, 0x72, 0x74,
  1051. 0x6e, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
  1052. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x62, 0x61,
  1053. 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x62, 0x61, 0x6c,
  1054. 0x61, 0x6e, 0x63, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x50, 0x72, 0x6f,
  1055. 0x66, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x74, 0x6f, 0x64, 0x61, 0x79,
  1056. 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18,
  1057. 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x22, 0x7c, 0x0a, 0x10,
  1058. 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x44, 0x42, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65,
  1059. 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64,
  1060. 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  1061. 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x74, 0x42, 0x65,
  1062. 0x6e, 0x65, 0x66, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x68, 0x61,
  1063. 0x74, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x61, 0x6c, 0x6c,
  1064. 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63,
  1065. 0x61, 0x6c, 0x6c, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x22, 0x6f, 0x0a, 0x11, 0x52, 0x61,
  1066. 0x6e, 0x64, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12,
  1067. 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12,
  1068. 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  1069. 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61,
  1070. 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  1071. 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78,
  1072. 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x22, 0x2b, 0x0a, 0x17, 0x47,
  1073. 0x65, 0x74, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52,
  1074. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x01, 0x20,
  1075. 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x22, 0x3d, 0x0a, 0x1b, 0x50, 0x61, 0x72, 0x74,
  1076. 0x6e, 0x65, 0x72, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77,
  1077. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x74, 0x65, 0x6d, 0x70, 0x6c,
  1078. 0x61, 0x74, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x74, 0x65, 0x6d,
  1079. 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x32, 0xa2, 0x27, 0x0a, 0x07, 0x50, 0x61, 0x72, 0x74,
  1080. 0x6e, 0x65, 0x72, 0x12, 0x60, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1081. 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  1082. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x18, 0x2e,
  1083. 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74,
  1084. 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x22,
  1085. 0x11, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x69, 0x6e,
  1086. 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x69, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74,
  1087. 0x6e, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  1088. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  1089. 0x74, 0x79, 0x1a, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  1090. 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x22,
  1091. 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61,
  1092. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x3a, 0x01, 0x2a,
  1093. 0x12, 0x52, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x44, 0x42,
  1094. 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1095. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x44, 0x50, 0x61,
  1096. 0x72, 0x61, 0x6d, 0x1a, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1097. 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x44, 0x42, 0x42, 0x61, 0x6c, 0x61, 0x6e,
  1098. 0x63, 0x65, 0x22, 0x00, 0x12, 0x43, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e,
  1099. 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1100. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72,
  1101. 0x61, 0x6d, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  1102. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x73, 0x67, 0x12, 0x69, 0x0a, 0x11, 0x47, 0x65, 0x74,
  1103. 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x16,
  1104. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  1105. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72,
  1106. 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x4d, 0x65, 0x73, 0x73,
  1107. 0x61, 0x67, 0x65, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70,
  1108. 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
  1109. 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6f, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e,
  1110. 0x65, 0x72, 0x4c, 0x6f, 0x6f, 0x6b, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  1111. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  1112. 0x79, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69,
  1113. 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65,
  1114. 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70,
  1115. 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6e, 0x75, 0x6d, 0x2f, 0x6c, 0x6f,
  1116. 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x6c, 0x0a, 0x0d, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f,
  1117. 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  1118. 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64,
  1119. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  1120. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  1121. 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70,
  1122. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x64, 0x65, 0x2f, 0x73, 0x65, 0x6e, 0x64,
  1123. 0x3a, 0x01, 0x2a, 0x12, 0x6f, 0x0a, 0x0e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e,
  1124. 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  1125. 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64,
  1126. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  1127. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  1128. 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70,
  1129. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x64, 0x65, 0x2f, 0x63, 0x68, 0x65, 0x63,
  1130. 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x54, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e,
  1131. 0x65, 0x72, 0x43, 0x69, 0x72, 0x63, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1a, 0x2e, 0x61,
  1132. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1133. 0x72, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1134. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x4d,
  1135. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x84, 0x01, 0x0a, 0x18, 0x55,
  1136. 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f,
  1137. 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1138. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x72,
  1139. 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e,
  1140. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  1141. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2a, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x24, 0x22, 0x1f, 0x2f,
  1142. 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x75, 0x70, 0x64, 0x61,
  1143. 0x74, 0x65, 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x01,
  1144. 0x2a, 0x12, 0x5c, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x50, 0x61,
  1145. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1146. 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x52, 0x61, 0x6e, 0x64, 0x6f,
  1147. 0x6d, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  1148. 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x52, 0x61,
  1149. 0x6e, 0x64, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12,
  1150. 0x61, 0x0a, 0x12, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x48, 0x6f, 0x6d,
  1151. 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  1152. 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x14,
  1153. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x48, 0x6f, 0x6d, 0x65,
  1154. 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x22, 0x11, 0x2f, 0x61,
  1155. 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x68, 0x6f, 0x6d, 0x65, 0x3a,
  1156. 0x01, 0x2a, 0x12, 0x75, 0x0a, 0x1e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74,
  1157. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x41, 0x6e, 0x64, 0x4c, 0x6f,
  1158. 0x6f, 0x6b, 0x65, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  1159. 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x1d, 0x2e,
  1160. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x65,
  1161. 0x64, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x22, 0x1b, 0x82, 0xd3,
  1162. 0xe4, 0x93, 0x02, 0x15, 0x22, 0x10, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e,
  1163. 0x65, 0x72, 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x74, 0x0a, 0x0c, 0x46, 0x69, 0x6e,
  1164. 0x64, 0x4c, 0x6f, 0x6f, 0x6b, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1165. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52,
  1166. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61,
  1167. 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c,
  1168. 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x21, 0x82, 0xd3,
  1169. 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e,
  1170. 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12,
  1171. 0x48, 0x0a, 0x11, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x44, 0x42,
  1172. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  1173. 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x19,
  1174. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73,
  1175. 0x6f, 0x6e, 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x5c, 0x0a, 0x06, 0x57, 0x78, 0x43,
  1176. 0x6f, 0x6e, 0x66, 0x12, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1177. 0x2e, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x71, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69,
  1178. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65,
  1179. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14,
  1180. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x77, 0x78, 0x2f, 0x6a, 0x73, 0x73, 0x64, 0x6b, 0x2f, 0x63, 0x6f,
  1181. 0x6e, 0x66, 0x69, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x72, 0x0a, 0x15, 0x43, 0x72, 0x65, 0x61, 0x74,
  1182. 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d,
  1183. 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x72,
  1184. 0x65, 0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61,
  1185. 0x6d, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x52, 0x6f, 0x6f,
  1186. 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18,
  1187. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x63, 0x72, 0x65,
  1188. 0x61, 0x74, 0x65, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x62, 0x0a, 0x10, 0x46,
  1189. 0x69, 0x6e, 0x64, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x79, 0x53, 0x65, 0x78, 0x12,
  1190. 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x78,
  1191. 0x52, 0x65, 0x71, 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  1192. 0x2e, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82,
  1193. 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74,
  1194. 0x6e, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x74, 0x61, 0x67, 0x3a, 0x01, 0x2a, 0x12,
  1195. 0x79, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73,
  1196. 0x74, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c,
  1197. 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x32, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  1198. 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x63,
  1199. 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74,
  1200. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f,
  1201. 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74,
  1202. 0x2f, 0x6f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x81, 0x01, 0x0a, 0x13, 0x46,
  1203. 0x69, 0x6e, 0x64, 0x55, 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69,
  1204. 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  1205. 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  1206. 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e,
  1207. 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  1208. 0x70, 0x6c, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70,
  1209. 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63,
  1210. 0x68, 0x61, 0x74, 0x2f, 0x75, 0x6e, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x3a, 0x01, 0x2a, 0x12, 0x87,
  1211. 0x01, 0x0a, 0x1a, 0x46, 0x69, 0x6e, 0x64, 0x57, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x53, 0x65, 0x76,
  1212. 0x65, 0x6e, 0x44, 0x61, 0x79, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e,
  1213. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50,
  1214. 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x61, 0x70, 0x69,
  1215. 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x46, 0x69, 0x6e,
  1216. 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x28,
  1217. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72,
  1218. 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x77,
  1219. 0x69, 0x74, 0x68, 0x69, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0x83, 0x01, 0x0a, 0x18, 0x46, 0x69, 0x6e,
  1220. 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x52, 0x6f, 0x6f,
  1221. 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  1222. 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  1223. 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x50, 0x61,
  1224. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73,
  1225. 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b,
  1226. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73,
  1227. 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x6f, 0x76, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x81,
  1228. 0x01, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72,
  1229. 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  1230. 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72,
  1231. 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61,
  1232. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65,
  1233. 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x23, 0x82,
  1234. 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74,
  1235. 0x6e, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x3a,
  1236. 0x01, 0x2a, 0x12, 0x75, 0x0a, 0x0f, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f,
  1237. 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x12, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  1238. 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d,
  1239. 0x73, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1240. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d,
  1241. 0x73, 0x67, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69,
  1242. 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x72, 0x6f,
  1243. 0x6f, 0x6d, 0x2f, 0x6d, 0x73, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x54, 0x0a, 0x11, 0x41, 0x64, 0x64,
  1244. 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x25,
  1245. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x41, 0x64, 0x64,
  1246. 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x52, 0x65,
  1247. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  1248. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12,
  1249. 0x6c, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x42, 0x61, 0x6c, 0x61, 0x6e,
  1250. 0x63, 0x65, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  1251. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a,
  1252. 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x4c, 0x65,
  1253. 0x76, 0x65, 0x6c, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d,
  1254. 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6c,
  1255. 0x65, 0x76, 0x65, 0x6c, 0x2f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x5f, 0x0a,
  1256. 0x10, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x73, 0x4c, 0x69, 0x6b,
  1257. 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50,
  1258. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x12, 0x2e, 0x61, 0x70, 0x69,
  1259. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x22, 0x1e,
  1260. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72,
  1261. 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x69, 0x73, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x67,
  1262. 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x65, 0x6d, 0x65, 0x42, 0x79, 0x54, 0x79, 0x70, 0x65,
  1263. 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65,
  1264. 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1265. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22,
  1266. 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61,
  1267. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f,
  1268. 0x74, 0x79, 0x70, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x43,
  1269. 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1270. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f,
  1271. 0x70, 0x69, 0x63, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69,
  1272. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69,
  1273. 0x63, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f,
  1274. 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64,
  1275. 0x2f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x3a, 0x01, 0x2a, 0x12, 0x69, 0x0a, 0x0a, 0x52, 0x61, 0x6e,
  1276. 0x64, 0x6f, 0x6d, 0x4d, 0x65, 0x6d, 0x65, 0x12, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1277. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x75, 0x6d, 0x1a, 0x1a,
  1278. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d,
  1279. 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93,
  1280. 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  1281. 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f,
  1282. 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x78, 0x0a, 0x12, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x53, 0x77,
  1283. 0x69, 0x66, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69,
  1284. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x75,
  1285. 0x6d, 0x41, 0x6e, 0x64, 0x53, 0x65, 0x78, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1286. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x4c,
  1287. 0x69, 0x73, 0x74, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70,
  1288. 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x74,
  1289. 0x6f, 0x70, 0x69, 0x63, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x6b,
  1290. 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x12,
  1291. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  1292. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1293. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x4c, 0x69,
  1294. 0x73, 0x74, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69,
  1295. 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6d, 0x65,
  1296. 0x6d, 0x65, 0x2f, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x12, 0x50,
  1297. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x43, 0x68, 0x61, 0x74, 0x43, 0x61, 0x72,
  1298. 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50,
  1299. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69,
  1300. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43,
  1301. 0x68, 0x61, 0x74, 0x43, 0x61, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x21, 0x82, 0xd3, 0xe4,
  1302. 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1303. 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x63, 0x61, 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x70,
  1304. 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x54,
  1305. 0x69, 0x74, 0x6c, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  1306. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x19, 0x2e, 0x61,
  1307. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69,
  1308. 0x74, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22,
  1309. 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x66, 0x69,
  1310. 0x6e, 0x64, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x3a, 0x01, 0x2a,
  1311. 0x12, 0x5c, 0x0a, 0x0b, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x4c, 0x69, 0x6b, 0x65, 0x12,
  1312. 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72,
  1313. 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  1314. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  1315. 0x22, 0x1c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x22, 0x11, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70,
  1316. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x60,
  1317. 0x0a, 0x0d, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x55, 0x6e, 0x4c, 0x69, 0x6b, 0x65, 0x12,
  1318. 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72,
  1319. 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  1320. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  1321. 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70,
  1322. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x75, 0x6e, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a,
  1323. 0x12, 0x5f, 0x0a, 0x06, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x1d, 0x2e, 0x61, 0x70, 0x69,
  1324. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x43, 0x68,
  1325. 0x61, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  1326. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  1327. 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  1328. 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x3a, 0x01,
  1329. 0x2a, 0x12, 0x72, 0x0a, 0x0f, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x41,
  1330. 0x77, 0x61, 0x72, 0x64, 0x12, 0x23, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e,
  1331. 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61,
  1332. 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  1333. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  1334. 0x79, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  1335. 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x61, 0x77, 0x61,
  1336. 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x93, 0x01, 0x0a, 0x1a, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1337. 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74,
  1338. 0x61, 0x74, 0x75, 0x73, 0x12, 0x2e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e,
  1339. 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  1340. 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71,
  1341. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  1342. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2d, 0x82, 0xd3,
  1343. 0xe4, 0x93, 0x02, 0x27, 0x22, 0x22, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e,
  1344. 0x65, 0x72, 0x2f, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x75,
  1345. 0x73, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x5b, 0x0a, 0x1a, 0x46,
  1346. 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x61, 0x72, 0x74,
  1347. 0x6e, 0x65, 0x72, 0x44, 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1348. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d,
  1349. 0x6d, 0x65, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70,
  1350. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44,
  1351. 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x83, 0x01, 0x0a, 0x16, 0x46, 0x69, 0x6e,
  1352. 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x41, 0x76, 0x61,
  1353. 0x74, 0x61, 0x72, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  1354. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x27, 0x2e, 0x61, 0x70,
  1355. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x76, 0x65,
  1356. 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x52,
  1357. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61,
  1358. 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6f, 0x76, 0x65, 0x72, 0x2f,
  1359. 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x73,
  1360. 0x0a, 0x0f, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x4e, 0x75,
  1361. 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1362. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1363. 0x63, 0x68, 0x61, 0x74, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x74, 0x52, 0x65, 0x70, 0x6c,
  1364. 0x79, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  1365. 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f,
  1366. 0x63, 0x68, 0x61, 0x74, 0x2f, 0x75, 0x6e, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x2f, 0x6e, 0x75, 0x6d,
  1367. 0x3a, 0x01, 0x2a, 0x12, 0x7a, 0x0a, 0x14, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x41, 0x70,
  1368. 0x70, 0x6c, 0x79, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x12, 0x28, 0x2e, 0x61, 0x70,
  1369. 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1370. 0x72, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x52, 0x65,
  1371. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  1372. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x20, 0x82,
  1373. 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74,
  1374. 0x6e, 0x65, 0x72, 0x2f, 0x77, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x3a, 0x01, 0x2a, 0x12,
  1375. 0x94, 0x01, 0x0a, 0x1b, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x57, 0x69, 0x74, 0x68, 0x64,
  1376. 0x72, 0x61, 0x77, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12,
  1377. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  1378. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61,
  1379. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x57, 0x69, 0x74,
  1380. 0x68, 0x64, 0x72, 0x61, 0x77, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x4c, 0x69, 0x73,
  1381. 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x2e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x28, 0x22, 0x23,
  1382. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x77, 0x69, 0x74,
  1383. 0x68, 0x64, 0x72, 0x61, 0x77, 0x2f, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x2f, 0x6c,
  1384. 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x93, 0x01, 0x0a, 0x19, 0x50, 0x61, 0x72, 0x74, 0x6e,
  1385. 0x65, 0x72, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64,
  1386. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  1387. 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1388. 0x74, 0x1a, 0x2b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e,
  1389. 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x52,
  1390. 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x2c,
  1391. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x26, 0x22, 0x21, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72,
  1392. 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x77, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x2f, 0x72, 0x65,
  1393. 0x63, 0x6f, 0x72, 0x64, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x42, 0x46, 0x0a, 0x0b,
  1394. 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x50, 0x01, 0x5a, 0x35, 0x67,
  1395. 0x69, 0x74, 0x2e, 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65,
  1396. 0x72, 0x76, 0x65, 0x72, 0x2f, 0x70, 0x77, 0x2d, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  1397. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x3b, 0x70, 0x61, 0x72,
  1398. 0x74, 0x6e, 0x65, 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  1399. }
  1400. var (
  1401. file_partner_proto_rawDescOnce sync.Once
  1402. file_partner_proto_rawDescData = file_partner_proto_rawDesc
  1403. )
  1404. func file_partner_proto_rawDescGZIP() []byte {
  1405. file_partner_proto_rawDescOnce.Do(func() {
  1406. file_partner_proto_rawDescData = protoimpl.X.CompressGZIP(file_partner_proto_rawDescData)
  1407. })
  1408. return file_partner_proto_rawDescData
  1409. }
  1410. var file_partner_proto_msgTypes = make([]protoimpl.MessageInfo, 16)
  1411. var file_partner_proto_goTypes = []interface{}{
  1412. (*PartnerWithdrawRecordListReply)(nil), // 0: api.partner.PartnerWithdrawRecordListReply
  1413. (*WithdrawInfo)(nil), // 1: api.partner.WithdrawInfo
  1414. (*PartnerWithdrawTemplateListReply)(nil), // 2: api.partner.PartnerWithdrawTemplateListReply
  1415. (*PartnerWithdrawTemplateInfo)(nil), // 3: api.partner.PartnerWithdrawTemplateInfo
  1416. (*PartnerUpdateWorkingStatusRequest)(nil), // 4: api.partner.PartnerUpdateWorkingStatusRequest
  1417. (*PartnerGetAwardRequest)(nil), // 5: api.partner.PartnerGetAwardRequest
  1418. (*LevelTable)(nil), // 6: api.partner.LevelTable
  1419. (*LevelInfo)(nil), // 7: api.partner.LevelInfo
  1420. (*AddPartnerBalanceRequest)(nil), // 8: api.partner.AddPartnerBalanceRequest
  1421. (*PartnerInfo)(nil), // 9: api.partner.PartnerInfo
  1422. (*PartnerMessage)(nil), // 10: api.partner.PartnerMessage
  1423. (*PartnerBalance)(nil), // 11: api.partner.PartnerBalance
  1424. (*PartnerDBBalance)(nil), // 12: api.partner.PartnerDBBalance
  1425. (*RandomPartnerInfo)(nil), // 13: api.partner.RandomPartnerInfo
  1426. (*GetRandomPartnerRequest)(nil), // 14: api.partner.GetRandomPartnerRequest
  1427. (*PartnerApplyWithdrawRequest)(nil), // 15: api.partner.PartnerApplyWithdrawRequest
  1428. (*emptypb.Empty)(nil), // 16: google.protobuf.Empty
  1429. (*common.PartnerIDParam)(nil), // 17: api.common.PartnerIDParam
  1430. (*common.PersonIDParam)(nil), // 18: api.common.PersonIDParam
  1431. (*common.SendPhoneCodeRequest)(nil), // 19: api.common.SendPhoneCodeRequest
  1432. (*common.CheckPhoneCodeRequest)(nil), // 20: api.common.CheckPhoneCodeRequest
  1433. (*common.UpdateInformationRequest)(nil), // 21: api.common.UpdateInformationRequest
  1434. (*common.PersonParam)(nil), // 22: api.common.PersonParam
  1435. (*common.ListPageRequest)(nil), // 23: api.common.ListPageRequest
  1436. (*common.PersonIDList)(nil), // 24: api.common.PersonIDList
  1437. (*common.WxConfReq)(nil), // 25: api.common.WxConfReq
  1438. (*common.CreateChatRoomParam)(nil), // 26: api.common.CreateChatRoomParam
  1439. (*common.SexReq)(nil), // 27: api.common.SexReq
  1440. (*common.ListPage2Request)(nil), // 28: api.common.ListPage2Request
  1441. (*common.FindChatRecordListRequest)(nil), // 29: api.common.FindChatRecordListRequest
  1442. (*common.FindChatRoomMsgRequest)(nil), // 30: api.common.FindChatRoomMsgRequest
  1443. (*common.MemeRequest)(nil), // 31: api.common.MemeRequest
  1444. (*common.FindChatTopicRequest)(nil), // 32: api.common.FindChatTopicRequest
  1445. (*common.RandomNum)(nil), // 33: api.common.RandomNum
  1446. (*common.RandomNumAndSex)(nil), // 34: api.common.RandomNumAndSex
  1447. (*common.ReportChatRequest)(nil), // 35: api.common.ReportChatRequest
  1448. (*common.FindRecommendRequest)(nil), // 36: api.common.FindRecommendRequest
  1449. (*common.PersonMsg)(nil), // 37: api.common.PersonMsg
  1450. (*statistics.LookMessageReply)(nil), // 38: api.statistics.LookMessageReply
  1451. (*common.AddFriendMessageInfo)(nil), // 39: api.common.AddFriendMessageInfo
  1452. (*common.HomeInfo)(nil), // 40: api.common.HomeInfo
  1453. (*common.LookedAndLikedNum)(nil), // 41: api.common.LookedAndLikedNum
  1454. (*statistics.LookAndLikeListReply)(nil), // 42: api.statistics.LookAndLikeListReply
  1455. (*common.PersonDBReply)(nil), // 43: api.common.PersonDBReply
  1456. (*common.WxConfResponse)(nil), // 44: api.common.WxConfResponse
  1457. (*chat.RoomReply)(nil), // 45: api.chat.RoomReply
  1458. (*common.TagListReply)(nil), // 46: api.common.TagListReply
  1459. (*common.RecommendPersonListReply)(nil), // 47: api.common.RecommendPersonListReply
  1460. (*chat.PartnerFindRoomListReply)(nil), // 48: api.chat.PartnerFindRoomListReply
  1461. (*common.ChatRecordListReply)(nil), // 49: api.common.ChatRecordListReply
  1462. (*common.ChatRoomMsg)(nil), // 50: api.common.ChatRoomMsg
  1463. (*common.IsLike)(nil), // 51: api.common.IsLike
  1464. (*common.MemeList)(nil), // 52: api.common.MemeList
  1465. (*common.ChatTopicList)(nil), // 53: api.common.ChatTopicList
  1466. (*common.CommonTextList)(nil), // 54: api.common.CommonTextList
  1467. (*common.MemeTitleList)(nil), // 55: api.common.MemeTitleList
  1468. (*common.PartnerChatCardInfo)(nil), // 56: api.common.PartnerChatCardInfo
  1469. (*common.FindOverSevenDayAvatarReply)(nil), // 57: api.common.FindOverSevenDayAvatarReply
  1470. (*chat.FindNotReplyNumReply)(nil), // 58: api.chat.FindNotReplyNumReply
  1471. }
  1472. var file_partner_proto_depIdxs = []int32{
  1473. 1, // 0: api.partner.PartnerWithdrawRecordListReply.list:type_name -> api.partner.WithdrawInfo
  1474. 3, // 1: api.partner.PartnerWithdrawTemplateListReply.list:type_name -> api.partner.PartnerWithdrawTemplateInfo
  1475. 7, // 2: api.partner.LevelTable.list:type_name -> api.partner.LevelInfo
  1476. 16, // 3: api.partner.Partner.GetPartnerInfo:input_type -> google.protobuf.Empty
  1477. 16, // 4: api.partner.Partner.GetPartnerBalance:input_type -> google.protobuf.Empty
  1478. 17, // 5: api.partner.Partner.GetPartnerDBBalance:input_type -> api.common.PartnerIDParam
  1479. 18, // 6: api.partner.Partner.GetPartnerDBMsg:input_type -> api.common.PersonIDParam
  1480. 16, // 7: api.partner.Partner.GetPartnerMessage:input_type -> google.protobuf.Empty
  1481. 16, // 8: api.partner.Partner.GetPartnerLookNum:input_type -> google.protobuf.Empty
  1482. 19, // 9: api.partner.Partner.SendPhoneCode:input_type -> api.common.SendPhoneCodeRequest
  1483. 20, // 10: api.partner.Partner.CheckPhoneCode:input_type -> api.common.CheckPhoneCodeRequest
  1484. 17, // 11: api.partner.Partner.GetPartnerCircleInfo:input_type -> api.common.PartnerIDParam
  1485. 21, // 12: api.partner.Partner.UpdatePartnerInformation:input_type -> api.common.UpdateInformationRequest
  1486. 14, // 13: api.partner.Partner.GetRandomPartnerInfo:input_type -> api.partner.GetRandomPartnerRequest
  1487. 22, // 14: api.partner.Partner.PartnerGetHomeInfo:input_type -> api.common.PersonParam
  1488. 22, // 15: api.partner.Partner.PartnerGetPersonLikedAndLooked:input_type -> api.common.PersonParam
  1489. 23, // 16: api.partner.Partner.FindLookList:input_type -> api.common.ListPageRequest
  1490. 24, // 17: api.partner.Partner.FindPartnerDBList:input_type -> api.common.PersonIDList
  1491. 25, // 18: api.partner.Partner.WxConf:input_type -> api.common.WxConfReq
  1492. 26, // 19: api.partner.Partner.CreateUserPartnerRoom:input_type -> api.common.CreateChatRoomParam
  1493. 27, // 20: api.partner.Partner.FindTagListBySex:input_type -> api.common.SexReq
  1494. 28, // 21: api.partner.Partner.FindOnlineList:input_type -> api.common.ListPage2Request
  1495. 23, // 22: api.partner.Partner.FindUnReplyRoomList:input_type -> api.common.ListPageRequest
  1496. 23, // 23: api.partner.Partner.FindWithinSevenDayRoomList:input_type -> api.common.ListPageRequest
  1497. 23, // 24: api.partner.Partner.FindOverSevenDayRoomList:input_type -> api.common.ListPageRequest
  1498. 29, // 25: api.partner.Partner.FindChatRecordList:input_type -> api.common.FindChatRecordListRequest
  1499. 30, // 26: api.partner.Partner.FindChatRoomMsg:input_type -> api.common.FindChatRoomMsgRequest
  1500. 8, // 27: api.partner.Partner.AddPartnerBalance:input_type -> api.partner.AddPartnerBalanceRequest
  1501. 16, // 28: api.partner.Partner.GetLevelBalanceTable:input_type -> google.protobuf.Empty
  1502. 22, // 29: api.partner.Partner.GetPartnerIsLike:input_type -> api.common.PersonParam
  1503. 31, // 30: api.partner.Partner.FindMemeByType:input_type -> api.common.MemeRequest
  1504. 32, // 31: api.partner.Partner.FindChatTopic:input_type -> api.common.FindChatTopicRequest
  1505. 33, // 32: api.partner.Partner.RandomMeme:input_type -> api.common.RandomNum
  1506. 34, // 33: api.partner.Partner.RandomSwiftMessage:input_type -> api.common.RandomNumAndSex
  1507. 16, // 34: api.partner.Partner.FindMemeTitle:input_type -> google.protobuf.Empty
  1508. 22, // 35: api.partner.Partner.PartnerGetChatCard:input_type -> api.common.PersonParam
  1509. 16, // 36: api.partner.Partner.FindChatTopicTitle:input_type -> google.protobuf.Empty
  1510. 22, // 37: api.partner.Partner.PartnerLike:input_type -> api.common.PersonParam
  1511. 22, // 38: api.partner.Partner.PartnerUnLike:input_type -> api.common.PersonParam
  1512. 35, // 39: api.partner.Partner.Report:input_type -> api.common.ReportChatRequest
  1513. 5, // 40: api.partner.Partner.PartnerGetAward:input_type -> api.partner.PartnerGetAwardRequest
  1514. 4, // 41: api.partner.Partner.PartnerUpdateWorkingStatus:input_type -> api.partner.PartnerUpdateWorkingStatusRequest
  1515. 36, // 42: api.partner.Partner.FindRecommendPartnerDBList:input_type -> api.common.FindRecommendRequest
  1516. 16, // 43: api.partner.Partner.FindOverSevenDayAvatar:input_type -> google.protobuf.Empty
  1517. 16, // 44: api.partner.Partner.FindNotReplyNum:input_type -> google.protobuf.Empty
  1518. 15, // 45: api.partner.Partner.PartnerApplyWithdraw:input_type -> api.partner.PartnerApplyWithdrawRequest
  1519. 16, // 46: api.partner.Partner.PartnerWithdrawTemplateList:input_type -> google.protobuf.Empty
  1520. 23, // 47: api.partner.Partner.PartnerWithdrawRecordList:input_type -> api.common.ListPageRequest
  1521. 9, // 48: api.partner.Partner.GetPartnerInfo:output_type -> api.partner.PartnerInfo
  1522. 11, // 49: api.partner.Partner.GetPartnerBalance:output_type -> api.partner.PartnerBalance
  1523. 12, // 50: api.partner.Partner.GetPartnerDBBalance:output_type -> api.partner.PartnerDBBalance
  1524. 37, // 51: api.partner.Partner.GetPartnerDBMsg:output_type -> api.common.PersonMsg
  1525. 10, // 52: api.partner.Partner.GetPartnerMessage:output_type -> api.partner.PartnerMessage
  1526. 38, // 53: api.partner.Partner.GetPartnerLookNum:output_type -> api.statistics.LookMessageReply
  1527. 16, // 54: api.partner.Partner.SendPhoneCode:output_type -> google.protobuf.Empty
  1528. 16, // 55: api.partner.Partner.CheckPhoneCode:output_type -> google.protobuf.Empty
  1529. 39, // 56: api.partner.Partner.GetPartnerCircleInfo:output_type -> api.common.AddFriendMessageInfo
  1530. 16, // 57: api.partner.Partner.UpdatePartnerInformation:output_type -> google.protobuf.Empty
  1531. 13, // 58: api.partner.Partner.GetRandomPartnerInfo:output_type -> api.partner.RandomPartnerInfo
  1532. 40, // 59: api.partner.Partner.PartnerGetHomeInfo:output_type -> api.common.HomeInfo
  1533. 41, // 60: api.partner.Partner.PartnerGetPersonLikedAndLooked:output_type -> api.common.LookedAndLikedNum
  1534. 42, // 61: api.partner.Partner.FindLookList:output_type -> api.statistics.LookAndLikeListReply
  1535. 43, // 62: api.partner.Partner.FindPartnerDBList:output_type -> api.common.PersonDBReply
  1536. 44, // 63: api.partner.Partner.WxConf:output_type -> api.common.WxConfResponse
  1537. 45, // 64: api.partner.Partner.CreateUserPartnerRoom:output_type -> api.chat.RoomReply
  1538. 46, // 65: api.partner.Partner.FindTagListBySex:output_type -> api.common.TagListReply
  1539. 47, // 66: api.partner.Partner.FindOnlineList:output_type -> api.common.RecommendPersonListReply
  1540. 48, // 67: api.partner.Partner.FindUnReplyRoomList:output_type -> api.chat.PartnerFindRoomListReply
  1541. 48, // 68: api.partner.Partner.FindWithinSevenDayRoomList:output_type -> api.chat.PartnerFindRoomListReply
  1542. 48, // 69: api.partner.Partner.FindOverSevenDayRoomList:output_type -> api.chat.PartnerFindRoomListReply
  1543. 49, // 70: api.partner.Partner.FindChatRecordList:output_type -> api.common.ChatRecordListReply
  1544. 50, // 71: api.partner.Partner.FindChatRoomMsg:output_type -> api.common.ChatRoomMsg
  1545. 16, // 72: api.partner.Partner.AddPartnerBalance:output_type -> google.protobuf.Empty
  1546. 6, // 73: api.partner.Partner.GetLevelBalanceTable:output_type -> api.partner.LevelTable
  1547. 51, // 74: api.partner.Partner.GetPartnerIsLike:output_type -> api.common.IsLike
  1548. 52, // 75: api.partner.Partner.FindMemeByType:output_type -> api.common.MemeList
  1549. 53, // 76: api.partner.Partner.FindChatTopic:output_type -> api.common.ChatTopicList
  1550. 54, // 77: api.partner.Partner.RandomMeme:output_type -> api.common.CommonTextList
  1551. 54, // 78: api.partner.Partner.RandomSwiftMessage:output_type -> api.common.CommonTextList
  1552. 55, // 79: api.partner.Partner.FindMemeTitle:output_type -> api.common.MemeTitleList
  1553. 56, // 80: api.partner.Partner.PartnerGetChatCard:output_type -> api.common.PartnerChatCardInfo
  1554. 55, // 81: api.partner.Partner.FindChatTopicTitle:output_type -> api.common.MemeTitleList
  1555. 16, // 82: api.partner.Partner.PartnerLike:output_type -> google.protobuf.Empty
  1556. 16, // 83: api.partner.Partner.PartnerUnLike:output_type -> google.protobuf.Empty
  1557. 16, // 84: api.partner.Partner.Report:output_type -> google.protobuf.Empty
  1558. 16, // 85: api.partner.Partner.PartnerGetAward:output_type -> google.protobuf.Empty
  1559. 16, // 86: api.partner.Partner.PartnerUpdateWorkingStatus:output_type -> google.protobuf.Empty
  1560. 43, // 87: api.partner.Partner.FindRecommendPartnerDBList:output_type -> api.common.PersonDBReply
  1561. 57, // 88: api.partner.Partner.FindOverSevenDayAvatar:output_type -> api.common.FindOverSevenDayAvatarReply
  1562. 58, // 89: api.partner.Partner.FindNotReplyNum:output_type -> api.chat.FindNotReplyNumReply
  1563. 16, // 90: api.partner.Partner.PartnerApplyWithdraw:output_type -> google.protobuf.Empty
  1564. 2, // 91: api.partner.Partner.PartnerWithdrawTemplateList:output_type -> api.partner.PartnerWithdrawTemplateListReply
  1565. 0, // 92: api.partner.Partner.PartnerWithdrawRecordList:output_type -> api.partner.PartnerWithdrawRecordListReply
  1566. 48, // [48:93] is the sub-list for method output_type
  1567. 3, // [3:48] is the sub-list for method input_type
  1568. 3, // [3:3] is the sub-list for extension type_name
  1569. 3, // [3:3] is the sub-list for extension extendee
  1570. 0, // [0:3] is the sub-list for field type_name
  1571. }
  1572. func init() { file_partner_proto_init() }
  1573. func file_partner_proto_init() {
  1574. if File_partner_proto != nil {
  1575. return
  1576. }
  1577. if !protoimpl.UnsafeEnabled {
  1578. file_partner_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  1579. switch v := v.(*PartnerWithdrawRecordListReply); i {
  1580. case 0:
  1581. return &v.state
  1582. case 1:
  1583. return &v.sizeCache
  1584. case 2:
  1585. return &v.unknownFields
  1586. default:
  1587. return nil
  1588. }
  1589. }
  1590. file_partner_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  1591. switch v := v.(*WithdrawInfo); i {
  1592. case 0:
  1593. return &v.state
  1594. case 1:
  1595. return &v.sizeCache
  1596. case 2:
  1597. return &v.unknownFields
  1598. default:
  1599. return nil
  1600. }
  1601. }
  1602. file_partner_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  1603. switch v := v.(*PartnerWithdrawTemplateListReply); i {
  1604. case 0:
  1605. return &v.state
  1606. case 1:
  1607. return &v.sizeCache
  1608. case 2:
  1609. return &v.unknownFields
  1610. default:
  1611. return nil
  1612. }
  1613. }
  1614. file_partner_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  1615. switch v := v.(*PartnerWithdrawTemplateInfo); i {
  1616. case 0:
  1617. return &v.state
  1618. case 1:
  1619. return &v.sizeCache
  1620. case 2:
  1621. return &v.unknownFields
  1622. default:
  1623. return nil
  1624. }
  1625. }
  1626. file_partner_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  1627. switch v := v.(*PartnerUpdateWorkingStatusRequest); i {
  1628. case 0:
  1629. return &v.state
  1630. case 1:
  1631. return &v.sizeCache
  1632. case 2:
  1633. return &v.unknownFields
  1634. default:
  1635. return nil
  1636. }
  1637. }
  1638. file_partner_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  1639. switch v := v.(*PartnerGetAwardRequest); i {
  1640. case 0:
  1641. return &v.state
  1642. case 1:
  1643. return &v.sizeCache
  1644. case 2:
  1645. return &v.unknownFields
  1646. default:
  1647. return nil
  1648. }
  1649. }
  1650. file_partner_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  1651. switch v := v.(*LevelTable); i {
  1652. case 0:
  1653. return &v.state
  1654. case 1:
  1655. return &v.sizeCache
  1656. case 2:
  1657. return &v.unknownFields
  1658. default:
  1659. return nil
  1660. }
  1661. }
  1662. file_partner_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  1663. switch v := v.(*LevelInfo); i {
  1664. case 0:
  1665. return &v.state
  1666. case 1:
  1667. return &v.sizeCache
  1668. case 2:
  1669. return &v.unknownFields
  1670. default:
  1671. return nil
  1672. }
  1673. }
  1674. file_partner_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  1675. switch v := v.(*AddPartnerBalanceRequest); i {
  1676. case 0:
  1677. return &v.state
  1678. case 1:
  1679. return &v.sizeCache
  1680. case 2:
  1681. return &v.unknownFields
  1682. default:
  1683. return nil
  1684. }
  1685. }
  1686. file_partner_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  1687. switch v := v.(*PartnerInfo); i {
  1688. case 0:
  1689. return &v.state
  1690. case 1:
  1691. return &v.sizeCache
  1692. case 2:
  1693. return &v.unknownFields
  1694. default:
  1695. return nil
  1696. }
  1697. }
  1698. file_partner_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  1699. switch v := v.(*PartnerMessage); i {
  1700. case 0:
  1701. return &v.state
  1702. case 1:
  1703. return &v.sizeCache
  1704. case 2:
  1705. return &v.unknownFields
  1706. default:
  1707. return nil
  1708. }
  1709. }
  1710. file_partner_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  1711. switch v := v.(*PartnerBalance); i {
  1712. case 0:
  1713. return &v.state
  1714. case 1:
  1715. return &v.sizeCache
  1716. case 2:
  1717. return &v.unknownFields
  1718. default:
  1719. return nil
  1720. }
  1721. }
  1722. file_partner_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  1723. switch v := v.(*PartnerDBBalance); i {
  1724. case 0:
  1725. return &v.state
  1726. case 1:
  1727. return &v.sizeCache
  1728. case 2:
  1729. return &v.unknownFields
  1730. default:
  1731. return nil
  1732. }
  1733. }
  1734. file_partner_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  1735. switch v := v.(*RandomPartnerInfo); i {
  1736. case 0:
  1737. return &v.state
  1738. case 1:
  1739. return &v.sizeCache
  1740. case 2:
  1741. return &v.unknownFields
  1742. default:
  1743. return nil
  1744. }
  1745. }
  1746. file_partner_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  1747. switch v := v.(*GetRandomPartnerRequest); i {
  1748. case 0:
  1749. return &v.state
  1750. case 1:
  1751. return &v.sizeCache
  1752. case 2:
  1753. return &v.unknownFields
  1754. default:
  1755. return nil
  1756. }
  1757. }
  1758. file_partner_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  1759. switch v := v.(*PartnerApplyWithdrawRequest); i {
  1760. case 0:
  1761. return &v.state
  1762. case 1:
  1763. return &v.sizeCache
  1764. case 2:
  1765. return &v.unknownFields
  1766. default:
  1767. return nil
  1768. }
  1769. }
  1770. }
  1771. type x struct{}
  1772. out := protoimpl.TypeBuilder{
  1773. File: protoimpl.DescBuilder{
  1774. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  1775. RawDescriptor: file_partner_proto_rawDesc,
  1776. NumEnums: 0,
  1777. NumMessages: 16,
  1778. NumExtensions: 0,
  1779. NumServices: 1,
  1780. },
  1781. GoTypes: file_partner_proto_goTypes,
  1782. DependencyIndexes: file_partner_proto_depIdxs,
  1783. MessageInfos: file_partner_proto_msgTypes,
  1784. }.Build()
  1785. File_partner_proto = out.File
  1786. file_partner_proto_rawDesc = nil
  1787. file_partner_proto_goTypes = nil
  1788. file_partner_proto_depIdxs = nil
  1789. }