partner.pb.go 115 KB

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