base.pb.go 99 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.25.0
  4. // protoc v3.14.0
  5. // source: base.proto
  6. package base
  7. import (
  8. proto "github.com/golang/protobuf/proto"
  9. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  10. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  11. reflect "reflect"
  12. sync "sync"
  13. )
  14. const (
  15. // Verify that this generated code is sufficiently up-to-date.
  16. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  17. // Verify that runtime/protoimpl is sufficiently up-to-date.
  18. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  19. )
  20. // This is a compile-time assertion that a sufficiently up-to-date version
  21. // of the legacy proto package is being used.
  22. const _ = proto.ProtoPackageIsVersion4
  23. type ErrorCode int32
  24. const (
  25. ErrorCode_OK ErrorCode = 0
  26. ErrorCode_PGErr ErrorCode = 100
  27. ErrorCode_PmsnError ErrorCode = 110
  28. ErrorCode_J2MError ErrorCode = 120
  29. ErrorCode_WebStatusError ErrorCode = 121
  30. ErrorCode_WebToImStatusError ErrorCode = 122
  31. ErrorCode_ImToWebtatusError ErrorCode = 123
  32. )
  33. // Enum value maps for ErrorCode.
  34. var (
  35. ErrorCode_name = map[int32]string{
  36. 0: "OK",
  37. 100: "PGErr",
  38. 110: "PmsnError",
  39. 120: "J2MError",
  40. 121: "WebStatusError",
  41. 122: "WebToImStatusError",
  42. 123: "ImToWebtatusError",
  43. }
  44. ErrorCode_value = map[string]int32{
  45. "OK": 0,
  46. "PGErr": 100,
  47. "PmsnError": 110,
  48. "J2MError": 120,
  49. "WebStatusError": 121,
  50. "WebToImStatusError": 122,
  51. "ImToWebtatusError": 123,
  52. }
  53. )
  54. func (x ErrorCode) Enum() *ErrorCode {
  55. p := new(ErrorCode)
  56. *p = x
  57. return p
  58. }
  59. func (x ErrorCode) String() string {
  60. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  61. }
  62. func (ErrorCode) Descriptor() protoreflect.EnumDescriptor {
  63. return file_base_proto_enumTypes[0].Descriptor()
  64. }
  65. func (ErrorCode) Type() protoreflect.EnumType {
  66. return &file_base_proto_enumTypes[0]
  67. }
  68. func (x ErrorCode) Number() protoreflect.EnumNumber {
  69. return protoreflect.EnumNumber(x)
  70. }
  71. // Deprecated: Use ErrorCode.Descriptor instead.
  72. func (ErrorCode) EnumDescriptor() ([]byte, []int) {
  73. return file_base_proto_rawDescGZIP(), []int{0}
  74. }
  75. type WebStatus int32
  76. const (
  77. WebStatus_Ban WebStatus = 0
  78. WebStatus_On WebStatus = 1
  79. WebStatus_Delete WebStatus = 9
  80. WebStatus_All WebStatus = 99
  81. )
  82. // Enum value maps for WebStatus.
  83. var (
  84. WebStatus_name = map[int32]string{
  85. 0: "Ban",
  86. 1: "On",
  87. 9: "Delete",
  88. 99: "All",
  89. }
  90. WebStatus_value = map[string]int32{
  91. "Ban": 0,
  92. "On": 1,
  93. "Delete": 9,
  94. "All": 99,
  95. }
  96. )
  97. func (x WebStatus) Enum() *WebStatus {
  98. p := new(WebStatus)
  99. *p = x
  100. return p
  101. }
  102. func (x WebStatus) String() string {
  103. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  104. }
  105. func (WebStatus) Descriptor() protoreflect.EnumDescriptor {
  106. return file_base_proto_enumTypes[1].Descriptor()
  107. }
  108. func (WebStatus) Type() protoreflect.EnumType {
  109. return &file_base_proto_enumTypes[1]
  110. }
  111. func (x WebStatus) Number() protoreflect.EnumNumber {
  112. return protoreflect.EnumNumber(x)
  113. }
  114. // Deprecated: Use WebStatus.Descriptor instead.
  115. func (WebStatus) EnumDescriptor() ([]byte, []int) {
  116. return file_base_proto_rawDescGZIP(), []int{1}
  117. }
  118. type DefaultRequest struct {
  119. state protoimpl.MessageState
  120. sizeCache protoimpl.SizeCache
  121. unknownFields protoimpl.UnknownFields
  122. }
  123. func (x *DefaultRequest) Reset() {
  124. *x = DefaultRequest{}
  125. if protoimpl.UnsafeEnabled {
  126. mi := &file_base_proto_msgTypes[0]
  127. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  128. ms.StoreMessageInfo(mi)
  129. }
  130. }
  131. func (x *DefaultRequest) String() string {
  132. return protoimpl.X.MessageStringOf(x)
  133. }
  134. func (*DefaultRequest) ProtoMessage() {}
  135. func (x *DefaultRequest) ProtoReflect() protoreflect.Message {
  136. mi := &file_base_proto_msgTypes[0]
  137. if protoimpl.UnsafeEnabled && x != nil {
  138. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  139. if ms.LoadMessageInfo() == nil {
  140. ms.StoreMessageInfo(mi)
  141. }
  142. return ms
  143. }
  144. return mi.MessageOf(x)
  145. }
  146. // Deprecated: Use DefaultRequest.ProtoReflect.Descriptor instead.
  147. func (*DefaultRequest) Descriptor() ([]byte, []int) {
  148. return file_base_proto_rawDescGZIP(), []int{0}
  149. }
  150. type DefaultReply struct {
  151. state protoimpl.MessageState
  152. sizeCache protoimpl.SizeCache
  153. unknownFields protoimpl.UnknownFields
  154. }
  155. func (x *DefaultReply) Reset() {
  156. *x = DefaultReply{}
  157. if protoimpl.UnsafeEnabled {
  158. mi := &file_base_proto_msgTypes[1]
  159. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  160. ms.StoreMessageInfo(mi)
  161. }
  162. }
  163. func (x *DefaultReply) String() string {
  164. return protoimpl.X.MessageStringOf(x)
  165. }
  166. func (*DefaultReply) ProtoMessage() {}
  167. func (x *DefaultReply) ProtoReflect() protoreflect.Message {
  168. mi := &file_base_proto_msgTypes[1]
  169. if protoimpl.UnsafeEnabled && x != nil {
  170. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  171. if ms.LoadMessageInfo() == nil {
  172. ms.StoreMessageInfo(mi)
  173. }
  174. return ms
  175. }
  176. return mi.MessageOf(x)
  177. }
  178. // Deprecated: Use DefaultReply.ProtoReflect.Descriptor instead.
  179. func (*DefaultReply) Descriptor() ([]byte, []int) {
  180. return file_base_proto_rawDescGZIP(), []int{1}
  181. }
  182. type StandardRequest struct {
  183. state protoimpl.MessageState
  184. sizeCache protoimpl.SizeCache
  185. unknownFields protoimpl.UnknownFields
  186. ShopID int64 `protobuf:"varint,1,opt,name=shopID,proto3" json:"shopID,omitempty"`
  187. JsonStr string `protobuf:"bytes,2,opt,name=jsonStr,proto3" json:"jsonStr,omitempty"`
  188. Sign string `protobuf:"bytes,3,opt,name=sign,proto3" json:"sign,omitempty"`
  189. }
  190. func (x *StandardRequest) Reset() {
  191. *x = StandardRequest{}
  192. if protoimpl.UnsafeEnabled {
  193. mi := &file_base_proto_msgTypes[2]
  194. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  195. ms.StoreMessageInfo(mi)
  196. }
  197. }
  198. func (x *StandardRequest) String() string {
  199. return protoimpl.X.MessageStringOf(x)
  200. }
  201. func (*StandardRequest) ProtoMessage() {}
  202. func (x *StandardRequest) ProtoReflect() protoreflect.Message {
  203. mi := &file_base_proto_msgTypes[2]
  204. if protoimpl.UnsafeEnabled && x != nil {
  205. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  206. if ms.LoadMessageInfo() == nil {
  207. ms.StoreMessageInfo(mi)
  208. }
  209. return ms
  210. }
  211. return mi.MessageOf(x)
  212. }
  213. // Deprecated: Use StandardRequest.ProtoReflect.Descriptor instead.
  214. func (*StandardRequest) Descriptor() ([]byte, []int) {
  215. return file_base_proto_rawDescGZIP(), []int{2}
  216. }
  217. func (x *StandardRequest) GetShopID() int64 {
  218. if x != nil {
  219. return x.ShopID
  220. }
  221. return 0
  222. }
  223. func (x *StandardRequest) GetJsonStr() string {
  224. if x != nil {
  225. return x.JsonStr
  226. }
  227. return ""
  228. }
  229. func (x *StandardRequest) GetSign() string {
  230. if x != nil {
  231. return x.Sign
  232. }
  233. return ""
  234. }
  235. type StandardReply struct {
  236. state protoimpl.MessageState
  237. sizeCache protoimpl.SizeCache
  238. unknownFields protoimpl.UnknownFields
  239. JsonRst string `protobuf:"bytes,1,opt,name=jsonRst,proto3" json:"jsonRst,omitempty"`
  240. Sign string `protobuf:"bytes,2,opt,name=sign,proto3" json:"sign,omitempty"`
  241. }
  242. func (x *StandardReply) Reset() {
  243. *x = StandardReply{}
  244. if protoimpl.UnsafeEnabled {
  245. mi := &file_base_proto_msgTypes[3]
  246. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  247. ms.StoreMessageInfo(mi)
  248. }
  249. }
  250. func (x *StandardReply) String() string {
  251. return protoimpl.X.MessageStringOf(x)
  252. }
  253. func (*StandardReply) ProtoMessage() {}
  254. func (x *StandardReply) ProtoReflect() protoreflect.Message {
  255. mi := &file_base_proto_msgTypes[3]
  256. if protoimpl.UnsafeEnabled && x != nil {
  257. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  258. if ms.LoadMessageInfo() == nil {
  259. ms.StoreMessageInfo(mi)
  260. }
  261. return ms
  262. }
  263. return mi.MessageOf(x)
  264. }
  265. // Deprecated: Use StandardReply.ProtoReflect.Descriptor instead.
  266. func (*StandardReply) Descriptor() ([]byte, []int) {
  267. return file_base_proto_rawDescGZIP(), []int{3}
  268. }
  269. func (x *StandardReply) GetJsonRst() string {
  270. if x != nil {
  271. return x.JsonRst
  272. }
  273. return ""
  274. }
  275. func (x *StandardReply) GetSign() string {
  276. if x != nil {
  277. return x.Sign
  278. }
  279. return ""
  280. }
  281. type SignUpRequest struct {
  282. state protoimpl.MessageState
  283. sizeCache protoimpl.SizeCache
  284. unknownFields protoimpl.UnknownFields
  285. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  286. Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
  287. }
  288. func (x *SignUpRequest) Reset() {
  289. *x = SignUpRequest{}
  290. if protoimpl.UnsafeEnabled {
  291. mi := &file_base_proto_msgTypes[4]
  292. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  293. ms.StoreMessageInfo(mi)
  294. }
  295. }
  296. func (x *SignUpRequest) String() string {
  297. return protoimpl.X.MessageStringOf(x)
  298. }
  299. func (*SignUpRequest) ProtoMessage() {}
  300. func (x *SignUpRequest) ProtoReflect() protoreflect.Message {
  301. mi := &file_base_proto_msgTypes[4]
  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 SignUpRequest.ProtoReflect.Descriptor instead.
  312. func (*SignUpRequest) Descriptor() ([]byte, []int) {
  313. return file_base_proto_rawDescGZIP(), []int{4}
  314. }
  315. func (x *SignUpRequest) GetName() string {
  316. if x != nil {
  317. return x.Name
  318. }
  319. return ""
  320. }
  321. func (x *SignUpRequest) GetPassword() string {
  322. if x != nil {
  323. return x.Password
  324. }
  325. return ""
  326. }
  327. type SignInReply struct {
  328. state protoimpl.MessageState
  329. sizeCache protoimpl.SizeCache
  330. unknownFields protoimpl.UnknownFields
  331. Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
  332. }
  333. func (x *SignInReply) Reset() {
  334. *x = SignInReply{}
  335. if protoimpl.UnsafeEnabled {
  336. mi := &file_base_proto_msgTypes[5]
  337. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  338. ms.StoreMessageInfo(mi)
  339. }
  340. }
  341. func (x *SignInReply) String() string {
  342. return protoimpl.X.MessageStringOf(x)
  343. }
  344. func (*SignInReply) ProtoMessage() {}
  345. func (x *SignInReply) ProtoReflect() protoreflect.Message {
  346. mi := &file_base_proto_msgTypes[5]
  347. if protoimpl.UnsafeEnabled && x != nil {
  348. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  349. if ms.LoadMessageInfo() == nil {
  350. ms.StoreMessageInfo(mi)
  351. }
  352. return ms
  353. }
  354. return mi.MessageOf(x)
  355. }
  356. // Deprecated: Use SignInReply.ProtoReflect.Descriptor instead.
  357. func (*SignInReply) Descriptor() ([]byte, []int) {
  358. return file_base_proto_rawDescGZIP(), []int{5}
  359. }
  360. func (x *SignInReply) GetToken() string {
  361. if x != nil {
  362. return x.Token
  363. }
  364. return ""
  365. }
  366. type SignInRequest struct {
  367. state protoimpl.MessageState
  368. sizeCache protoimpl.SizeCache
  369. unknownFields protoimpl.UnknownFields
  370. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  371. Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
  372. CodeId string `protobuf:"bytes,3,opt,name=codeId,proto3" json:"codeId,omitempty"`
  373. VerifyCode string `protobuf:"bytes,4,opt,name=verifyCode,proto3" json:"verifyCode,omitempty"`
  374. }
  375. func (x *SignInRequest) Reset() {
  376. *x = SignInRequest{}
  377. if protoimpl.UnsafeEnabled {
  378. mi := &file_base_proto_msgTypes[6]
  379. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  380. ms.StoreMessageInfo(mi)
  381. }
  382. }
  383. func (x *SignInRequest) String() string {
  384. return protoimpl.X.MessageStringOf(x)
  385. }
  386. func (*SignInRequest) ProtoMessage() {}
  387. func (x *SignInRequest) ProtoReflect() protoreflect.Message {
  388. mi := &file_base_proto_msgTypes[6]
  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 SignInRequest.ProtoReflect.Descriptor instead.
  399. func (*SignInRequest) Descriptor() ([]byte, []int) {
  400. return file_base_proto_rawDescGZIP(), []int{6}
  401. }
  402. func (x *SignInRequest) GetName() string {
  403. if x != nil {
  404. return x.Name
  405. }
  406. return ""
  407. }
  408. func (x *SignInRequest) GetPassword() string {
  409. if x != nil {
  410. return x.Password
  411. }
  412. return ""
  413. }
  414. func (x *SignInRequest) GetCodeId() string {
  415. if x != nil {
  416. return x.CodeId
  417. }
  418. return ""
  419. }
  420. func (x *SignInRequest) GetVerifyCode() string {
  421. if x != nil {
  422. return x.VerifyCode
  423. }
  424. return ""
  425. }
  426. type GenVerifyImageRequest struct {
  427. state protoimpl.MessageState
  428. sizeCache protoimpl.SizeCache
  429. unknownFields protoimpl.UnknownFields
  430. Height int32 `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
  431. Width int32 `protobuf:"varint,2,opt,name=width,proto3" json:"width,omitempty"`
  432. }
  433. func (x *GenVerifyImageRequest) Reset() {
  434. *x = GenVerifyImageRequest{}
  435. if protoimpl.UnsafeEnabled {
  436. mi := &file_base_proto_msgTypes[7]
  437. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  438. ms.StoreMessageInfo(mi)
  439. }
  440. }
  441. func (x *GenVerifyImageRequest) String() string {
  442. return protoimpl.X.MessageStringOf(x)
  443. }
  444. func (*GenVerifyImageRequest) ProtoMessage() {}
  445. func (x *GenVerifyImageRequest) ProtoReflect() protoreflect.Message {
  446. mi := &file_base_proto_msgTypes[7]
  447. if protoimpl.UnsafeEnabled && x != nil {
  448. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  449. if ms.LoadMessageInfo() == nil {
  450. ms.StoreMessageInfo(mi)
  451. }
  452. return ms
  453. }
  454. return mi.MessageOf(x)
  455. }
  456. // Deprecated: Use GenVerifyImageRequest.ProtoReflect.Descriptor instead.
  457. func (*GenVerifyImageRequest) Descriptor() ([]byte, []int) {
  458. return file_base_proto_rawDescGZIP(), []int{7}
  459. }
  460. func (x *GenVerifyImageRequest) GetHeight() int32 {
  461. if x != nil {
  462. return x.Height
  463. }
  464. return 0
  465. }
  466. func (x *GenVerifyImageRequest) GetWidth() int32 {
  467. if x != nil {
  468. return x.Width
  469. }
  470. return 0
  471. }
  472. type GenVerifyImageReply struct {
  473. state protoimpl.MessageState
  474. sizeCache protoimpl.SizeCache
  475. unknownFields protoimpl.UnknownFields
  476. CodeId string `protobuf:"bytes,1,opt,name=codeId,proto3" json:"codeId,omitempty"`
  477. ImageBase64 string `protobuf:"bytes,2,opt,name=imageBase64,proto3" json:"imageBase64,omitempty"`
  478. }
  479. func (x *GenVerifyImageReply) Reset() {
  480. *x = GenVerifyImageReply{}
  481. if protoimpl.UnsafeEnabled {
  482. mi := &file_base_proto_msgTypes[8]
  483. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  484. ms.StoreMessageInfo(mi)
  485. }
  486. }
  487. func (x *GenVerifyImageReply) String() string {
  488. return protoimpl.X.MessageStringOf(x)
  489. }
  490. func (*GenVerifyImageReply) ProtoMessage() {}
  491. func (x *GenVerifyImageReply) ProtoReflect() protoreflect.Message {
  492. mi := &file_base_proto_msgTypes[8]
  493. if protoimpl.UnsafeEnabled && x != nil {
  494. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  495. if ms.LoadMessageInfo() == nil {
  496. ms.StoreMessageInfo(mi)
  497. }
  498. return ms
  499. }
  500. return mi.MessageOf(x)
  501. }
  502. // Deprecated: Use GenVerifyImageReply.ProtoReflect.Descriptor instead.
  503. func (*GenVerifyImageReply) Descriptor() ([]byte, []int) {
  504. return file_base_proto_rawDescGZIP(), []int{8}
  505. }
  506. func (x *GenVerifyImageReply) GetCodeId() string {
  507. if x != nil {
  508. return x.CodeId
  509. }
  510. return ""
  511. }
  512. func (x *GenVerifyImageReply) GetImageBase64() string {
  513. if x != nil {
  514. return x.ImageBase64
  515. }
  516. return ""
  517. }
  518. type ShopInfo struct {
  519. state protoimpl.MessageState
  520. sizeCache protoimpl.SizeCache
  521. unknownFields protoimpl.UnknownFields
  522. ShopId int64 `protobuf:"varint,1,opt,name=shopId,proto3" json:"shopId,omitempty"`
  523. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  524. SId int64 `protobuf:"varint,3,opt,name=sId,proto3" json:"sId,omitempty"`
  525. Addr string `protobuf:"bytes,4,opt,name=addr,proto3" json:"addr,omitempty"`
  526. Phone string `protobuf:"bytes,5,opt,name=phone,proto3" json:"phone,omitempty"`
  527. Contacts string `protobuf:"bytes,6,opt,name=contacts,proto3" json:"contacts,omitempty"`
  528. Status WebStatus `protobuf:"varint,7,opt,name=status,proto3,enum=base.WebStatus" json:"status,omitempty"`
  529. CreatedAt int64 `protobuf:"varint,8,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
  530. CreatedUser int64 `protobuf:"varint,9,opt,name=created_user,json=createdUser,proto3" json:"created_user,omitempty"`
  531. UpdatedAt int64 `protobuf:"varint,10,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
  532. UpdatedUser int64 `protobuf:"varint,11,opt,name=updated_user,json=updatedUser,proto3" json:"updated_user,omitempty"`
  533. }
  534. func (x *ShopInfo) Reset() {
  535. *x = ShopInfo{}
  536. if protoimpl.UnsafeEnabled {
  537. mi := &file_base_proto_msgTypes[9]
  538. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  539. ms.StoreMessageInfo(mi)
  540. }
  541. }
  542. func (x *ShopInfo) String() string {
  543. return protoimpl.X.MessageStringOf(x)
  544. }
  545. func (*ShopInfo) ProtoMessage() {}
  546. func (x *ShopInfo) ProtoReflect() protoreflect.Message {
  547. mi := &file_base_proto_msgTypes[9]
  548. if protoimpl.UnsafeEnabled && x != nil {
  549. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  550. if ms.LoadMessageInfo() == nil {
  551. ms.StoreMessageInfo(mi)
  552. }
  553. return ms
  554. }
  555. return mi.MessageOf(x)
  556. }
  557. // Deprecated: Use ShopInfo.ProtoReflect.Descriptor instead.
  558. func (*ShopInfo) Descriptor() ([]byte, []int) {
  559. return file_base_proto_rawDescGZIP(), []int{9}
  560. }
  561. func (x *ShopInfo) GetShopId() int64 {
  562. if x != nil {
  563. return x.ShopId
  564. }
  565. return 0
  566. }
  567. func (x *ShopInfo) GetName() string {
  568. if x != nil {
  569. return x.Name
  570. }
  571. return ""
  572. }
  573. func (x *ShopInfo) GetSId() int64 {
  574. if x != nil {
  575. return x.SId
  576. }
  577. return 0
  578. }
  579. func (x *ShopInfo) GetAddr() string {
  580. if x != nil {
  581. return x.Addr
  582. }
  583. return ""
  584. }
  585. func (x *ShopInfo) GetPhone() string {
  586. if x != nil {
  587. return x.Phone
  588. }
  589. return ""
  590. }
  591. func (x *ShopInfo) GetContacts() string {
  592. if x != nil {
  593. return x.Contacts
  594. }
  595. return ""
  596. }
  597. func (x *ShopInfo) GetStatus() WebStatus {
  598. if x != nil {
  599. return x.Status
  600. }
  601. return WebStatus_Ban
  602. }
  603. func (x *ShopInfo) GetCreatedAt() int64 {
  604. if x != nil {
  605. return x.CreatedAt
  606. }
  607. return 0
  608. }
  609. func (x *ShopInfo) GetCreatedUser() int64 {
  610. if x != nil {
  611. return x.CreatedUser
  612. }
  613. return 0
  614. }
  615. func (x *ShopInfo) GetUpdatedAt() int64 {
  616. if x != nil {
  617. return x.UpdatedAt
  618. }
  619. return 0
  620. }
  621. func (x *ShopInfo) GetUpdatedUser() int64 {
  622. if x != nil {
  623. return x.UpdatedUser
  624. }
  625. return 0
  626. }
  627. type ShopListRequest struct {
  628. state protoimpl.MessageState
  629. sizeCache protoimpl.SizeCache
  630. unknownFields protoimpl.UnknownFields
  631. // 模糊查询
  632. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  633. // Status_Null查询全部
  634. Status WebStatus `protobuf:"varint,2,opt,name=status,proto3,enum=base.WebStatus" json:"status,omitempty"`
  635. //上级商家Id, -1 时查询全部
  636. SId int64 `protobuf:"varint,3,opt,name=sId,proto3" json:"sId,omitempty"`
  637. }
  638. func (x *ShopListRequest) Reset() {
  639. *x = ShopListRequest{}
  640. if protoimpl.UnsafeEnabled {
  641. mi := &file_base_proto_msgTypes[10]
  642. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  643. ms.StoreMessageInfo(mi)
  644. }
  645. }
  646. func (x *ShopListRequest) String() string {
  647. return protoimpl.X.MessageStringOf(x)
  648. }
  649. func (*ShopListRequest) ProtoMessage() {}
  650. func (x *ShopListRequest) ProtoReflect() protoreflect.Message {
  651. mi := &file_base_proto_msgTypes[10]
  652. if protoimpl.UnsafeEnabled && x != nil {
  653. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  654. if ms.LoadMessageInfo() == nil {
  655. ms.StoreMessageInfo(mi)
  656. }
  657. return ms
  658. }
  659. return mi.MessageOf(x)
  660. }
  661. // Deprecated: Use ShopListRequest.ProtoReflect.Descriptor instead.
  662. func (*ShopListRequest) Descriptor() ([]byte, []int) {
  663. return file_base_proto_rawDescGZIP(), []int{10}
  664. }
  665. func (x *ShopListRequest) GetName() string {
  666. if x != nil {
  667. return x.Name
  668. }
  669. return ""
  670. }
  671. func (x *ShopListRequest) GetStatus() WebStatus {
  672. if x != nil {
  673. return x.Status
  674. }
  675. return WebStatus_Ban
  676. }
  677. func (x *ShopListRequest) GetSId() int64 {
  678. if x != nil {
  679. return x.SId
  680. }
  681. return 0
  682. }
  683. type ShopListReply struct {
  684. state protoimpl.MessageState
  685. sizeCache protoimpl.SizeCache
  686. unknownFields protoimpl.UnknownFields
  687. List []*ShopInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  688. }
  689. func (x *ShopListReply) Reset() {
  690. *x = ShopListReply{}
  691. if protoimpl.UnsafeEnabled {
  692. mi := &file_base_proto_msgTypes[11]
  693. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  694. ms.StoreMessageInfo(mi)
  695. }
  696. }
  697. func (x *ShopListReply) String() string {
  698. return protoimpl.X.MessageStringOf(x)
  699. }
  700. func (*ShopListReply) ProtoMessage() {}
  701. func (x *ShopListReply) ProtoReflect() protoreflect.Message {
  702. mi := &file_base_proto_msgTypes[11]
  703. if protoimpl.UnsafeEnabled && x != nil {
  704. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  705. if ms.LoadMessageInfo() == nil {
  706. ms.StoreMessageInfo(mi)
  707. }
  708. return ms
  709. }
  710. return mi.MessageOf(x)
  711. }
  712. // Deprecated: Use ShopListReply.ProtoReflect.Descriptor instead.
  713. func (*ShopListReply) Descriptor() ([]byte, []int) {
  714. return file_base_proto_rawDescGZIP(), []int{11}
  715. }
  716. func (x *ShopListReply) GetList() []*ShopInfo {
  717. if x != nil {
  718. return x.List
  719. }
  720. return nil
  721. }
  722. type GetShopNaviRequest struct {
  723. state protoimpl.MessageState
  724. sizeCache protoimpl.SizeCache
  725. unknownFields protoimpl.UnknownFields
  726. ShopId int64 `protobuf:"varint,1,opt,name=shopId,proto3" json:"shopId,omitempty"`
  727. // 最顶层为0
  728. ParentId int32 `protobuf:"varint,2,opt,name=parentId,proto3" json:"parentId,omitempty"`
  729. }
  730. func (x *GetShopNaviRequest) Reset() {
  731. *x = GetShopNaviRequest{}
  732. if protoimpl.UnsafeEnabled {
  733. mi := &file_base_proto_msgTypes[12]
  734. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  735. ms.StoreMessageInfo(mi)
  736. }
  737. }
  738. func (x *GetShopNaviRequest) String() string {
  739. return protoimpl.X.MessageStringOf(x)
  740. }
  741. func (*GetShopNaviRequest) ProtoMessage() {}
  742. func (x *GetShopNaviRequest) ProtoReflect() protoreflect.Message {
  743. mi := &file_base_proto_msgTypes[12]
  744. if protoimpl.UnsafeEnabled && x != nil {
  745. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  746. if ms.LoadMessageInfo() == nil {
  747. ms.StoreMessageInfo(mi)
  748. }
  749. return ms
  750. }
  751. return mi.MessageOf(x)
  752. }
  753. // Deprecated: Use GetShopNaviRequest.ProtoReflect.Descriptor instead.
  754. func (*GetShopNaviRequest) Descriptor() ([]byte, []int) {
  755. return file_base_proto_rawDescGZIP(), []int{12}
  756. }
  757. func (x *GetShopNaviRequest) GetShopId() int64 {
  758. if x != nil {
  759. return x.ShopId
  760. }
  761. return 0
  762. }
  763. func (x *GetShopNaviRequest) GetParentId() int32 {
  764. if x != nil {
  765. return x.ParentId
  766. }
  767. return 0
  768. }
  769. type Column struct {
  770. state protoimpl.MessageState
  771. sizeCache protoimpl.SizeCache
  772. unknownFields protoimpl.UnknownFields
  773. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  774. Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
  775. Code string `protobuf:"bytes,3,opt,name=code,proto3" json:"code,omitempty"`
  776. // 顺序
  777. Sn int32 `protobuf:"varint,4,opt,name=sn,proto3" json:"sn,omitempty"`
  778. Status WebStatus `protobuf:"varint,5,opt,name=status,proto3,enum=base.WebStatus" json:"status,omitempty"`
  779. NavShow bool `protobuf:"varint,6,opt,name=navShow,proto3" json:"navShow,omitempty"`
  780. Id int64 `protobuf:"varint,7,opt,name=id,proto3" json:"id,omitempty"`
  781. }
  782. func (x *Column) Reset() {
  783. *x = Column{}
  784. if protoimpl.UnsafeEnabled {
  785. mi := &file_base_proto_msgTypes[13]
  786. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  787. ms.StoreMessageInfo(mi)
  788. }
  789. }
  790. func (x *Column) String() string {
  791. return protoimpl.X.MessageStringOf(x)
  792. }
  793. func (*Column) ProtoMessage() {}
  794. func (x *Column) ProtoReflect() protoreflect.Message {
  795. mi := &file_base_proto_msgTypes[13]
  796. if protoimpl.UnsafeEnabled && x != nil {
  797. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  798. if ms.LoadMessageInfo() == nil {
  799. ms.StoreMessageInfo(mi)
  800. }
  801. return ms
  802. }
  803. return mi.MessageOf(x)
  804. }
  805. // Deprecated: Use Column.ProtoReflect.Descriptor instead.
  806. func (*Column) Descriptor() ([]byte, []int) {
  807. return file_base_proto_rawDescGZIP(), []int{13}
  808. }
  809. func (x *Column) GetName() string {
  810. if x != nil {
  811. return x.Name
  812. }
  813. return ""
  814. }
  815. func (x *Column) GetUrl() string {
  816. if x != nil {
  817. return x.Url
  818. }
  819. return ""
  820. }
  821. func (x *Column) GetCode() string {
  822. if x != nil {
  823. return x.Code
  824. }
  825. return ""
  826. }
  827. func (x *Column) GetSn() int32 {
  828. if x != nil {
  829. return x.Sn
  830. }
  831. return 0
  832. }
  833. func (x *Column) GetStatus() WebStatus {
  834. if x != nil {
  835. return x.Status
  836. }
  837. return WebStatus_Ban
  838. }
  839. func (x *Column) GetNavShow() bool {
  840. if x != nil {
  841. return x.NavShow
  842. }
  843. return false
  844. }
  845. func (x *Column) GetId() int64 {
  846. if x != nil {
  847. return x.Id
  848. }
  849. return 0
  850. }
  851. type GetShopNaviReply struct {
  852. state protoimpl.MessageState
  853. sizeCache protoimpl.SizeCache
  854. unknownFields protoimpl.UnknownFields
  855. List []*Column `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  856. }
  857. func (x *GetShopNaviReply) Reset() {
  858. *x = GetShopNaviReply{}
  859. if protoimpl.UnsafeEnabled {
  860. mi := &file_base_proto_msgTypes[14]
  861. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  862. ms.StoreMessageInfo(mi)
  863. }
  864. }
  865. func (x *GetShopNaviReply) String() string {
  866. return protoimpl.X.MessageStringOf(x)
  867. }
  868. func (*GetShopNaviReply) ProtoMessage() {}
  869. func (x *GetShopNaviReply) ProtoReflect() protoreflect.Message {
  870. mi := &file_base_proto_msgTypes[14]
  871. if protoimpl.UnsafeEnabled && x != nil {
  872. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  873. if ms.LoadMessageInfo() == nil {
  874. ms.StoreMessageInfo(mi)
  875. }
  876. return ms
  877. }
  878. return mi.MessageOf(x)
  879. }
  880. // Deprecated: Use GetShopNaviReply.ProtoReflect.Descriptor instead.
  881. func (*GetShopNaviReply) Descriptor() ([]byte, []int) {
  882. return file_base_proto_rawDescGZIP(), []int{14}
  883. }
  884. func (x *GetShopNaviReply) GetList() []*Column {
  885. if x != nil {
  886. return x.List
  887. }
  888. return nil
  889. }
  890. type GetOverlayImgRequest struct {
  891. state protoimpl.MessageState
  892. sizeCache protoimpl.SizeCache
  893. unknownFields protoimpl.UnknownFields
  894. FileName string `protobuf:"bytes,1,opt,name=fileName,proto3" json:"fileName,omitempty"`
  895. }
  896. func (x *GetOverlayImgRequest) Reset() {
  897. *x = GetOverlayImgRequest{}
  898. if protoimpl.UnsafeEnabled {
  899. mi := &file_base_proto_msgTypes[15]
  900. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  901. ms.StoreMessageInfo(mi)
  902. }
  903. }
  904. func (x *GetOverlayImgRequest) String() string {
  905. return protoimpl.X.MessageStringOf(x)
  906. }
  907. func (*GetOverlayImgRequest) ProtoMessage() {}
  908. func (x *GetOverlayImgRequest) ProtoReflect() protoreflect.Message {
  909. mi := &file_base_proto_msgTypes[15]
  910. if protoimpl.UnsafeEnabled && x != nil {
  911. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  912. if ms.LoadMessageInfo() == nil {
  913. ms.StoreMessageInfo(mi)
  914. }
  915. return ms
  916. }
  917. return mi.MessageOf(x)
  918. }
  919. // Deprecated: Use GetOverlayImgRequest.ProtoReflect.Descriptor instead.
  920. func (*GetOverlayImgRequest) Descriptor() ([]byte, []int) {
  921. return file_base_proto_rawDescGZIP(), []int{15}
  922. }
  923. func (x *GetOverlayImgRequest) GetFileName() string {
  924. if x != nil {
  925. return x.FileName
  926. }
  927. return ""
  928. }
  929. type QiNiuTokenReply struct {
  930. state protoimpl.MessageState
  931. sizeCache protoimpl.SizeCache
  932. unknownFields protoimpl.UnknownFields
  933. Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
  934. }
  935. func (x *QiNiuTokenReply) Reset() {
  936. *x = QiNiuTokenReply{}
  937. if protoimpl.UnsafeEnabled {
  938. mi := &file_base_proto_msgTypes[16]
  939. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  940. ms.StoreMessageInfo(mi)
  941. }
  942. }
  943. func (x *QiNiuTokenReply) String() string {
  944. return protoimpl.X.MessageStringOf(x)
  945. }
  946. func (*QiNiuTokenReply) ProtoMessage() {}
  947. func (x *QiNiuTokenReply) ProtoReflect() protoreflect.Message {
  948. mi := &file_base_proto_msgTypes[16]
  949. if protoimpl.UnsafeEnabled && x != nil {
  950. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  951. if ms.LoadMessageInfo() == nil {
  952. ms.StoreMessageInfo(mi)
  953. }
  954. return ms
  955. }
  956. return mi.MessageOf(x)
  957. }
  958. // Deprecated: Use QiNiuTokenReply.ProtoReflect.Descriptor instead.
  959. func (*QiNiuTokenReply) Descriptor() ([]byte, []int) {
  960. return file_base_proto_rawDescGZIP(), []int{16}
  961. }
  962. func (x *QiNiuTokenReply) GetToken() string {
  963. if x != nil {
  964. return x.Token
  965. }
  966. return ""
  967. }
  968. var File_base_proto protoreflect.FileDescriptor
  969. var file_base_proto_rawDesc = []byte{
  970. 0x0a, 0x0a, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x04, 0x62, 0x61,
  971. 0x73, 0x65, 0x22, 0x10, 0x0a, 0x0e, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x71,
  972. 0x75, 0x65, 0x73, 0x74, 0x22, 0x0e, 0x0a, 0x0c, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52,
  973. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x57, 0x0a, 0x0f, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  974. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49,
  975. 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49, 0x44, 0x12,
  976. 0x18, 0x0a, 0x07, 0x6a, 0x73, 0x6f, 0x6e, 0x53, 0x74, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  977. 0x52, 0x07, 0x6a, 0x73, 0x6f, 0x6e, 0x53, 0x74, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x67,
  978. 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x73, 0x69, 0x67, 0x6e, 0x22, 0x3d, 0x0a,
  979. 0x0d, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x18,
  980. 0x0a, 0x07, 0x6a, 0x73, 0x6f, 0x6e, 0x52, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  981. 0x07, 0x6a, 0x73, 0x6f, 0x6e, 0x52, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x67, 0x6e,
  982. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x73, 0x69, 0x67, 0x6e, 0x22, 0x3f, 0x0a, 0x0d,
  983. 0x53, 0x69, 0x67, 0x6e, 0x55, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a,
  984. 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d,
  985. 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x02, 0x20,
  986. 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x22, 0x23, 0x0a,
  987. 0x0b, 0x53, 0x69, 0x67, 0x6e, 0x49, 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x14, 0x0a, 0x05,
  988. 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x6f, 0x6b,
  989. 0x65, 0x6e, 0x22, 0x77, 0x0a, 0x0d, 0x53, 0x69, 0x67, 0x6e, 0x49, 0x6e, 0x52, 0x65, 0x71, 0x75,
  990. 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  991. 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77,
  992. 0x6f, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77,
  993. 0x6f, 0x72, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x18, 0x03, 0x20,
  994. 0x01, 0x28, 0x09, 0x52, 0x06, 0x63, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x76,
  995. 0x65, 0x72, 0x69, 0x66, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
  996. 0x0a, 0x76, 0x65, 0x72, 0x69, 0x66, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x22, 0x45, 0x0a, 0x15, 0x47,
  997. 0x65, 0x6e, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71,
  998. 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x18, 0x01,
  999. 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x12, 0x14, 0x0a, 0x05,
  1000. 0x77, 0x69, 0x64, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x77, 0x69, 0x64,
  1001. 0x74, 0x68, 0x22, 0x4f, 0x0a, 0x13, 0x47, 0x65, 0x6e, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x49,
  1002. 0x6d, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x64,
  1003. 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x63, 0x6f, 0x64, 0x65, 0x49,
  1004. 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x42, 0x61, 0x73, 0x65, 0x36, 0x34,
  1005. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x42, 0x61, 0x73,
  1006. 0x65, 0x36, 0x34, 0x22, 0xbb, 0x02, 0x0a, 0x08, 0x53, 0x68, 0x6f, 0x70, 0x49, 0x6e, 0x66, 0x6f,
  1007. 0x12, 0x16, 0x0a, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  1008. 0x52, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65,
  1009. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03,
  1010. 0x73, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x49, 0x64, 0x12, 0x12,
  1011. 0x0a, 0x04, 0x61, 0x64, 0x64, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x64,
  1012. 0x64, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28,
  1013. 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x6f, 0x6e, 0x74,
  1014. 0x61, 0x63, 0x74, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x63, 0x6f, 0x6e, 0x74,
  1015. 0x61, 0x63, 0x74, 0x73, 0x12, 0x27, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x07,
  1016. 0x20, 0x01, 0x28, 0x0e, 0x32, 0x0f, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x57, 0x65, 0x62, 0x53,
  1017. 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1d, 0x0a,
  1018. 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28,
  1019. 0x03, 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x21, 0x0a, 0x0c,
  1020. 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x18, 0x09, 0x20, 0x01,
  1021. 0x28, 0x03, 0x52, 0x0b, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x55, 0x73, 0x65, 0x72, 0x12,
  1022. 0x1d, 0x0a, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x0a, 0x20,
  1023. 0x01, 0x28, 0x03, 0x52, 0x09, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x21,
  1024. 0x0a, 0x0c, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x18, 0x0b,
  1025. 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x55, 0x73, 0x65,
  1026. 0x72, 0x22, 0x60, 0x0a, 0x0f, 0x53, 0x68, 0x6f, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71,
  1027. 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01,
  1028. 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x27, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74,
  1029. 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x0f, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  1030. 0x57, 0x65, 0x62, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75,
  1031. 0x73, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03,
  1032. 0x73, 0x49, 0x64, 0x22, 0x33, 0x0a, 0x0d, 0x53, 0x68, 0x6f, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x52,
  1033. 0x65, 0x70, 0x6c, 0x79, 0x12, 0x22, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03,
  1034. 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x49, 0x6e,
  1035. 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x48, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x53,
  1036. 0x68, 0x6f, 0x70, 0x4e, 0x61, 0x76, 0x69, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16,
  1037. 0x0a, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  1038. 0x73, 0x68, 0x6f, 0x70, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74,
  1039. 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74,
  1040. 0x49, 0x64, 0x22, 0xa5, 0x01, 0x0a, 0x06, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x12, 0x12, 0x0a,
  1041. 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d,
  1042. 0x65, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
  1043. 0x75, 0x72, 0x6c, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
  1044. 0x09, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x73, 0x6e, 0x18, 0x04, 0x20,
  1045. 0x01, 0x28, 0x05, 0x52, 0x02, 0x73, 0x6e, 0x12, 0x27, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75,
  1046. 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x0f, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x57,
  1047. 0x65, 0x62, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
  1048. 0x12, 0x18, 0x0a, 0x07, 0x6e, 0x61, 0x76, 0x53, 0x68, 0x6f, 0x77, 0x18, 0x06, 0x20, 0x01, 0x28,
  1049. 0x08, 0x52, 0x07, 0x6e, 0x61, 0x76, 0x53, 0x68, 0x6f, 0x77, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
  1050. 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x22, 0x34, 0x0a, 0x10, 0x47, 0x65,
  1051. 0x74, 0x53, 0x68, 0x6f, 0x70, 0x4e, 0x61, 0x76, 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x20,
  1052. 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x62,
  1053. 0x61, 0x73, 0x65, 0x2e, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74,
  1054. 0x22, 0x32, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x79, 0x49, 0x6d,
  1055. 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65,
  1056. 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65,
  1057. 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x27, 0x0a, 0x0f, 0x51, 0x69, 0x4e, 0x69, 0x75, 0x54, 0x6f, 0x6b,
  1058. 0x65, 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e,
  1059. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x2a, 0x7e, 0x0a,
  1060. 0x09, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x06, 0x0a, 0x02, 0x4f, 0x4b,
  1061. 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x50, 0x47, 0x45, 0x72, 0x72, 0x10, 0x64, 0x12, 0x0d, 0x0a,
  1062. 0x09, 0x50, 0x6d, 0x73, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x10, 0x6e, 0x12, 0x0c, 0x0a, 0x08,
  1063. 0x4a, 0x32, 0x4d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x10, 0x78, 0x12, 0x12, 0x0a, 0x0e, 0x57, 0x65,
  1064. 0x62, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x10, 0x79, 0x12, 0x16,
  1065. 0x0a, 0x12, 0x57, 0x65, 0x62, 0x54, 0x6f, 0x49, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45,
  1066. 0x72, 0x72, 0x6f, 0x72, 0x10, 0x7a, 0x12, 0x15, 0x0a, 0x11, 0x49, 0x6d, 0x54, 0x6f, 0x57, 0x65,
  1067. 0x62, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x10, 0x7b, 0x2a, 0x31, 0x0a,
  1068. 0x09, 0x57, 0x65, 0x62, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x07, 0x0a, 0x03, 0x42, 0x61,
  1069. 0x6e, 0x10, 0x00, 0x12, 0x06, 0x0a, 0x02, 0x4f, 0x6e, 0x10, 0x01, 0x12, 0x0a, 0x0a, 0x06, 0x44,
  1070. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x10, 0x09, 0x12, 0x07, 0x0a, 0x03, 0x41, 0x6c, 0x6c, 0x10, 0x63,
  1071. 0x32, 0xdf, 0x34, 0x0a, 0x03, 0x41, 0x70, 0x69, 0x12, 0x33, 0x0a, 0x06, 0x53, 0x69, 0x67, 0x6e,
  1072. 0x55, 0x70, 0x12, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x55, 0x70,
  1073. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x12, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x44,
  1074. 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x32, 0x0a,
  1075. 0x06, 0x53, 0x69, 0x67, 0x6e, 0x49, 0x6e, 0x12, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  1076. 0x69, 0x67, 0x6e, 0x49, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x11, 0x2e, 0x62,
  1077. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x49, 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  1078. 0x00, 0x12, 0x35, 0x0a, 0x07, 0x53, 0x69, 0x67, 0x6e, 0x4f, 0x75, 0x74, 0x12, 0x14, 0x2e, 0x62,
  1079. 0x61, 0x73, 0x65, 0x2e, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65,
  1080. 0x73, 0x74, 0x1a, 0x12, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c,
  1081. 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x4a, 0x0a, 0x0e, 0x47, 0x65, 0x6e, 0x56,
  1082. 0x65, 0x72, 0x69, 0x66, 0x79, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x12, 0x1b, 0x2e, 0x62, 0x61, 0x73,
  1083. 0x65, 0x2e, 0x47, 0x65, 0x6e, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x49, 0x6d, 0x61, 0x67, 0x65,
  1084. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x47,
  1085. 0x65, 0x6e, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70,
  1086. 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x48, 0x72,
  1087. 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x73, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  1088. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
  1089. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  1090. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x15, 0x41, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x55,
  1091. 0x73, 0x65, 0x72, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15,
  1092. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  1093. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  1094. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x42, 0x0a, 0x12,
  1095. 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x51, 0x75, 0x65,
  1096. 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  1097. 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65,
  1098. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
  1099. 0x12, 0x46, 0x0a, 0x16, 0x54, 0x65, 0x6d, 0x70, 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x53,
  1100. 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
  1101. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1102. 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  1103. 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x53, 0x68, 0x6f, 0x70,
  1104. 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61,
  1105. 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
  1106. 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  1107. 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x15, 0x4d, 0x61, 0x6e,
  1108. 0x61, 0x67, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x51, 0x75, 0x65,
  1109. 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  1110. 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65,
  1111. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
  1112. 0x12, 0x40, 0x0a, 0x10, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x51,
  1113. 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  1114. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61,
  1115. 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79,
  1116. 0x22, 0x00, 0x12, 0x41, 0x0a, 0x11, 0x53, 0x63, 0x72, 0x65, 0x65, 0x6e, 0x53, 0x69, 0x6d, 0x70,
  1117. 0x6c, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  1118. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
  1119. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  1120. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x42, 0x0a, 0x12, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x61,
  1121. 0x62, 0x6c, 0x65, 0x53, 0x68, 0x6f, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61,
  1122. 0x73, 0x65, 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65,
  1123. 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x4c, 0x69,
  1124. 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x0b, 0x47, 0x65, 0x74,
  1125. 0x53, 0x68, 0x6f, 0x70, 0x4e, 0x61, 0x76, 0x69, 0x12, 0x18, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  1126. 0x47, 0x65, 0x74, 0x53, 0x68, 0x6f, 0x70, 0x4e, 0x61, 0x76, 0x69, 0x52, 0x65, 0x71, 0x75, 0x65,
  1127. 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x68, 0x6f,
  1128. 0x70, 0x4e, 0x61, 0x76, 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0e,
  1129. 0x53, 0x68, 0x6f, 0x70, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15,
  1130. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  1131. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  1132. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3c, 0x0a, 0x0c,
  1133. 0x53, 0x68, 0x6f, 0x70, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62,
  1134. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
  1135. 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  1136. 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3d, 0x0a, 0x0d, 0x53, 0x68,
  1137. 0x6f, 0x70, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61,
  1138. 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
  1139. 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  1140. 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x43, 0x0a, 0x13, 0x53, 0x68, 0x6f,
  1141. 0x70, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x64, 0x69, 0x74,
  1142. 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  1143. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  1144. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x45,
  1145. 0x0a, 0x15, 0x53, 0x68, 0x6f, 0x70, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x44, 0x65, 0x74, 0x61, 0x69,
  1146. 0x6c, 0x73, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  1147. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
  1148. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  1149. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x43, 0x0a, 0x13, 0x53, 0x68, 0x6f, 0x70, 0x47, 0x72, 0x6f,
  1150. 0x75, 0x70, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62,
  1151. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
  1152. 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  1153. 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x53, 0x68,
  1154. 0x6f, 0x70, 0x56, 0x65, 0x6e, 0x75, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62,
  1155. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
  1156. 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  1157. 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3c, 0x0a, 0x0c, 0x53, 0x68,
  1158. 0x6f, 0x70, 0x56, 0x65, 0x6e, 0x75, 0x65, 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
  1159. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1160. 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  1161. 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3d, 0x0a, 0x0d, 0x53, 0x68, 0x6f, 0x70,
  1162. 0x56, 0x65, 0x6e, 0x75, 0x65, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65,
  1163. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1164. 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  1165. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x43, 0x0a, 0x13, 0x53, 0x68, 0x6f, 0x70, 0x56,
  1166. 0x65, 0x6e, 0x75, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15,
  1167. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  1168. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  1169. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x43, 0x0a, 0x13,
  1170. 0x53, 0x68, 0x6f, 0x70, 0x56, 0x65, 0x6e, 0x75, 0x65, 0x45, 0x71, 0x75, 0x69, 0x70, 0x51, 0x75,
  1171. 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  1172. 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73,
  1173. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  1174. 0x00, 0x12, 0x41, 0x0a, 0x11, 0x53, 0x68, 0x6f, 0x70, 0x56, 0x65, 0x6e, 0x75, 0x65, 0x45, 0x71,
  1175. 0x75, 0x69, 0x70, 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  1176. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e,
  1177. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70,
  1178. 0x6c, 0x79, 0x22, 0x00, 0x12, 0x42, 0x0a, 0x12, 0x53, 0x68, 0x6f, 0x70, 0x56, 0x65, 0x6e, 0x75,
  1179. 0x65, 0x45, 0x71, 0x75, 0x69, 0x70, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
  1180. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1181. 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  1182. 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x48, 0x0a, 0x18, 0x53, 0x68, 0x6f, 0x70,
  1183. 0x56, 0x65, 0x6e, 0x75, 0x65, 0x45, 0x71, 0x75, 0x69, 0x70, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  1184. 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  1185. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61,
  1186. 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79,
  1187. 0x22, 0x00, 0x12, 0x47, 0x0a, 0x17, 0x53, 0x68, 0x6f, 0x70, 0x56, 0x65, 0x6e, 0x75, 0x65, 0x45,
  1188. 0x71, 0x75, 0x69, 0x70, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x44, 0x65, 0x6c, 0x12, 0x15, 0x2e,
  1189. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71,
  1190. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  1191. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x40, 0x0a, 0x10, 0x53,
  1192. 0x68, 0x6f, 0x70, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12,
  1193. 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  1194. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  1195. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a,
  1196. 0x0e, 0x53, 0x68, 0x6f, 0x70, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x41, 0x64, 0x64, 0x12,
  1197. 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  1198. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  1199. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a,
  1200. 0x0f, 0x53, 0x68, 0x6f, 0x70, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x45, 0x64, 0x69, 0x74,
  1201. 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  1202. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  1203. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x45,
  1204. 0x0a, 0x15, 0x53, 0x68, 0x6f, 0x70, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x53, 0x74, 0x61,
  1205. 0x74, 0x75, 0x73, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  1206. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
  1207. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  1208. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x53, 0x68, 0x6f, 0x70, 0x43, 0x6f, 0x6e,
  1209. 0x66, 0x69, 0x67, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  1210. 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  1211. 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  1212. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x53, 0x68, 0x6f, 0x70, 0x43, 0x6f,
  1213. 0x6e, 0x66, 0x69, 0x67, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  1214. 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  1215. 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  1216. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x40, 0x0a, 0x10, 0x53, 0x68, 0x6f, 0x70, 0x56, 0x69,
  1217. 0x70, 0x55, 0x73, 0x65, 0x72, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
  1218. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1219. 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  1220. 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x53, 0x68, 0x6f, 0x70,
  1221. 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
  1222. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1223. 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  1224. 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x53, 0x68, 0x6f, 0x70,
  1225. 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61,
  1226. 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
  1227. 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  1228. 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x15, 0x53, 0x68, 0x6f,
  1229. 0x70, 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x64,
  1230. 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  1231. 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65,
  1232. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
  1233. 0x12, 0x42, 0x0a, 0x12, 0x41, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x56, 0x69, 0x70, 0x55, 0x73, 0x65,
  1234. 0x72, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  1235. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e,
  1236. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70,
  1237. 0x6c, 0x79, 0x22, 0x00, 0x12, 0x40, 0x0a, 0x10, 0x41, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x56, 0x69,
  1238. 0x70, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  1239. 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  1240. 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  1241. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x40, 0x0a, 0x10, 0x41, 0x63, 0x72, 0x6f, 0x73, 0x73,
  1242. 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x44, 0x65, 0x6c, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
  1243. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1244. 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  1245. 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3d, 0x0a, 0x0d, 0x56, 0x69, 0x70, 0x50,
  1246. 0x68, 0x6f, 0x6e, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65,
  1247. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1248. 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  1249. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x11, 0x56, 0x69, 0x70, 0x4d, 0x61,
  1250. 0x69, 0x6e, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x12, 0x15, 0x2e, 0x62,
  1251. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
  1252. 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  1253. 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x40, 0x0a, 0x10, 0x56, 0x69,
  1254. 0x70, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x41, 0x64, 0x64, 0x12, 0x15,
  1255. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  1256. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  1257. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x11,
  1258. 0x56, 0x69, 0x70, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x45, 0x64, 0x69,
  1259. 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  1260. 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  1261. 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12,
  1262. 0x47, 0x0a, 0x17, 0x56, 0x69, 0x70, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65,
  1263. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
  1264. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1265. 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  1266. 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x40, 0x0a, 0x10, 0x54, 0x65, 0x6d, 0x70,
  1267. 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62,
  1268. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
  1269. 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  1270. 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x54, 0x65,
  1271. 0x6d, 0x70, 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62,
  1272. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
  1273. 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  1274. 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x54, 0x65,
  1275. 0x6d, 0x70, 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e,
  1276. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71,
  1277. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  1278. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x15, 0x54,
  1279. 0x65, 0x6d, 0x70, 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  1280. 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  1281. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61,
  1282. 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79,
  1283. 0x22, 0x00, 0x12, 0x3b, 0x0a, 0x0b, 0x56, 0x69, 0x70, 0x48, 0x6f, 0x75, 0x72, 0x45, 0x64, 0x69,
  1284. 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  1285. 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  1286. 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12,
  1287. 0x43, 0x0a, 0x13, 0x56, 0x69, 0x70, 0x43, 0x6f, 0x6e, 0x73, 0x75, 0x6d, 0x65, 0x4c, 0x69, 0x73,
  1288. 0x74, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  1289. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e,
  1290. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70,
  1291. 0x6c, 0x79, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x15, 0x56, 0x69, 0x70, 0x43, 0x6f, 0x6e, 0x73, 0x75,
  1292. 0x6d, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e,
  1293. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71,
  1294. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  1295. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x44, 0x0a, 0x14, 0x56,
  1296. 0x69, 0x70, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45,
  1297. 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  1298. 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73,
  1299. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  1300. 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x56, 0x69, 0x70, 0x48, 0x6f, 0x75, 0x72, 0x43, 0x68, 0x67, 0x51,
  1301. 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  1302. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61,
  1303. 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79,
  1304. 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x17, 0x47, 0x65, 0x74, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x79,
  1305. 0x49, 0x6d, 0x67, 0x51, 0x69, 0x4e, 0x69, 0x75, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x1a, 0x2e,
  1306. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x79, 0x49,
  1307. 0x6d, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65,
  1308. 0x2e, 0x51, 0x69, 0x4e, 0x69, 0x75, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79,
  1309. 0x22, 0x00, 0x12, 0x44, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x51,
  1310. 0x69, 0x4e, 0x69, 0x75, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x14, 0x2e, 0x62, 0x61, 0x73, 0x65,
  1311. 0x2e, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  1312. 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x51, 0x69, 0x4e, 0x69, 0x75, 0x54, 0x6f, 0x6b, 0x65,
  1313. 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3a, 0x0a, 0x0a, 0x43, 0x6c, 0x61, 0x73,
  1314. 0x73, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  1315. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e,
  1316. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70,
  1317. 0x6c, 0x79, 0x22, 0x00, 0x12, 0x38, 0x0a, 0x08, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x41, 0x64, 0x64,
  1318. 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  1319. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  1320. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x39,
  1321. 0x0a, 0x09, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61,
  1322. 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
  1323. 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  1324. 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x43, 0x6c, 0x61,
  1325. 0x73, 0x73, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62,
  1326. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
  1327. 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  1328. 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x43, 0x6c,
  1329. 0x61, 0x73, 0x73, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62,
  1330. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
  1331. 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  1332. 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x42, 0x0a, 0x12, 0x43, 0x6c,
  1333. 0x61, 0x73, 0x73, 0x57, 0x78, 0x56, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x45, 0x64, 0x69, 0x74,
  1334. 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  1335. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  1336. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3c,
  1337. 0x0a, 0x0c, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x56, 0x69, 0x70, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15,
  1338. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  1339. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  1340. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x11,
  1341. 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x42, 0x61, 0x73, 0x69, 0x63, 0x51, 0x75, 0x65, 0x72,
  1342. 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  1343. 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  1344. 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12,
  1345. 0x3f, 0x0a, 0x0f, 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x42, 0x61, 0x73, 0x69, 0x63, 0x41,
  1346. 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  1347. 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65,
  1348. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
  1349. 0x12, 0x40, 0x0a, 0x10, 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x42, 0x61, 0x73, 0x69, 0x63,
  1350. 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  1351. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61,
  1352. 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79,
  1353. 0x22, 0x00, 0x12, 0x44, 0x0a, 0x14, 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x42, 0x61, 0x73,
  1354. 0x69, 0x63, 0x53, 0x68, 0x6f, 0x70, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
  1355. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1356. 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  1357. 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x46, 0x0a, 0x16, 0x53, 0x74, 0x74, 0x50,
  1358. 0x6c, 0x61, 0x6e, 0x42, 0x61, 0x73, 0x69, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x64,
  1359. 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  1360. 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65,
  1361. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
  1362. 0x12, 0x43, 0x0a, 0x13, 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x42, 0x61, 0x73, 0x69, 0x63,
  1363. 0x50, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  1364. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
  1365. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  1366. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61, 0x6e,
  1367. 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  1368. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
  1369. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  1370. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3b, 0x0a, 0x0b, 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61, 0x6e,
  1371. 0x43, 0x6f, 0x70, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  1372. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61,
  1373. 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79,
  1374. 0x22, 0x00, 0x12, 0x42, 0x0a, 0x12, 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x44, 0x65, 0x74,
  1375. 0x61, 0x69, 0x6c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  1376. 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  1377. 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  1378. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x46, 0x0a, 0x16, 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61,
  1379. 0x6e, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x42, 0x61, 0x74, 0x63, 0x68, 0x53, 0x61, 0x76, 0x65,
  1380. 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  1381. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  1382. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3d,
  1383. 0x0a, 0x0d, 0x53, 0x54, 0x54, 0x42, 0x61, 0x73, 0x69, 0x63, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12,
  1384. 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  1385. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  1386. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3b, 0x0a,
  1387. 0x0b, 0x53, 0x54, 0x54, 0x42, 0x61, 0x73, 0x69, 0x63, 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62,
  1388. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
  1389. 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  1390. 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3c, 0x0a, 0x0c, 0x53, 0x54,
  1391. 0x54, 0x42, 0x61, 0x73, 0x69, 0x63, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
  1392. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1393. 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  1394. 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x42, 0x0a, 0x12, 0x53, 0x54, 0x54, 0x42,
  1395. 0x61, 0x73, 0x69, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15,
  1396. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  1397. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  1398. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f,
  1399. 0x53, 0x54, 0x54, 0x42, 0x61, 0x73, 0x69, 0x63, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x12,
  1400. 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  1401. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  1402. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3c, 0x0a,
  1403. 0x0c, 0x53, 0x54, 0x54, 0x42, 0x61, 0x73, 0x69, 0x63, 0x43, 0x6f, 0x70, 0x79, 0x12, 0x15, 0x2e,
  1404. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71,
  1405. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  1406. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x43, 0x0a, 0x13, 0x53,
  1407. 0x54, 0x54, 0x42, 0x61, 0x73, 0x69, 0x63, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x45, 0x64,
  1408. 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  1409. 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65,
  1410. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
  1411. 0x12, 0x42, 0x0a, 0x12, 0x53, 0x54, 0x54, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x4c, 0x69, 0x73,
  1412. 0x74, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  1413. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e,
  1414. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70,
  1415. 0x6c, 0x79, 0x22, 0x00, 0x12, 0x47, 0x0a, 0x17, 0x53, 0x54, 0x54, 0x42, 0x61, 0x73, 0x69, 0x63,
  1416. 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x42, 0x61, 0x74, 0x63, 0x68, 0x53, 0x61, 0x76, 0x65, 0x12,
  1417. 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  1418. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  1419. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x46, 0x0a,
  1420. 0x16, 0x53, 0x54, 0x54, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x41, 0x6c, 0x6c, 0x6f, 0x77, 0x44,
  1421. 0x65, 0x6c, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  1422. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
  1423. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  1424. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x11, 0x43, 0x6f, 0x75, 0x72, 0x73, 0x65, 0x44,
  1425. 0x65, 0x74, 0x61, 0x69, 0x6c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
  1426. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1427. 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  1428. 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x4f, 0x72, 0x64, 0x65,
  1429. 0x72, 0x4c, 0x69, 0x73, 0x74, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
  1430. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1431. 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  1432. 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x11, 0x4f, 0x72, 0x64, 0x65,
  1433. 0x72, 0x41, 0x64, 0x64, 0x42, 0x79, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x12, 0x15, 0x2e,
  1434. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71,
  1435. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  1436. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x44, 0x0a, 0x14, 0x4f,
  1437. 0x72, 0x64, 0x65, 0x72, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x42, 0x79, 0x4d, 0x61, 0x6e, 0x61,
  1438. 0x67, 0x65, 0x72, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  1439. 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73,
  1440. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  1441. 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73,
  1442. 0x74, 0x69, 0x63, 0x73, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  1443. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61,
  1444. 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79,
  1445. 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x4f, 0x72, 0x64, 0x65, 0x72,
  1446. 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  1447. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62,
  1448. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c,
  1449. 0x79, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x11, 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x4f, 0x72,
  1450. 0x64, 0x65, 0x72, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  1451. 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  1452. 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  1453. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x44, 0x0a, 0x14, 0x48, 0x72, 0x53, 0x65, 0x6e, 0x73,
  1454. 0x6f, 0x72, 0x73, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15,
  1455. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  1456. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  1457. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x11,
  1458. 0x48, 0x72, 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x73, 0x50, 0x76, 0x74, 0x51, 0x75, 0x65, 0x72,
  1459. 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  1460. 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  1461. 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12,
  1462. 0x3c, 0x0a, 0x0c, 0x41, 0x64, 0x64, 0x48, 0x72, 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x73, 0x12,
  1463. 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  1464. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  1465. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a,
  1466. 0x0f, 0x41, 0x64, 0x64, 0x50, 0x76, 0x74, 0x48, 0x72, 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x73,
  1467. 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  1468. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  1469. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3d,
  1470. 0x0a, 0x0d, 0x45, 0x64, 0x69, 0x74, 0x48, 0x72, 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x73, 0x12,
  1471. 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  1472. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  1473. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3c, 0x0a,
  1474. 0x0c, 0x48, 0x72, 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x73, 0x44, 0x65, 0x6c, 0x12, 0x15, 0x2e,
  1475. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71,
  1476. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  1477. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3a, 0x0a, 0x0a, 0x50,
  1478. 0x4b, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x68, 0x67, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65,
  1479. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1480. 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  1481. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3c, 0x0a, 0x0c, 0x42, 0x69, 0x6e, 0x64, 0x48,
  1482. 0x72, 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  1483. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
  1484. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  1485. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x55, 0x6e, 0x42, 0x69, 0x6e, 0x64, 0x48,
  1486. 0x72, 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  1487. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
  1488. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  1489. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3b, 0x0a, 0x0b, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x51,
  1490. 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  1491. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61,
  1492. 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79,
  1493. 0x22, 0x00, 0x42, 0x08, 0x5a, 0x06, 0x2e, 0x3b, 0x62, 0x61, 0x73, 0x65, 0x62, 0x06, 0x70, 0x72,
  1494. 0x6f, 0x74, 0x6f, 0x33,
  1495. }
  1496. var (
  1497. file_base_proto_rawDescOnce sync.Once
  1498. file_base_proto_rawDescData = file_base_proto_rawDesc
  1499. )
  1500. func file_base_proto_rawDescGZIP() []byte {
  1501. file_base_proto_rawDescOnce.Do(func() {
  1502. file_base_proto_rawDescData = protoimpl.X.CompressGZIP(file_base_proto_rawDescData)
  1503. })
  1504. return file_base_proto_rawDescData
  1505. }
  1506. var file_base_proto_enumTypes = make([]protoimpl.EnumInfo, 2)
  1507. var file_base_proto_msgTypes = make([]protoimpl.MessageInfo, 17)
  1508. var file_base_proto_goTypes = []interface{}{
  1509. (ErrorCode)(0), // 0: base.ErrorCode
  1510. (WebStatus)(0), // 1: base.WebStatus
  1511. (*DefaultRequest)(nil), // 2: base.DefaultRequest
  1512. (*DefaultReply)(nil), // 3: base.DefaultReply
  1513. (*StandardRequest)(nil), // 4: base.StandardRequest
  1514. (*StandardReply)(nil), // 5: base.StandardReply
  1515. (*SignUpRequest)(nil), // 6: base.SignUpRequest
  1516. (*SignInReply)(nil), // 7: base.SignInReply
  1517. (*SignInRequest)(nil), // 8: base.SignInRequest
  1518. (*GenVerifyImageRequest)(nil), // 9: base.GenVerifyImageRequest
  1519. (*GenVerifyImageReply)(nil), // 10: base.GenVerifyImageReply
  1520. (*ShopInfo)(nil), // 11: base.ShopInfo
  1521. (*ShopListRequest)(nil), // 12: base.ShopListRequest
  1522. (*ShopListReply)(nil), // 13: base.ShopListReply
  1523. (*GetShopNaviRequest)(nil), // 14: base.GetShopNaviRequest
  1524. (*Column)(nil), // 15: base.Column
  1525. (*GetShopNaviReply)(nil), // 16: base.GetShopNaviReply
  1526. (*GetOverlayImgRequest)(nil), // 17: base.GetOverlayImgRequest
  1527. (*QiNiuTokenReply)(nil), // 18: base.QiNiuTokenReply
  1528. }
  1529. var file_base_proto_depIdxs = []int32{
  1530. 1, // 0: base.ShopInfo.status:type_name -> base.WebStatus
  1531. 1, // 1: base.ShopListRequest.status:type_name -> base.WebStatus
  1532. 11, // 2: base.ShopListReply.list:type_name -> base.ShopInfo
  1533. 1, // 3: base.Column.status:type_name -> base.WebStatus
  1534. 15, // 4: base.GetShopNaviReply.list:type_name -> base.Column
  1535. 6, // 5: base.Api.SignUp:input_type -> base.SignUpRequest
  1536. 8, // 6: base.Api.SignIn:input_type -> base.SignInRequest
  1537. 2, // 7: base.Api.SignOut:input_type -> base.DefaultRequest
  1538. 9, // 8: base.Api.GenVerifyImage:input_type -> base.GenVerifyImageRequest
  1539. 4, // 9: base.Api.SelectHrSensors:input_type -> base.StandardRequest
  1540. 4, // 10: base.Api.AcrossUserSimpleQuery:input_type -> base.StandardRequest
  1541. 4, // 11: base.Api.VipUserSimpleQuery:input_type -> base.StandardRequest
  1542. 4, // 12: base.Api.TempVipUserSimpleQuery:input_type -> base.StandardRequest
  1543. 4, // 13: base.Api.ShopSimpleQuery:input_type -> base.StandardRequest
  1544. 4, // 14: base.Api.ManageableSimpleQuery:input_type -> base.StandardRequest
  1545. 4, // 15: base.Api.ClassSimpleQuery:input_type -> base.StandardRequest
  1546. 4, // 16: base.Api.ScreenSimpleQuery:input_type -> base.StandardRequest
  1547. 12, // 17: base.Api.ManageableShopList:input_type -> base.ShopListRequest
  1548. 14, // 18: base.Api.GetShopNavi:input_type -> base.GetShopNaviRequest
  1549. 4, // 19: base.Api.ShopGroupQuery:input_type -> base.StandardRequest
  1550. 4, // 20: base.Api.ShopGroupAdd:input_type -> base.StandardRequest
  1551. 4, // 21: base.Api.ShopGroupEdit:input_type -> base.StandardRequest
  1552. 4, // 22: base.Api.ShopGroupStatusEdit:input_type -> base.StandardRequest
  1553. 4, // 23: base.Api.ShopGroupDetailsQuery:input_type -> base.StandardRequest
  1554. 4, // 24: base.Api.ShopGroupDetailsAdd:input_type -> base.StandardRequest
  1555. 4, // 25: base.Api.ShopVenueQuery:input_type -> base.StandardRequest
  1556. 4, // 26: base.Api.ShopVenueAdd:input_type -> base.StandardRequest
  1557. 4, // 27: base.Api.ShopVenueEdit:input_type -> base.StandardRequest
  1558. 4, // 28: base.Api.ShopVenueStatusEdit:input_type -> base.StandardRequest
  1559. 4, // 29: base.Api.ShopVenueEquipQuery:input_type -> base.StandardRequest
  1560. 4, // 30: base.Api.ShopVenueEquipAdd:input_type -> base.StandardRequest
  1561. 4, // 31: base.Api.ShopVenueEquipEdit:input_type -> base.StandardRequest
  1562. 4, // 32: base.Api.ShopVenueEquipStatusEdit:input_type -> base.StandardRequest
  1563. 4, // 33: base.Api.ShopVenueEquipStatusDel:input_type -> base.StandardRequest
  1564. 4, // 34: base.Api.ShopManagerQuery:input_type -> base.StandardRequest
  1565. 4, // 35: base.Api.ShopManagerAdd:input_type -> base.StandardRequest
  1566. 4, // 36: base.Api.ShopManagerEdit:input_type -> base.StandardRequest
  1567. 4, // 37: base.Api.ShopManagerStatusEdit:input_type -> base.StandardRequest
  1568. 4, // 38: base.Api.ShopConfigQuery:input_type -> base.StandardRequest
  1569. 4, // 39: base.Api.ShopConfigEdit:input_type -> base.StandardRequest
  1570. 4, // 40: base.Api.ShopVipUserQuery:input_type -> base.StandardRequest
  1571. 4, // 41: base.Api.ShopVipUserAdd:input_type -> base.StandardRequest
  1572. 4, // 42: base.Api.ShopVipUserEdit:input_type -> base.StandardRequest
  1573. 4, // 43: base.Api.ShopVipUserStatusEdit:input_type -> base.StandardRequest
  1574. 4, // 44: base.Api.AcrossVipUserQuery:input_type -> base.StandardRequest
  1575. 4, // 45: base.Api.AcrossVipUserAdd:input_type -> base.StandardRequest
  1576. 4, // 46: base.Api.AcrossVipUserDel:input_type -> base.StandardRequest
  1577. 4, // 47: base.Api.VipPhoneQuery:input_type -> base.StandardRequest
  1578. 4, // 48: base.Api.VipMainPhoneCheck:input_type -> base.StandardRequest
  1579. 4, // 49: base.Api.VipOtherPhoneAdd:input_type -> base.StandardRequest
  1580. 4, // 50: base.Api.VipOtherPhoneEdit:input_type -> base.StandardRequest
  1581. 4, // 51: base.Api.VipOtherPhoneStatusEdit:input_type -> base.StandardRequest
  1582. 4, // 52: base.Api.TempVipUserQuery:input_type -> base.StandardRequest
  1583. 4, // 53: base.Api.TempVipUserAdd:input_type -> base.StandardRequest
  1584. 4, // 54: base.Api.TempVipUserEdit:input_type -> base.StandardRequest
  1585. 4, // 55: base.Api.TempVipUserStatusEdit:input_type -> base.StandardRequest
  1586. 4, // 56: base.Api.VipHourEdit:input_type -> base.StandardRequest
  1587. 4, // 57: base.Api.VipConsumeListQuery:input_type -> base.StandardRequest
  1588. 4, // 58: base.Api.VipConsumeDetailQuery:input_type -> base.StandardRequest
  1589. 4, // 59: base.Api.VipClassRelationEdit:input_type -> base.StandardRequest
  1590. 4, // 60: base.Api.VipHourChgQuery:input_type -> base.StandardRequest
  1591. 17, // 61: base.Api.GetOverlayImgQiNiuToken:input_type -> base.GetOverlayImgRequest
  1592. 2, // 62: base.Api.GetSimpleQiNiuToken:input_type -> base.DefaultRequest
  1593. 4, // 63: base.Api.ClassQuery:input_type -> base.StandardRequest
  1594. 4, // 64: base.Api.ClassAdd:input_type -> base.StandardRequest
  1595. 4, // 65: base.Api.ClassEdit:input_type -> base.StandardRequest
  1596. 4, // 66: base.Api.ClassStatusEdit:input_type -> base.StandardRequest
  1597. 4, // 67: base.Api.ClassColorEdit:input_type -> base.StandardRequest
  1598. 4, // 68: base.Api.ClassWxVisibleEdit:input_type -> base.StandardRequest
  1599. 4, // 69: base.Api.ClassVipEdit:input_type -> base.StandardRequest
  1600. 4, // 70: base.Api.SttPlanBasicQuery:input_type -> base.StandardRequest
  1601. 4, // 71: base.Api.SttPlanBasicAdd:input_type -> base.StandardRequest
  1602. 4, // 72: base.Api.SttPlanBasicEdit:input_type -> base.StandardRequest
  1603. 4, // 73: base.Api.SttPlanBasicShopEdit:input_type -> base.StandardRequest
  1604. 4, // 74: base.Api.SttPlanBasicStatusEdit:input_type -> base.StandardRequest
  1605. 4, // 75: base.Api.SttPlanBasicPublish:input_type -> base.StandardRequest
  1606. 4, // 76: base.Api.SttPlanPreview:input_type -> base.StandardRequest
  1607. 4, // 77: base.Api.SttPlanCopy:input_type -> base.StandardRequest
  1608. 4, // 78: base.Api.SttPlanDetailQuery:input_type -> base.StandardRequest
  1609. 4, // 79: base.Api.SttPlanDetailBatchSave:input_type -> base.StandardRequest
  1610. 4, // 80: base.Api.STTBasicQuery:input_type -> base.StandardRequest
  1611. 4, // 81: base.Api.STTBasicAdd:input_type -> base.StandardRequest
  1612. 4, // 82: base.Api.STTBasicEdit:input_type -> base.StandardRequest
  1613. 4, // 83: base.Api.STTBasicStatusEdit:input_type -> base.StandardRequest
  1614. 4, // 84: base.Api.STTBasicPreview:input_type -> base.StandardRequest
  1615. 4, // 85: base.Api.STTBasicCopy:input_type -> base.StandardRequest
  1616. 4, // 86: base.Api.STTBasicOfflineEdit:input_type -> base.StandardRequest
  1617. 4, // 87: base.Api.STTDetailListQuery:input_type -> base.StandardRequest
  1618. 4, // 88: base.Api.STTBasicDetailBatchSave:input_type -> base.StandardRequest
  1619. 4, // 89: base.Api.STTDetailAllowDelCheck:input_type -> base.StandardRequest
  1620. 4, // 90: base.Api.CourseDetailQuery:input_type -> base.StandardRequest
  1621. 4, // 91: base.Api.OrderListQuery:input_type -> base.StandardRequest
  1622. 4, // 92: base.Api.OrderAddByManager:input_type -> base.StandardRequest
  1623. 4, // 93: base.Api.OrderCancelByManager:input_type -> base.StandardRequest
  1624. 4, // 94: base.Api.OrderStatistics:input_type -> base.StandardRequest
  1625. 4, // 95: base.Api.ClassOrderQuery:input_type -> base.StandardRequest
  1626. 4, // 96: base.Api.VipUserOrderQuery:input_type -> base.StandardRequest
  1627. 4, // 97: base.Api.HrSensorsPublicQuery:input_type -> base.StandardRequest
  1628. 4, // 98: base.Api.HrSensorsPvtQuery:input_type -> base.StandardRequest
  1629. 4, // 99: base.Api.AddHrSensors:input_type -> base.StandardRequest
  1630. 4, // 100: base.Api.AddPvtHrSensors:input_type -> base.StandardRequest
  1631. 4, // 101: base.Api.EditHrSensors:input_type -> base.StandardRequest
  1632. 4, // 102: base.Api.HrSensorsDel:input_type -> base.StandardRequest
  1633. 4, // 103: base.Api.PKGroupChg:input_type -> base.StandardRequest
  1634. 4, // 104: base.Api.BindHrSensor:input_type -> base.StandardRequest
  1635. 4, // 105: base.Api.UnBindHrSensor:input_type -> base.StandardRequest
  1636. 4, // 106: base.Api.ActionQuery:input_type -> base.StandardRequest
  1637. 3, // 107: base.Api.SignUp:output_type -> base.DefaultReply
  1638. 7, // 108: base.Api.SignIn:output_type -> base.SignInReply
  1639. 3, // 109: base.Api.SignOut:output_type -> base.DefaultReply
  1640. 10, // 110: base.Api.GenVerifyImage:output_type -> base.GenVerifyImageReply
  1641. 5, // 111: base.Api.SelectHrSensors:output_type -> base.StandardReply
  1642. 5, // 112: base.Api.AcrossUserSimpleQuery:output_type -> base.StandardReply
  1643. 5, // 113: base.Api.VipUserSimpleQuery:output_type -> base.StandardReply
  1644. 5, // 114: base.Api.TempVipUserSimpleQuery:output_type -> base.StandardReply
  1645. 5, // 115: base.Api.ShopSimpleQuery:output_type -> base.StandardReply
  1646. 5, // 116: base.Api.ManageableSimpleQuery:output_type -> base.StandardReply
  1647. 5, // 117: base.Api.ClassSimpleQuery:output_type -> base.StandardReply
  1648. 5, // 118: base.Api.ScreenSimpleQuery:output_type -> base.StandardReply
  1649. 13, // 119: base.Api.ManageableShopList:output_type -> base.ShopListReply
  1650. 16, // 120: base.Api.GetShopNavi:output_type -> base.GetShopNaviReply
  1651. 5, // 121: base.Api.ShopGroupQuery:output_type -> base.StandardReply
  1652. 5, // 122: base.Api.ShopGroupAdd:output_type -> base.StandardReply
  1653. 5, // 123: base.Api.ShopGroupEdit:output_type -> base.StandardReply
  1654. 5, // 124: base.Api.ShopGroupStatusEdit:output_type -> base.StandardReply
  1655. 5, // 125: base.Api.ShopGroupDetailsQuery:output_type -> base.StandardReply
  1656. 5, // 126: base.Api.ShopGroupDetailsAdd:output_type -> base.StandardReply
  1657. 5, // 127: base.Api.ShopVenueQuery:output_type -> base.StandardReply
  1658. 5, // 128: base.Api.ShopVenueAdd:output_type -> base.StandardReply
  1659. 5, // 129: base.Api.ShopVenueEdit:output_type -> base.StandardReply
  1660. 5, // 130: base.Api.ShopVenueStatusEdit:output_type -> base.StandardReply
  1661. 5, // 131: base.Api.ShopVenueEquipQuery:output_type -> base.StandardReply
  1662. 5, // 132: base.Api.ShopVenueEquipAdd:output_type -> base.StandardReply
  1663. 5, // 133: base.Api.ShopVenueEquipEdit:output_type -> base.StandardReply
  1664. 5, // 134: base.Api.ShopVenueEquipStatusEdit:output_type -> base.StandardReply
  1665. 5, // 135: base.Api.ShopVenueEquipStatusDel:output_type -> base.StandardReply
  1666. 5, // 136: base.Api.ShopManagerQuery:output_type -> base.StandardReply
  1667. 5, // 137: base.Api.ShopManagerAdd:output_type -> base.StandardReply
  1668. 5, // 138: base.Api.ShopManagerEdit:output_type -> base.StandardReply
  1669. 5, // 139: base.Api.ShopManagerStatusEdit:output_type -> base.StandardReply
  1670. 5, // 140: base.Api.ShopConfigQuery:output_type -> base.StandardReply
  1671. 5, // 141: base.Api.ShopConfigEdit:output_type -> base.StandardReply
  1672. 5, // 142: base.Api.ShopVipUserQuery:output_type -> base.StandardReply
  1673. 5, // 143: base.Api.ShopVipUserAdd:output_type -> base.StandardReply
  1674. 5, // 144: base.Api.ShopVipUserEdit:output_type -> base.StandardReply
  1675. 5, // 145: base.Api.ShopVipUserStatusEdit:output_type -> base.StandardReply
  1676. 5, // 146: base.Api.AcrossVipUserQuery:output_type -> base.StandardReply
  1677. 5, // 147: base.Api.AcrossVipUserAdd:output_type -> base.StandardReply
  1678. 5, // 148: base.Api.AcrossVipUserDel:output_type -> base.StandardReply
  1679. 5, // 149: base.Api.VipPhoneQuery:output_type -> base.StandardReply
  1680. 5, // 150: base.Api.VipMainPhoneCheck:output_type -> base.StandardReply
  1681. 5, // 151: base.Api.VipOtherPhoneAdd:output_type -> base.StandardReply
  1682. 5, // 152: base.Api.VipOtherPhoneEdit:output_type -> base.StandardReply
  1683. 5, // 153: base.Api.VipOtherPhoneStatusEdit:output_type -> base.StandardReply
  1684. 5, // 154: base.Api.TempVipUserQuery:output_type -> base.StandardReply
  1685. 5, // 155: base.Api.TempVipUserAdd:output_type -> base.StandardReply
  1686. 5, // 156: base.Api.TempVipUserEdit:output_type -> base.StandardReply
  1687. 5, // 157: base.Api.TempVipUserStatusEdit:output_type -> base.StandardReply
  1688. 5, // 158: base.Api.VipHourEdit:output_type -> base.StandardReply
  1689. 5, // 159: base.Api.VipConsumeListQuery:output_type -> base.StandardReply
  1690. 5, // 160: base.Api.VipConsumeDetailQuery:output_type -> base.StandardReply
  1691. 5, // 161: base.Api.VipClassRelationEdit:output_type -> base.StandardReply
  1692. 5, // 162: base.Api.VipHourChgQuery:output_type -> base.StandardReply
  1693. 18, // 163: base.Api.GetOverlayImgQiNiuToken:output_type -> base.QiNiuTokenReply
  1694. 18, // 164: base.Api.GetSimpleQiNiuToken:output_type -> base.QiNiuTokenReply
  1695. 5, // 165: base.Api.ClassQuery:output_type -> base.StandardReply
  1696. 5, // 166: base.Api.ClassAdd:output_type -> base.StandardReply
  1697. 5, // 167: base.Api.ClassEdit:output_type -> base.StandardReply
  1698. 5, // 168: base.Api.ClassStatusEdit:output_type -> base.StandardReply
  1699. 5, // 169: base.Api.ClassColorEdit:output_type -> base.StandardReply
  1700. 5, // 170: base.Api.ClassWxVisibleEdit:output_type -> base.StandardReply
  1701. 5, // 171: base.Api.ClassVipEdit:output_type -> base.StandardReply
  1702. 5, // 172: base.Api.SttPlanBasicQuery:output_type -> base.StandardReply
  1703. 5, // 173: base.Api.SttPlanBasicAdd:output_type -> base.StandardReply
  1704. 5, // 174: base.Api.SttPlanBasicEdit:output_type -> base.StandardReply
  1705. 5, // 175: base.Api.SttPlanBasicShopEdit:output_type -> base.StandardReply
  1706. 5, // 176: base.Api.SttPlanBasicStatusEdit:output_type -> base.StandardReply
  1707. 5, // 177: base.Api.SttPlanBasicPublish:output_type -> base.StandardReply
  1708. 5, // 178: base.Api.SttPlanPreview:output_type -> base.StandardReply
  1709. 5, // 179: base.Api.SttPlanCopy:output_type -> base.StandardReply
  1710. 5, // 180: base.Api.SttPlanDetailQuery:output_type -> base.StandardReply
  1711. 5, // 181: base.Api.SttPlanDetailBatchSave:output_type -> base.StandardReply
  1712. 5, // 182: base.Api.STTBasicQuery:output_type -> base.StandardReply
  1713. 5, // 183: base.Api.STTBasicAdd:output_type -> base.StandardReply
  1714. 5, // 184: base.Api.STTBasicEdit:output_type -> base.StandardReply
  1715. 5, // 185: base.Api.STTBasicStatusEdit:output_type -> base.StandardReply
  1716. 5, // 186: base.Api.STTBasicPreview:output_type -> base.StandardReply
  1717. 5, // 187: base.Api.STTBasicCopy:output_type -> base.StandardReply
  1718. 5, // 188: base.Api.STTBasicOfflineEdit:output_type -> base.StandardReply
  1719. 5, // 189: base.Api.STTDetailListQuery:output_type -> base.StandardReply
  1720. 5, // 190: base.Api.STTBasicDetailBatchSave:output_type -> base.StandardReply
  1721. 5, // 191: base.Api.STTDetailAllowDelCheck:output_type -> base.StandardReply
  1722. 5, // 192: base.Api.CourseDetailQuery:output_type -> base.StandardReply
  1723. 5, // 193: base.Api.OrderListQuery:output_type -> base.StandardReply
  1724. 5, // 194: base.Api.OrderAddByManager:output_type -> base.StandardReply
  1725. 5, // 195: base.Api.OrderCancelByManager:output_type -> base.StandardReply
  1726. 5, // 196: base.Api.OrderStatistics:output_type -> base.StandardReply
  1727. 5, // 197: base.Api.ClassOrderQuery:output_type -> base.StandardReply
  1728. 5, // 198: base.Api.VipUserOrderQuery:output_type -> base.StandardReply
  1729. 5, // 199: base.Api.HrSensorsPublicQuery:output_type -> base.StandardReply
  1730. 5, // 200: base.Api.HrSensorsPvtQuery:output_type -> base.StandardReply
  1731. 5, // 201: base.Api.AddHrSensors:output_type -> base.StandardReply
  1732. 5, // 202: base.Api.AddPvtHrSensors:output_type -> base.StandardReply
  1733. 5, // 203: base.Api.EditHrSensors:output_type -> base.StandardReply
  1734. 5, // 204: base.Api.HrSensorsDel:output_type -> base.StandardReply
  1735. 5, // 205: base.Api.PKGroupChg:output_type -> base.StandardReply
  1736. 5, // 206: base.Api.BindHrSensor:output_type -> base.StandardReply
  1737. 5, // 207: base.Api.UnBindHrSensor:output_type -> base.StandardReply
  1738. 5, // 208: base.Api.ActionQuery:output_type -> base.StandardReply
  1739. 107, // [107:209] is the sub-list for method output_type
  1740. 5, // [5:107] is the sub-list for method input_type
  1741. 5, // [5:5] is the sub-list for extension type_name
  1742. 5, // [5:5] is the sub-list for extension extendee
  1743. 0, // [0:5] is the sub-list for field type_name
  1744. }
  1745. func init() { file_base_proto_init() }
  1746. func file_base_proto_init() {
  1747. if File_base_proto != nil {
  1748. return
  1749. }
  1750. if !protoimpl.UnsafeEnabled {
  1751. file_base_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  1752. switch v := v.(*DefaultRequest); i {
  1753. case 0:
  1754. return &v.state
  1755. case 1:
  1756. return &v.sizeCache
  1757. case 2:
  1758. return &v.unknownFields
  1759. default:
  1760. return nil
  1761. }
  1762. }
  1763. file_base_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  1764. switch v := v.(*DefaultReply); i {
  1765. case 0:
  1766. return &v.state
  1767. case 1:
  1768. return &v.sizeCache
  1769. case 2:
  1770. return &v.unknownFields
  1771. default:
  1772. return nil
  1773. }
  1774. }
  1775. file_base_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  1776. switch v := v.(*StandardRequest); i {
  1777. case 0:
  1778. return &v.state
  1779. case 1:
  1780. return &v.sizeCache
  1781. case 2:
  1782. return &v.unknownFields
  1783. default:
  1784. return nil
  1785. }
  1786. }
  1787. file_base_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  1788. switch v := v.(*StandardReply); i {
  1789. case 0:
  1790. return &v.state
  1791. case 1:
  1792. return &v.sizeCache
  1793. case 2:
  1794. return &v.unknownFields
  1795. default:
  1796. return nil
  1797. }
  1798. }
  1799. file_base_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  1800. switch v := v.(*SignUpRequest); i {
  1801. case 0:
  1802. return &v.state
  1803. case 1:
  1804. return &v.sizeCache
  1805. case 2:
  1806. return &v.unknownFields
  1807. default:
  1808. return nil
  1809. }
  1810. }
  1811. file_base_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  1812. switch v := v.(*SignInReply); i {
  1813. case 0:
  1814. return &v.state
  1815. case 1:
  1816. return &v.sizeCache
  1817. case 2:
  1818. return &v.unknownFields
  1819. default:
  1820. return nil
  1821. }
  1822. }
  1823. file_base_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  1824. switch v := v.(*SignInRequest); i {
  1825. case 0:
  1826. return &v.state
  1827. case 1:
  1828. return &v.sizeCache
  1829. case 2:
  1830. return &v.unknownFields
  1831. default:
  1832. return nil
  1833. }
  1834. }
  1835. file_base_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  1836. switch v := v.(*GenVerifyImageRequest); i {
  1837. case 0:
  1838. return &v.state
  1839. case 1:
  1840. return &v.sizeCache
  1841. case 2:
  1842. return &v.unknownFields
  1843. default:
  1844. return nil
  1845. }
  1846. }
  1847. file_base_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  1848. switch v := v.(*GenVerifyImageReply); i {
  1849. case 0:
  1850. return &v.state
  1851. case 1:
  1852. return &v.sizeCache
  1853. case 2:
  1854. return &v.unknownFields
  1855. default:
  1856. return nil
  1857. }
  1858. }
  1859. file_base_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  1860. switch v := v.(*ShopInfo); i {
  1861. case 0:
  1862. return &v.state
  1863. case 1:
  1864. return &v.sizeCache
  1865. case 2:
  1866. return &v.unknownFields
  1867. default:
  1868. return nil
  1869. }
  1870. }
  1871. file_base_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  1872. switch v := v.(*ShopListRequest); i {
  1873. case 0:
  1874. return &v.state
  1875. case 1:
  1876. return &v.sizeCache
  1877. case 2:
  1878. return &v.unknownFields
  1879. default:
  1880. return nil
  1881. }
  1882. }
  1883. file_base_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  1884. switch v := v.(*ShopListReply); i {
  1885. case 0:
  1886. return &v.state
  1887. case 1:
  1888. return &v.sizeCache
  1889. case 2:
  1890. return &v.unknownFields
  1891. default:
  1892. return nil
  1893. }
  1894. }
  1895. file_base_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  1896. switch v := v.(*GetShopNaviRequest); i {
  1897. case 0:
  1898. return &v.state
  1899. case 1:
  1900. return &v.sizeCache
  1901. case 2:
  1902. return &v.unknownFields
  1903. default:
  1904. return nil
  1905. }
  1906. }
  1907. file_base_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  1908. switch v := v.(*Column); i {
  1909. case 0:
  1910. return &v.state
  1911. case 1:
  1912. return &v.sizeCache
  1913. case 2:
  1914. return &v.unknownFields
  1915. default:
  1916. return nil
  1917. }
  1918. }
  1919. file_base_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  1920. switch v := v.(*GetShopNaviReply); i {
  1921. case 0:
  1922. return &v.state
  1923. case 1:
  1924. return &v.sizeCache
  1925. case 2:
  1926. return &v.unknownFields
  1927. default:
  1928. return nil
  1929. }
  1930. }
  1931. file_base_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  1932. switch v := v.(*GetOverlayImgRequest); i {
  1933. case 0:
  1934. return &v.state
  1935. case 1:
  1936. return &v.sizeCache
  1937. case 2:
  1938. return &v.unknownFields
  1939. default:
  1940. return nil
  1941. }
  1942. }
  1943. file_base_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  1944. switch v := v.(*QiNiuTokenReply); i {
  1945. case 0:
  1946. return &v.state
  1947. case 1:
  1948. return &v.sizeCache
  1949. case 2:
  1950. return &v.unknownFields
  1951. default:
  1952. return nil
  1953. }
  1954. }
  1955. }
  1956. type x struct{}
  1957. out := protoimpl.TypeBuilder{
  1958. File: protoimpl.DescBuilder{
  1959. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  1960. RawDescriptor: file_base_proto_rawDesc,
  1961. NumEnums: 2,
  1962. NumMessages: 17,
  1963. NumExtensions: 0,
  1964. NumServices: 1,
  1965. },
  1966. GoTypes: file_base_proto_goTypes,
  1967. DependencyIndexes: file_base_proto_depIdxs,
  1968. EnumInfos: file_base_proto_enumTypes,
  1969. MessageInfos: file_base_proto_msgTypes,
  1970. }.Build()
  1971. File_base_proto = out.File
  1972. file_base_proto_rawDesc = nil
  1973. file_base_proto_goTypes = nil
  1974. file_base_proto_depIdxs = nil
  1975. }