partner.pb.go 127 KB

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