base.pb.go 150 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513
  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. ErrorCode_M2JError ErrorCode = 124
  33. ErrorCode_PARAM ErrorCode = 150
  34. ErrorCode_Token ErrorCode = 200
  35. ErrorCode_VerifyCode ErrorCode = 201
  36. ErrorCode_PasswordWrongTooMuch ErrorCode = 202
  37. )
  38. // Enum value maps for ErrorCode.
  39. var (
  40. ErrorCode_name = map[int32]string{
  41. 0: "OK",
  42. 100: "PGErr",
  43. 110: "PmsnError",
  44. 120: "J2MError",
  45. 121: "WebStatusError",
  46. 122: "WebToImStatusError",
  47. 123: "ImToWebtatusError",
  48. 124: "M2JError",
  49. 150: "PARAM",
  50. 200: "Token",
  51. 201: "VerifyCode",
  52. 202: "PasswordWrongTooMuch",
  53. }
  54. ErrorCode_value = map[string]int32{
  55. "OK": 0,
  56. "PGErr": 100,
  57. "PmsnError": 110,
  58. "J2MError": 120,
  59. "WebStatusError": 121,
  60. "WebToImStatusError": 122,
  61. "ImToWebtatusError": 123,
  62. "M2JError": 124,
  63. "PARAM": 150,
  64. "Token": 200,
  65. "VerifyCode": 201,
  66. "PasswordWrongTooMuch": 202,
  67. }
  68. )
  69. func (x ErrorCode) Enum() *ErrorCode {
  70. p := new(ErrorCode)
  71. *p = x
  72. return p
  73. }
  74. func (x ErrorCode) String() string {
  75. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  76. }
  77. func (ErrorCode) Descriptor() protoreflect.EnumDescriptor {
  78. return file_base_proto_enumTypes[0].Descriptor()
  79. }
  80. func (ErrorCode) Type() protoreflect.EnumType {
  81. return &file_base_proto_enumTypes[0]
  82. }
  83. func (x ErrorCode) Number() protoreflect.EnumNumber {
  84. return protoreflect.EnumNumber(x)
  85. }
  86. // Deprecated: Use ErrorCode.Descriptor instead.
  87. func (ErrorCode) EnumDescriptor() ([]byte, []int) {
  88. return file_base_proto_rawDescGZIP(), []int{0}
  89. }
  90. type WebStatus int32
  91. const (
  92. WebStatus_Ban WebStatus = 0
  93. WebStatus_On WebStatus = 1
  94. WebStatus_Delete WebStatus = 9
  95. WebStatus_All WebStatus = 99
  96. )
  97. // Enum value maps for WebStatus.
  98. var (
  99. WebStatus_name = map[int32]string{
  100. 0: "Ban",
  101. 1: "On",
  102. 9: "Delete",
  103. 99: "All",
  104. }
  105. WebStatus_value = map[string]int32{
  106. "Ban": 0,
  107. "On": 1,
  108. "Delete": 9,
  109. "All": 99,
  110. }
  111. )
  112. func (x WebStatus) Enum() *WebStatus {
  113. p := new(WebStatus)
  114. *p = x
  115. return p
  116. }
  117. func (x WebStatus) String() string {
  118. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  119. }
  120. func (WebStatus) Descriptor() protoreflect.EnumDescriptor {
  121. return file_base_proto_enumTypes[1].Descriptor()
  122. }
  123. func (WebStatus) Type() protoreflect.EnumType {
  124. return &file_base_proto_enumTypes[1]
  125. }
  126. func (x WebStatus) Number() protoreflect.EnumNumber {
  127. return protoreflect.EnumNumber(x)
  128. }
  129. // Deprecated: Use WebStatus.Descriptor instead.
  130. func (WebStatus) EnumDescriptor() ([]byte, []int) {
  131. return file_base_proto_rawDescGZIP(), []int{1}
  132. }
  133. type VerifyType int32
  134. const (
  135. VerifyType_Undefined VerifyType = 0
  136. VerifyType_SignUp VerifyType = 1
  137. VerifyType_SignIn VerifyType = 2
  138. VerifyType_ChangePassword VerifyType = 3
  139. )
  140. // Enum value maps for VerifyType.
  141. var (
  142. VerifyType_name = map[int32]string{
  143. 0: "Undefined",
  144. 1: "SignUp",
  145. 2: "SignIn",
  146. 3: "ChangePassword",
  147. }
  148. VerifyType_value = map[string]int32{
  149. "Undefined": 0,
  150. "SignUp": 1,
  151. "SignIn": 2,
  152. "ChangePassword": 3,
  153. }
  154. )
  155. func (x VerifyType) Enum() *VerifyType {
  156. p := new(VerifyType)
  157. *p = x
  158. return p
  159. }
  160. func (x VerifyType) String() string {
  161. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  162. }
  163. func (VerifyType) Descriptor() protoreflect.EnumDescriptor {
  164. return file_base_proto_enumTypes[2].Descriptor()
  165. }
  166. func (VerifyType) Type() protoreflect.EnumType {
  167. return &file_base_proto_enumTypes[2]
  168. }
  169. func (x VerifyType) Number() protoreflect.EnumNumber {
  170. return protoreflect.EnumNumber(x)
  171. }
  172. // Deprecated: Use VerifyType.Descriptor instead.
  173. func (VerifyType) EnumDescriptor() ([]byte, []int) {
  174. return file_base_proto_rawDescGZIP(), []int{2}
  175. }
  176. type DefaultRequest struct {
  177. state protoimpl.MessageState
  178. sizeCache protoimpl.SizeCache
  179. unknownFields protoimpl.UnknownFields
  180. }
  181. func (x *DefaultRequest) Reset() {
  182. *x = DefaultRequest{}
  183. if protoimpl.UnsafeEnabled {
  184. mi := &file_base_proto_msgTypes[0]
  185. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  186. ms.StoreMessageInfo(mi)
  187. }
  188. }
  189. func (x *DefaultRequest) String() string {
  190. return protoimpl.X.MessageStringOf(x)
  191. }
  192. func (*DefaultRequest) ProtoMessage() {}
  193. func (x *DefaultRequest) ProtoReflect() protoreflect.Message {
  194. mi := &file_base_proto_msgTypes[0]
  195. if protoimpl.UnsafeEnabled && x != nil {
  196. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  197. if ms.LoadMessageInfo() == nil {
  198. ms.StoreMessageInfo(mi)
  199. }
  200. return ms
  201. }
  202. return mi.MessageOf(x)
  203. }
  204. // Deprecated: Use DefaultRequest.ProtoReflect.Descriptor instead.
  205. func (*DefaultRequest) Descriptor() ([]byte, []int) {
  206. return file_base_proto_rawDescGZIP(), []int{0}
  207. }
  208. type DefaultReply struct {
  209. state protoimpl.MessageState
  210. sizeCache protoimpl.SizeCache
  211. unknownFields protoimpl.UnknownFields
  212. }
  213. func (x *DefaultReply) Reset() {
  214. *x = DefaultReply{}
  215. if protoimpl.UnsafeEnabled {
  216. mi := &file_base_proto_msgTypes[1]
  217. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  218. ms.StoreMessageInfo(mi)
  219. }
  220. }
  221. func (x *DefaultReply) String() string {
  222. return protoimpl.X.MessageStringOf(x)
  223. }
  224. func (*DefaultReply) ProtoMessage() {}
  225. func (x *DefaultReply) ProtoReflect() protoreflect.Message {
  226. mi := &file_base_proto_msgTypes[1]
  227. if protoimpl.UnsafeEnabled && x != nil {
  228. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  229. if ms.LoadMessageInfo() == nil {
  230. ms.StoreMessageInfo(mi)
  231. }
  232. return ms
  233. }
  234. return mi.MessageOf(x)
  235. }
  236. // Deprecated: Use DefaultReply.ProtoReflect.Descriptor instead.
  237. func (*DefaultReply) Descriptor() ([]byte, []int) {
  238. return file_base_proto_rawDescGZIP(), []int{1}
  239. }
  240. type StandardRequest struct {
  241. state protoimpl.MessageState
  242. sizeCache protoimpl.SizeCache
  243. unknownFields protoimpl.UnknownFields
  244. ShopID int64 `protobuf:"varint,1,opt,name=shopID,proto3" json:"shopID,omitempty"`
  245. JsonStr string `protobuf:"bytes,2,opt,name=jsonStr,proto3" json:"jsonStr,omitempty"`
  246. Sign string `protobuf:"bytes,3,opt,name=sign,proto3" json:"sign,omitempty"`
  247. }
  248. func (x *StandardRequest) Reset() {
  249. *x = StandardRequest{}
  250. if protoimpl.UnsafeEnabled {
  251. mi := &file_base_proto_msgTypes[2]
  252. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  253. ms.StoreMessageInfo(mi)
  254. }
  255. }
  256. func (x *StandardRequest) String() string {
  257. return protoimpl.X.MessageStringOf(x)
  258. }
  259. func (*StandardRequest) ProtoMessage() {}
  260. func (x *StandardRequest) ProtoReflect() protoreflect.Message {
  261. mi := &file_base_proto_msgTypes[2]
  262. if protoimpl.UnsafeEnabled && x != nil {
  263. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  264. if ms.LoadMessageInfo() == nil {
  265. ms.StoreMessageInfo(mi)
  266. }
  267. return ms
  268. }
  269. return mi.MessageOf(x)
  270. }
  271. // Deprecated: Use StandardRequest.ProtoReflect.Descriptor instead.
  272. func (*StandardRequest) Descriptor() ([]byte, []int) {
  273. return file_base_proto_rawDescGZIP(), []int{2}
  274. }
  275. func (x *StandardRequest) GetShopID() int64 {
  276. if x != nil {
  277. return x.ShopID
  278. }
  279. return 0
  280. }
  281. func (x *StandardRequest) GetJsonStr() string {
  282. if x != nil {
  283. return x.JsonStr
  284. }
  285. return ""
  286. }
  287. func (x *StandardRequest) GetSign() string {
  288. if x != nil {
  289. return x.Sign
  290. }
  291. return ""
  292. }
  293. type CourseStandardRequest struct {
  294. state protoimpl.MessageState
  295. sizeCache protoimpl.SizeCache
  296. unknownFields protoimpl.UnknownFields
  297. ShopID int64 `protobuf:"varint,1,opt,name=shopID,proto3" json:"shopID,omitempty"`
  298. JsonStr string `protobuf:"bytes,2,opt,name=jsonStr,proto3" json:"jsonStr,omitempty"`
  299. Sign string `protobuf:"bytes,3,opt,name=sign,proto3" json:"sign,omitempty"`
  300. IsHr int32 `protobuf:"varint,4,opt,name=isHr,proto3" json:"isHr,omitempty"`
  301. IsScore int32 `protobuf:"varint,5,opt,name=isScore,proto3" json:"isScore,omitempty"`
  302. }
  303. func (x *CourseStandardRequest) Reset() {
  304. *x = CourseStandardRequest{}
  305. if protoimpl.UnsafeEnabled {
  306. mi := &file_base_proto_msgTypes[3]
  307. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  308. ms.StoreMessageInfo(mi)
  309. }
  310. }
  311. func (x *CourseStandardRequest) String() string {
  312. return protoimpl.X.MessageStringOf(x)
  313. }
  314. func (*CourseStandardRequest) ProtoMessage() {}
  315. func (x *CourseStandardRequest) ProtoReflect() protoreflect.Message {
  316. mi := &file_base_proto_msgTypes[3]
  317. if protoimpl.UnsafeEnabled && x != nil {
  318. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  319. if ms.LoadMessageInfo() == nil {
  320. ms.StoreMessageInfo(mi)
  321. }
  322. return ms
  323. }
  324. return mi.MessageOf(x)
  325. }
  326. // Deprecated: Use CourseStandardRequest.ProtoReflect.Descriptor instead.
  327. func (*CourseStandardRequest) Descriptor() ([]byte, []int) {
  328. return file_base_proto_rawDescGZIP(), []int{3}
  329. }
  330. func (x *CourseStandardRequest) GetShopID() int64 {
  331. if x != nil {
  332. return x.ShopID
  333. }
  334. return 0
  335. }
  336. func (x *CourseStandardRequest) GetJsonStr() string {
  337. if x != nil {
  338. return x.JsonStr
  339. }
  340. return ""
  341. }
  342. func (x *CourseStandardRequest) GetSign() string {
  343. if x != nil {
  344. return x.Sign
  345. }
  346. return ""
  347. }
  348. func (x *CourseStandardRequest) GetIsHr() int32 {
  349. if x != nil {
  350. return x.IsHr
  351. }
  352. return 0
  353. }
  354. func (x *CourseStandardRequest) GetIsScore() int32 {
  355. if x != nil {
  356. return x.IsScore
  357. }
  358. return 0
  359. }
  360. type StandardReply struct {
  361. state protoimpl.MessageState
  362. sizeCache protoimpl.SizeCache
  363. unknownFields protoimpl.UnknownFields
  364. JsonRst string `protobuf:"bytes,1,opt,name=jsonRst,proto3" json:"jsonRst,omitempty"`
  365. Sign string `protobuf:"bytes,2,opt,name=sign,proto3" json:"sign,omitempty"`
  366. }
  367. func (x *StandardReply) Reset() {
  368. *x = StandardReply{}
  369. if protoimpl.UnsafeEnabled {
  370. mi := &file_base_proto_msgTypes[4]
  371. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  372. ms.StoreMessageInfo(mi)
  373. }
  374. }
  375. func (x *StandardReply) String() string {
  376. return protoimpl.X.MessageStringOf(x)
  377. }
  378. func (*StandardReply) ProtoMessage() {}
  379. func (x *StandardReply) ProtoReflect() protoreflect.Message {
  380. mi := &file_base_proto_msgTypes[4]
  381. if protoimpl.UnsafeEnabled && x != nil {
  382. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  383. if ms.LoadMessageInfo() == nil {
  384. ms.StoreMessageInfo(mi)
  385. }
  386. return ms
  387. }
  388. return mi.MessageOf(x)
  389. }
  390. // Deprecated: Use StandardReply.ProtoReflect.Descriptor instead.
  391. func (*StandardReply) Descriptor() ([]byte, []int) {
  392. return file_base_proto_rawDescGZIP(), []int{4}
  393. }
  394. func (x *StandardReply) GetJsonRst() string {
  395. if x != nil {
  396. return x.JsonRst
  397. }
  398. return ""
  399. }
  400. func (x *StandardReply) GetSign() string {
  401. if x != nil {
  402. return x.Sign
  403. }
  404. return ""
  405. }
  406. type SignUpRequest struct {
  407. state protoimpl.MessageState
  408. sizeCache protoimpl.SizeCache
  409. unknownFields protoimpl.UnknownFields
  410. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  411. Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
  412. }
  413. func (x *SignUpRequest) Reset() {
  414. *x = SignUpRequest{}
  415. if protoimpl.UnsafeEnabled {
  416. mi := &file_base_proto_msgTypes[5]
  417. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  418. ms.StoreMessageInfo(mi)
  419. }
  420. }
  421. func (x *SignUpRequest) String() string {
  422. return protoimpl.X.MessageStringOf(x)
  423. }
  424. func (*SignUpRequest) ProtoMessage() {}
  425. func (x *SignUpRequest) ProtoReflect() protoreflect.Message {
  426. mi := &file_base_proto_msgTypes[5]
  427. if protoimpl.UnsafeEnabled && x != nil {
  428. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  429. if ms.LoadMessageInfo() == nil {
  430. ms.StoreMessageInfo(mi)
  431. }
  432. return ms
  433. }
  434. return mi.MessageOf(x)
  435. }
  436. // Deprecated: Use SignUpRequest.ProtoReflect.Descriptor instead.
  437. func (*SignUpRequest) Descriptor() ([]byte, []int) {
  438. return file_base_proto_rawDescGZIP(), []int{5}
  439. }
  440. func (x *SignUpRequest) GetName() string {
  441. if x != nil {
  442. return x.Name
  443. }
  444. return ""
  445. }
  446. func (x *SignUpRequest) GetPassword() string {
  447. if x != nil {
  448. return x.Password
  449. }
  450. return ""
  451. }
  452. type SignInReply struct {
  453. state protoimpl.MessageState
  454. sizeCache protoimpl.SizeCache
  455. unknownFields protoimpl.UnknownFields
  456. Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
  457. }
  458. func (x *SignInReply) Reset() {
  459. *x = SignInReply{}
  460. if protoimpl.UnsafeEnabled {
  461. mi := &file_base_proto_msgTypes[6]
  462. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  463. ms.StoreMessageInfo(mi)
  464. }
  465. }
  466. func (x *SignInReply) String() string {
  467. return protoimpl.X.MessageStringOf(x)
  468. }
  469. func (*SignInReply) ProtoMessage() {}
  470. func (x *SignInReply) ProtoReflect() protoreflect.Message {
  471. mi := &file_base_proto_msgTypes[6]
  472. if protoimpl.UnsafeEnabled && x != nil {
  473. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  474. if ms.LoadMessageInfo() == nil {
  475. ms.StoreMessageInfo(mi)
  476. }
  477. return ms
  478. }
  479. return mi.MessageOf(x)
  480. }
  481. // Deprecated: Use SignInReply.ProtoReflect.Descriptor instead.
  482. func (*SignInReply) Descriptor() ([]byte, []int) {
  483. return file_base_proto_rawDescGZIP(), []int{6}
  484. }
  485. func (x *SignInReply) GetToken() string {
  486. if x != nil {
  487. return x.Token
  488. }
  489. return ""
  490. }
  491. type SignInRequest struct {
  492. state protoimpl.MessageState
  493. sizeCache protoimpl.SizeCache
  494. unknownFields protoimpl.UnknownFields
  495. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  496. Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
  497. CodeId string `protobuf:"bytes,3,opt,name=codeId,proto3" json:"codeId,omitempty"`
  498. VerifyCode string `protobuf:"bytes,4,opt,name=verifyCode,proto3" json:"verifyCode,omitempty"`
  499. }
  500. func (x *SignInRequest) Reset() {
  501. *x = SignInRequest{}
  502. if protoimpl.UnsafeEnabled {
  503. mi := &file_base_proto_msgTypes[7]
  504. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  505. ms.StoreMessageInfo(mi)
  506. }
  507. }
  508. func (x *SignInRequest) String() string {
  509. return protoimpl.X.MessageStringOf(x)
  510. }
  511. func (*SignInRequest) ProtoMessage() {}
  512. func (x *SignInRequest) ProtoReflect() protoreflect.Message {
  513. mi := &file_base_proto_msgTypes[7]
  514. if protoimpl.UnsafeEnabled && x != nil {
  515. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  516. if ms.LoadMessageInfo() == nil {
  517. ms.StoreMessageInfo(mi)
  518. }
  519. return ms
  520. }
  521. return mi.MessageOf(x)
  522. }
  523. // Deprecated: Use SignInRequest.ProtoReflect.Descriptor instead.
  524. func (*SignInRequest) Descriptor() ([]byte, []int) {
  525. return file_base_proto_rawDescGZIP(), []int{7}
  526. }
  527. func (x *SignInRequest) GetName() string {
  528. if x != nil {
  529. return x.Name
  530. }
  531. return ""
  532. }
  533. func (x *SignInRequest) GetPassword() string {
  534. if x != nil {
  535. return x.Password
  536. }
  537. return ""
  538. }
  539. func (x *SignInRequest) GetCodeId() string {
  540. if x != nil {
  541. return x.CodeId
  542. }
  543. return ""
  544. }
  545. func (x *SignInRequest) GetVerifyCode() string {
  546. if x != nil {
  547. return x.VerifyCode
  548. }
  549. return ""
  550. }
  551. type GenVerifyImageRequest struct {
  552. state protoimpl.MessageState
  553. sizeCache protoimpl.SizeCache
  554. unknownFields protoimpl.UnknownFields
  555. Height int32 `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
  556. Width int32 `protobuf:"varint,2,opt,name=width,proto3" json:"width,omitempty"`
  557. }
  558. func (x *GenVerifyImageRequest) Reset() {
  559. *x = GenVerifyImageRequest{}
  560. if protoimpl.UnsafeEnabled {
  561. mi := &file_base_proto_msgTypes[8]
  562. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  563. ms.StoreMessageInfo(mi)
  564. }
  565. }
  566. func (x *GenVerifyImageRequest) String() string {
  567. return protoimpl.X.MessageStringOf(x)
  568. }
  569. func (*GenVerifyImageRequest) ProtoMessage() {}
  570. func (x *GenVerifyImageRequest) ProtoReflect() protoreflect.Message {
  571. mi := &file_base_proto_msgTypes[8]
  572. if protoimpl.UnsafeEnabled && x != nil {
  573. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  574. if ms.LoadMessageInfo() == nil {
  575. ms.StoreMessageInfo(mi)
  576. }
  577. return ms
  578. }
  579. return mi.MessageOf(x)
  580. }
  581. // Deprecated: Use GenVerifyImageRequest.ProtoReflect.Descriptor instead.
  582. func (*GenVerifyImageRequest) Descriptor() ([]byte, []int) {
  583. return file_base_proto_rawDescGZIP(), []int{8}
  584. }
  585. func (x *GenVerifyImageRequest) GetHeight() int32 {
  586. if x != nil {
  587. return x.Height
  588. }
  589. return 0
  590. }
  591. func (x *GenVerifyImageRequest) GetWidth() int32 {
  592. if x != nil {
  593. return x.Width
  594. }
  595. return 0
  596. }
  597. type GenVerifyImageReply struct {
  598. state protoimpl.MessageState
  599. sizeCache protoimpl.SizeCache
  600. unknownFields protoimpl.UnknownFields
  601. CodeId string `protobuf:"bytes,1,opt,name=codeId,proto3" json:"codeId,omitempty"`
  602. ImageBase64 string `protobuf:"bytes,2,opt,name=imageBase64,proto3" json:"imageBase64,omitempty"`
  603. }
  604. func (x *GenVerifyImageReply) Reset() {
  605. *x = GenVerifyImageReply{}
  606. if protoimpl.UnsafeEnabled {
  607. mi := &file_base_proto_msgTypes[9]
  608. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  609. ms.StoreMessageInfo(mi)
  610. }
  611. }
  612. func (x *GenVerifyImageReply) String() string {
  613. return protoimpl.X.MessageStringOf(x)
  614. }
  615. func (*GenVerifyImageReply) ProtoMessage() {}
  616. func (x *GenVerifyImageReply) ProtoReflect() protoreflect.Message {
  617. mi := &file_base_proto_msgTypes[9]
  618. if protoimpl.UnsafeEnabled && x != nil {
  619. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  620. if ms.LoadMessageInfo() == nil {
  621. ms.StoreMessageInfo(mi)
  622. }
  623. return ms
  624. }
  625. return mi.MessageOf(x)
  626. }
  627. // Deprecated: Use GenVerifyImageReply.ProtoReflect.Descriptor instead.
  628. func (*GenVerifyImageReply) Descriptor() ([]byte, []int) {
  629. return file_base_proto_rawDescGZIP(), []int{9}
  630. }
  631. func (x *GenVerifyImageReply) GetCodeId() string {
  632. if x != nil {
  633. return x.CodeId
  634. }
  635. return ""
  636. }
  637. func (x *GenVerifyImageReply) GetImageBase64() string {
  638. if x != nil {
  639. return x.ImageBase64
  640. }
  641. return ""
  642. }
  643. type ShopInfo struct {
  644. state protoimpl.MessageState
  645. sizeCache protoimpl.SizeCache
  646. unknownFields protoimpl.UnknownFields
  647. ShopId int64 `protobuf:"varint,1,opt,name=shopId,proto3" json:"shopId,omitempty"`
  648. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  649. SId int64 `protobuf:"varint,3,opt,name=sId,proto3" json:"sId,omitempty"`
  650. Addr string `protobuf:"bytes,4,opt,name=addr,proto3" json:"addr,omitempty"`
  651. Phone string `protobuf:"bytes,5,opt,name=phone,proto3" json:"phone,omitempty"`
  652. Contacts string `protobuf:"bytes,6,opt,name=contacts,proto3" json:"contacts,omitempty"`
  653. Status WebStatus `protobuf:"varint,7,opt,name=status,proto3,enum=base.WebStatus" json:"status,omitempty"`
  654. CreatedAt string `protobuf:"bytes,8,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
  655. CreatedUser int64 `protobuf:"varint,9,opt,name=created_user,json=createdUser,proto3" json:"created_user,omitempty"`
  656. UpdatedAt string `protobuf:"bytes,10,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
  657. UpdatedUser int64 `protobuf:"varint,11,opt,name=updated_user,json=updatedUser,proto3" json:"updated_user,omitempty"`
  658. IsHr int64 `protobuf:"varint,12,opt,name=is_hr,json=isHr,proto3" json:"is_hr,omitempty"`
  659. IsScore int64 `protobuf:"varint,13,opt,name=is_score,json=isScore,proto3" json:"is_score,omitempty"`
  660. ShopUUID string `protobuf:"bytes,14,opt,name=shopUUID,proto3" json:"shopUUID,omitempty"`
  661. }
  662. func (x *ShopInfo) Reset() {
  663. *x = ShopInfo{}
  664. if protoimpl.UnsafeEnabled {
  665. mi := &file_base_proto_msgTypes[10]
  666. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  667. ms.StoreMessageInfo(mi)
  668. }
  669. }
  670. func (x *ShopInfo) String() string {
  671. return protoimpl.X.MessageStringOf(x)
  672. }
  673. func (*ShopInfo) ProtoMessage() {}
  674. func (x *ShopInfo) ProtoReflect() protoreflect.Message {
  675. mi := &file_base_proto_msgTypes[10]
  676. if protoimpl.UnsafeEnabled && x != nil {
  677. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  678. if ms.LoadMessageInfo() == nil {
  679. ms.StoreMessageInfo(mi)
  680. }
  681. return ms
  682. }
  683. return mi.MessageOf(x)
  684. }
  685. // Deprecated: Use ShopInfo.ProtoReflect.Descriptor instead.
  686. func (*ShopInfo) Descriptor() ([]byte, []int) {
  687. return file_base_proto_rawDescGZIP(), []int{10}
  688. }
  689. func (x *ShopInfo) GetShopId() int64 {
  690. if x != nil {
  691. return x.ShopId
  692. }
  693. return 0
  694. }
  695. func (x *ShopInfo) GetName() string {
  696. if x != nil {
  697. return x.Name
  698. }
  699. return ""
  700. }
  701. func (x *ShopInfo) GetSId() int64 {
  702. if x != nil {
  703. return x.SId
  704. }
  705. return 0
  706. }
  707. func (x *ShopInfo) GetAddr() string {
  708. if x != nil {
  709. return x.Addr
  710. }
  711. return ""
  712. }
  713. func (x *ShopInfo) GetPhone() string {
  714. if x != nil {
  715. return x.Phone
  716. }
  717. return ""
  718. }
  719. func (x *ShopInfo) GetContacts() string {
  720. if x != nil {
  721. return x.Contacts
  722. }
  723. return ""
  724. }
  725. func (x *ShopInfo) GetStatus() WebStatus {
  726. if x != nil {
  727. return x.Status
  728. }
  729. return WebStatus_Ban
  730. }
  731. func (x *ShopInfo) GetCreatedAt() string {
  732. if x != nil {
  733. return x.CreatedAt
  734. }
  735. return ""
  736. }
  737. func (x *ShopInfo) GetCreatedUser() int64 {
  738. if x != nil {
  739. return x.CreatedUser
  740. }
  741. return 0
  742. }
  743. func (x *ShopInfo) GetUpdatedAt() string {
  744. if x != nil {
  745. return x.UpdatedAt
  746. }
  747. return ""
  748. }
  749. func (x *ShopInfo) GetUpdatedUser() int64 {
  750. if x != nil {
  751. return x.UpdatedUser
  752. }
  753. return 0
  754. }
  755. func (x *ShopInfo) GetIsHr() int64 {
  756. if x != nil {
  757. return x.IsHr
  758. }
  759. return 0
  760. }
  761. func (x *ShopInfo) GetIsScore() int64 {
  762. if x != nil {
  763. return x.IsScore
  764. }
  765. return 0
  766. }
  767. func (x *ShopInfo) GetShopUUID() string {
  768. if x != nil {
  769. return x.ShopUUID
  770. }
  771. return ""
  772. }
  773. type ShopDetailRequest struct {
  774. state protoimpl.MessageState
  775. sizeCache protoimpl.SizeCache
  776. unknownFields protoimpl.UnknownFields
  777. ShopId int64 `protobuf:"varint,1,opt,name=shopId,proto3" json:"shopId,omitempty"`
  778. }
  779. func (x *ShopDetailRequest) Reset() {
  780. *x = ShopDetailRequest{}
  781. if protoimpl.UnsafeEnabled {
  782. mi := &file_base_proto_msgTypes[11]
  783. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  784. ms.StoreMessageInfo(mi)
  785. }
  786. }
  787. func (x *ShopDetailRequest) String() string {
  788. return protoimpl.X.MessageStringOf(x)
  789. }
  790. func (*ShopDetailRequest) ProtoMessage() {}
  791. func (x *ShopDetailRequest) ProtoReflect() protoreflect.Message {
  792. mi := &file_base_proto_msgTypes[11]
  793. if protoimpl.UnsafeEnabled && x != nil {
  794. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  795. if ms.LoadMessageInfo() == nil {
  796. ms.StoreMessageInfo(mi)
  797. }
  798. return ms
  799. }
  800. return mi.MessageOf(x)
  801. }
  802. // Deprecated: Use ShopDetailRequest.ProtoReflect.Descriptor instead.
  803. func (*ShopDetailRequest) Descriptor() ([]byte, []int) {
  804. return file_base_proto_rawDescGZIP(), []int{11}
  805. }
  806. func (x *ShopDetailRequest) GetShopId() int64 {
  807. if x != nil {
  808. return x.ShopId
  809. }
  810. return 0
  811. }
  812. type ShopListRequest struct {
  813. state protoimpl.MessageState
  814. sizeCache protoimpl.SizeCache
  815. unknownFields protoimpl.UnknownFields
  816. // 模糊查询
  817. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  818. // Status_Null查询全部
  819. Status WebStatus `protobuf:"varint,2,opt,name=status,proto3,enum=base.WebStatus" json:"status,omitempty"`
  820. //上级商家Id, -1 时查询全部
  821. SId int64 `protobuf:"varint,3,opt,name=sId,proto3" json:"sId,omitempty"`
  822. }
  823. func (x *ShopListRequest) Reset() {
  824. *x = ShopListRequest{}
  825. if protoimpl.UnsafeEnabled {
  826. mi := &file_base_proto_msgTypes[12]
  827. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  828. ms.StoreMessageInfo(mi)
  829. }
  830. }
  831. func (x *ShopListRequest) String() string {
  832. return protoimpl.X.MessageStringOf(x)
  833. }
  834. func (*ShopListRequest) ProtoMessage() {}
  835. func (x *ShopListRequest) ProtoReflect() protoreflect.Message {
  836. mi := &file_base_proto_msgTypes[12]
  837. if protoimpl.UnsafeEnabled && x != nil {
  838. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  839. if ms.LoadMessageInfo() == nil {
  840. ms.StoreMessageInfo(mi)
  841. }
  842. return ms
  843. }
  844. return mi.MessageOf(x)
  845. }
  846. // Deprecated: Use ShopListRequest.ProtoReflect.Descriptor instead.
  847. func (*ShopListRequest) Descriptor() ([]byte, []int) {
  848. return file_base_proto_rawDescGZIP(), []int{12}
  849. }
  850. func (x *ShopListRequest) GetName() string {
  851. if x != nil {
  852. return x.Name
  853. }
  854. return ""
  855. }
  856. func (x *ShopListRequest) GetStatus() WebStatus {
  857. if x != nil {
  858. return x.Status
  859. }
  860. return WebStatus_Ban
  861. }
  862. func (x *ShopListRequest) GetSId() int64 {
  863. if x != nil {
  864. return x.SId
  865. }
  866. return 0
  867. }
  868. type ShopListReply struct {
  869. state protoimpl.MessageState
  870. sizeCache protoimpl.SizeCache
  871. unknownFields protoimpl.UnknownFields
  872. List []*ShopInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  873. }
  874. func (x *ShopListReply) Reset() {
  875. *x = ShopListReply{}
  876. if protoimpl.UnsafeEnabled {
  877. mi := &file_base_proto_msgTypes[13]
  878. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  879. ms.StoreMessageInfo(mi)
  880. }
  881. }
  882. func (x *ShopListReply) String() string {
  883. return protoimpl.X.MessageStringOf(x)
  884. }
  885. func (*ShopListReply) ProtoMessage() {}
  886. func (x *ShopListReply) ProtoReflect() protoreflect.Message {
  887. mi := &file_base_proto_msgTypes[13]
  888. if protoimpl.UnsafeEnabled && x != nil {
  889. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  890. if ms.LoadMessageInfo() == nil {
  891. ms.StoreMessageInfo(mi)
  892. }
  893. return ms
  894. }
  895. return mi.MessageOf(x)
  896. }
  897. // Deprecated: Use ShopListReply.ProtoReflect.Descriptor instead.
  898. func (*ShopListReply) Descriptor() ([]byte, []int) {
  899. return file_base_proto_rawDescGZIP(), []int{13}
  900. }
  901. func (x *ShopListReply) GetList() []*ShopInfo {
  902. if x != nil {
  903. return x.List
  904. }
  905. return nil
  906. }
  907. type GetShopNaviRequest struct {
  908. state protoimpl.MessageState
  909. sizeCache protoimpl.SizeCache
  910. unknownFields protoimpl.UnknownFields
  911. ShopId int64 `protobuf:"varint,1,opt,name=shopId,proto3" json:"shopId,omitempty"`
  912. // 最顶层为0
  913. ParentId int64 `protobuf:"varint,2,opt,name=parentId,proto3" json:"parentId,omitempty"`
  914. }
  915. func (x *GetShopNaviRequest) Reset() {
  916. *x = GetShopNaviRequest{}
  917. if protoimpl.UnsafeEnabled {
  918. mi := &file_base_proto_msgTypes[14]
  919. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  920. ms.StoreMessageInfo(mi)
  921. }
  922. }
  923. func (x *GetShopNaviRequest) String() string {
  924. return protoimpl.X.MessageStringOf(x)
  925. }
  926. func (*GetShopNaviRequest) ProtoMessage() {}
  927. func (x *GetShopNaviRequest) ProtoReflect() protoreflect.Message {
  928. mi := &file_base_proto_msgTypes[14]
  929. if protoimpl.UnsafeEnabled && x != nil {
  930. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  931. if ms.LoadMessageInfo() == nil {
  932. ms.StoreMessageInfo(mi)
  933. }
  934. return ms
  935. }
  936. return mi.MessageOf(x)
  937. }
  938. // Deprecated: Use GetShopNaviRequest.ProtoReflect.Descriptor instead.
  939. func (*GetShopNaviRequest) Descriptor() ([]byte, []int) {
  940. return file_base_proto_rawDescGZIP(), []int{14}
  941. }
  942. func (x *GetShopNaviRequest) GetShopId() int64 {
  943. if x != nil {
  944. return x.ShopId
  945. }
  946. return 0
  947. }
  948. func (x *GetShopNaviRequest) GetParentId() int64 {
  949. if x != nil {
  950. return x.ParentId
  951. }
  952. return 0
  953. }
  954. type GetShopNaviAllRequest struct {
  955. state protoimpl.MessageState
  956. sizeCache protoimpl.SizeCache
  957. unknownFields protoimpl.UnknownFields
  958. ShopId int64 `protobuf:"varint,1,opt,name=shopId,proto3" json:"shopId,omitempty"`
  959. }
  960. func (x *GetShopNaviAllRequest) Reset() {
  961. *x = GetShopNaviAllRequest{}
  962. if protoimpl.UnsafeEnabled {
  963. mi := &file_base_proto_msgTypes[15]
  964. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  965. ms.StoreMessageInfo(mi)
  966. }
  967. }
  968. func (x *GetShopNaviAllRequest) String() string {
  969. return protoimpl.X.MessageStringOf(x)
  970. }
  971. func (*GetShopNaviAllRequest) ProtoMessage() {}
  972. func (x *GetShopNaviAllRequest) ProtoReflect() protoreflect.Message {
  973. mi := &file_base_proto_msgTypes[15]
  974. if protoimpl.UnsafeEnabled && x != nil {
  975. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  976. if ms.LoadMessageInfo() == nil {
  977. ms.StoreMessageInfo(mi)
  978. }
  979. return ms
  980. }
  981. return mi.MessageOf(x)
  982. }
  983. // Deprecated: Use GetShopNaviAllRequest.ProtoReflect.Descriptor instead.
  984. func (*GetShopNaviAllRequest) Descriptor() ([]byte, []int) {
  985. return file_base_proto_rawDescGZIP(), []int{15}
  986. }
  987. func (x *GetShopNaviAllRequest) GetShopId() int64 {
  988. if x != nil {
  989. return x.ShopId
  990. }
  991. return 0
  992. }
  993. type Column struct {
  994. state protoimpl.MessageState
  995. sizeCache protoimpl.SizeCache
  996. unknownFields protoimpl.UnknownFields
  997. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  998. Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
  999. Code string `protobuf:"bytes,3,opt,name=code,proto3" json:"code,omitempty"`
  1000. // 顺序
  1001. Sn int32 `protobuf:"varint,4,opt,name=sn,proto3" json:"sn,omitempty"`
  1002. Status WebStatus `protobuf:"varint,5,opt,name=status,proto3,enum=base.WebStatus" json:"status,omitempty"`
  1003. NavShow bool `protobuf:"varint,6,opt,name=navShow,proto3" json:"navShow,omitempty"`
  1004. Id string `protobuf:"bytes,7,opt,name=id,proto3" json:"id,omitempty"`
  1005. }
  1006. func (x *Column) Reset() {
  1007. *x = Column{}
  1008. if protoimpl.UnsafeEnabled {
  1009. mi := &file_base_proto_msgTypes[16]
  1010. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1011. ms.StoreMessageInfo(mi)
  1012. }
  1013. }
  1014. func (x *Column) String() string {
  1015. return protoimpl.X.MessageStringOf(x)
  1016. }
  1017. func (*Column) ProtoMessage() {}
  1018. func (x *Column) ProtoReflect() protoreflect.Message {
  1019. mi := &file_base_proto_msgTypes[16]
  1020. if protoimpl.UnsafeEnabled && x != nil {
  1021. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1022. if ms.LoadMessageInfo() == nil {
  1023. ms.StoreMessageInfo(mi)
  1024. }
  1025. return ms
  1026. }
  1027. return mi.MessageOf(x)
  1028. }
  1029. // Deprecated: Use Column.ProtoReflect.Descriptor instead.
  1030. func (*Column) Descriptor() ([]byte, []int) {
  1031. return file_base_proto_rawDescGZIP(), []int{16}
  1032. }
  1033. func (x *Column) GetName() string {
  1034. if x != nil {
  1035. return x.Name
  1036. }
  1037. return ""
  1038. }
  1039. func (x *Column) GetUrl() string {
  1040. if x != nil {
  1041. return x.Url
  1042. }
  1043. return ""
  1044. }
  1045. func (x *Column) GetCode() string {
  1046. if x != nil {
  1047. return x.Code
  1048. }
  1049. return ""
  1050. }
  1051. func (x *Column) GetSn() int32 {
  1052. if x != nil {
  1053. return x.Sn
  1054. }
  1055. return 0
  1056. }
  1057. func (x *Column) GetStatus() WebStatus {
  1058. if x != nil {
  1059. return x.Status
  1060. }
  1061. return WebStatus_Ban
  1062. }
  1063. func (x *Column) GetNavShow() bool {
  1064. if x != nil {
  1065. return x.NavShow
  1066. }
  1067. return false
  1068. }
  1069. func (x *Column) GetId() string {
  1070. if x != nil {
  1071. return x.Id
  1072. }
  1073. return ""
  1074. }
  1075. type GetShopNaviReply struct {
  1076. state protoimpl.MessageState
  1077. sizeCache protoimpl.SizeCache
  1078. unknownFields protoimpl.UnknownFields
  1079. List []*Column `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  1080. }
  1081. func (x *GetShopNaviReply) Reset() {
  1082. *x = GetShopNaviReply{}
  1083. if protoimpl.UnsafeEnabled {
  1084. mi := &file_base_proto_msgTypes[17]
  1085. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1086. ms.StoreMessageInfo(mi)
  1087. }
  1088. }
  1089. func (x *GetShopNaviReply) String() string {
  1090. return protoimpl.X.MessageStringOf(x)
  1091. }
  1092. func (*GetShopNaviReply) ProtoMessage() {}
  1093. func (x *GetShopNaviReply) ProtoReflect() protoreflect.Message {
  1094. mi := &file_base_proto_msgTypes[17]
  1095. if protoimpl.UnsafeEnabled && x != nil {
  1096. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1097. if ms.LoadMessageInfo() == nil {
  1098. ms.StoreMessageInfo(mi)
  1099. }
  1100. return ms
  1101. }
  1102. return mi.MessageOf(x)
  1103. }
  1104. // Deprecated: Use GetShopNaviReply.ProtoReflect.Descriptor instead.
  1105. func (*GetShopNaviReply) Descriptor() ([]byte, []int) {
  1106. return file_base_proto_rawDescGZIP(), []int{17}
  1107. }
  1108. func (x *GetShopNaviReply) GetList() []*Column {
  1109. if x != nil {
  1110. return x.List
  1111. }
  1112. return nil
  1113. }
  1114. type GetShopNaviAllReply struct {
  1115. state protoimpl.MessageState
  1116. sizeCache protoimpl.SizeCache
  1117. unknownFields protoimpl.UnknownFields
  1118. ColumnRs string `protobuf:"bytes,1,opt,name=ColumnRs,proto3" json:"ColumnRs,omitempty"`
  1119. }
  1120. func (x *GetShopNaviAllReply) Reset() {
  1121. *x = GetShopNaviAllReply{}
  1122. if protoimpl.UnsafeEnabled {
  1123. mi := &file_base_proto_msgTypes[18]
  1124. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1125. ms.StoreMessageInfo(mi)
  1126. }
  1127. }
  1128. func (x *GetShopNaviAllReply) String() string {
  1129. return protoimpl.X.MessageStringOf(x)
  1130. }
  1131. func (*GetShopNaviAllReply) ProtoMessage() {}
  1132. func (x *GetShopNaviAllReply) ProtoReflect() protoreflect.Message {
  1133. mi := &file_base_proto_msgTypes[18]
  1134. if protoimpl.UnsafeEnabled && x != nil {
  1135. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1136. if ms.LoadMessageInfo() == nil {
  1137. ms.StoreMessageInfo(mi)
  1138. }
  1139. return ms
  1140. }
  1141. return mi.MessageOf(x)
  1142. }
  1143. // Deprecated: Use GetShopNaviAllReply.ProtoReflect.Descriptor instead.
  1144. func (*GetShopNaviAllReply) Descriptor() ([]byte, []int) {
  1145. return file_base_proto_rawDescGZIP(), []int{18}
  1146. }
  1147. func (x *GetShopNaviAllReply) GetColumnRs() string {
  1148. if x != nil {
  1149. return x.ColumnRs
  1150. }
  1151. return ""
  1152. }
  1153. type GetOverlayImgRequest struct {
  1154. state protoimpl.MessageState
  1155. sizeCache protoimpl.SizeCache
  1156. unknownFields protoimpl.UnknownFields
  1157. FileName string `protobuf:"bytes,1,opt,name=fileName,proto3" json:"fileName,omitempty"`
  1158. }
  1159. func (x *GetOverlayImgRequest) Reset() {
  1160. *x = GetOverlayImgRequest{}
  1161. if protoimpl.UnsafeEnabled {
  1162. mi := &file_base_proto_msgTypes[19]
  1163. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1164. ms.StoreMessageInfo(mi)
  1165. }
  1166. }
  1167. func (x *GetOverlayImgRequest) String() string {
  1168. return protoimpl.X.MessageStringOf(x)
  1169. }
  1170. func (*GetOverlayImgRequest) ProtoMessage() {}
  1171. func (x *GetOverlayImgRequest) ProtoReflect() protoreflect.Message {
  1172. mi := &file_base_proto_msgTypes[19]
  1173. if protoimpl.UnsafeEnabled && x != nil {
  1174. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1175. if ms.LoadMessageInfo() == nil {
  1176. ms.StoreMessageInfo(mi)
  1177. }
  1178. return ms
  1179. }
  1180. return mi.MessageOf(x)
  1181. }
  1182. // Deprecated: Use GetOverlayImgRequest.ProtoReflect.Descriptor instead.
  1183. func (*GetOverlayImgRequest) Descriptor() ([]byte, []int) {
  1184. return file_base_proto_rawDescGZIP(), []int{19}
  1185. }
  1186. func (x *GetOverlayImgRequest) GetFileName() string {
  1187. if x != nil {
  1188. return x.FileName
  1189. }
  1190. return ""
  1191. }
  1192. type QiNiuTokenReply struct {
  1193. state protoimpl.MessageState
  1194. sizeCache protoimpl.SizeCache
  1195. unknownFields protoimpl.UnknownFields
  1196. Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
  1197. }
  1198. func (x *QiNiuTokenReply) Reset() {
  1199. *x = QiNiuTokenReply{}
  1200. if protoimpl.UnsafeEnabled {
  1201. mi := &file_base_proto_msgTypes[20]
  1202. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1203. ms.StoreMessageInfo(mi)
  1204. }
  1205. }
  1206. func (x *QiNiuTokenReply) String() string {
  1207. return protoimpl.X.MessageStringOf(x)
  1208. }
  1209. func (*QiNiuTokenReply) ProtoMessage() {}
  1210. func (x *QiNiuTokenReply) ProtoReflect() protoreflect.Message {
  1211. mi := &file_base_proto_msgTypes[20]
  1212. if protoimpl.UnsafeEnabled && x != nil {
  1213. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1214. if ms.LoadMessageInfo() == nil {
  1215. ms.StoreMessageInfo(mi)
  1216. }
  1217. return ms
  1218. }
  1219. return mi.MessageOf(x)
  1220. }
  1221. // Deprecated: Use QiNiuTokenReply.ProtoReflect.Descriptor instead.
  1222. func (*QiNiuTokenReply) Descriptor() ([]byte, []int) {
  1223. return file_base_proto_rawDescGZIP(), []int{20}
  1224. }
  1225. func (x *QiNiuTokenReply) GetToken() string {
  1226. if x != nil {
  1227. return x.Token
  1228. }
  1229. return ""
  1230. }
  1231. type License struct {
  1232. state protoimpl.MessageState
  1233. sizeCache protoimpl.SizeCache
  1234. unknownFields protoimpl.UnknownFields
  1235. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  1236. ShopId int64 `protobuf:"varint,2,opt,name=shopId,proto3" json:"shopId,omitempty"`
  1237. LcsTypeId int64 `protobuf:"varint,3,opt,name=lcsTypeId,proto3" json:"lcsTypeId,omitempty"`
  1238. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
  1239. // nanoSec
  1240. ValidPeriod int64 `protobuf:"varint,5,opt,name=validPeriod,proto3" json:"validPeriod,omitempty"`
  1241. // 分
  1242. LcsPrice int64 `protobuf:"varint,6,opt,name=lcsPrice,proto3" json:"lcsPrice,omitempty"`
  1243. // nanoSec
  1244. LcsBeginTime int64 `protobuf:"varint,7,opt,name=lcsBeginTime,proto3" json:"lcsBeginTime,omitempty"`
  1245. // nanoSec
  1246. LcsEndTime int64 `protobuf:"varint,8,opt,name=lcsEndTime,proto3" json:"lcsEndTime,omitempty"`
  1247. FeeId int64 `protobuf:"varint,9,opt,name=feeId,proto3" json:"feeId,omitempty"`
  1248. Status WebStatus `protobuf:"varint,10,opt,name=status,proto3,enum=base.WebStatus" json:"status,omitempty"`
  1249. Memo string `protobuf:"bytes,11,opt,name=memo,proto3" json:"memo,omitempty"`
  1250. // nanoSec
  1251. CreatedAt int64 `protobuf:"varint,12,opt,name=createdAt,proto3" json:"createdAt,omitempty"`
  1252. CreatedUser int64 `protobuf:"varint,13,opt,name=createdUser,proto3" json:"createdUser,omitempty"`
  1253. // nanoSec
  1254. UpdatedAt int64 `protobuf:"varint,14,opt,name=updatedAt,proto3" json:"updatedAt,omitempty"`
  1255. UpdatedUser int64 `protobuf:"varint,15,opt,name=updatedUser,proto3" json:"updatedUser,omitempty"`
  1256. }
  1257. func (x *License) Reset() {
  1258. *x = License{}
  1259. if protoimpl.UnsafeEnabled {
  1260. mi := &file_base_proto_msgTypes[21]
  1261. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1262. ms.StoreMessageInfo(mi)
  1263. }
  1264. }
  1265. func (x *License) String() string {
  1266. return protoimpl.X.MessageStringOf(x)
  1267. }
  1268. func (*License) ProtoMessage() {}
  1269. func (x *License) ProtoReflect() protoreflect.Message {
  1270. mi := &file_base_proto_msgTypes[21]
  1271. if protoimpl.UnsafeEnabled && x != nil {
  1272. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1273. if ms.LoadMessageInfo() == nil {
  1274. ms.StoreMessageInfo(mi)
  1275. }
  1276. return ms
  1277. }
  1278. return mi.MessageOf(x)
  1279. }
  1280. // Deprecated: Use License.ProtoReflect.Descriptor instead.
  1281. func (*License) Descriptor() ([]byte, []int) {
  1282. return file_base_proto_rawDescGZIP(), []int{21}
  1283. }
  1284. func (x *License) GetId() int64 {
  1285. if x != nil {
  1286. return x.Id
  1287. }
  1288. return 0
  1289. }
  1290. func (x *License) GetShopId() int64 {
  1291. if x != nil {
  1292. return x.ShopId
  1293. }
  1294. return 0
  1295. }
  1296. func (x *License) GetLcsTypeId() int64 {
  1297. if x != nil {
  1298. return x.LcsTypeId
  1299. }
  1300. return 0
  1301. }
  1302. func (x *License) GetName() string {
  1303. if x != nil {
  1304. return x.Name
  1305. }
  1306. return ""
  1307. }
  1308. func (x *License) GetValidPeriod() int64 {
  1309. if x != nil {
  1310. return x.ValidPeriod
  1311. }
  1312. return 0
  1313. }
  1314. func (x *License) GetLcsPrice() int64 {
  1315. if x != nil {
  1316. return x.LcsPrice
  1317. }
  1318. return 0
  1319. }
  1320. func (x *License) GetLcsBeginTime() int64 {
  1321. if x != nil {
  1322. return x.LcsBeginTime
  1323. }
  1324. return 0
  1325. }
  1326. func (x *License) GetLcsEndTime() int64 {
  1327. if x != nil {
  1328. return x.LcsEndTime
  1329. }
  1330. return 0
  1331. }
  1332. func (x *License) GetFeeId() int64 {
  1333. if x != nil {
  1334. return x.FeeId
  1335. }
  1336. return 0
  1337. }
  1338. func (x *License) GetStatus() WebStatus {
  1339. if x != nil {
  1340. return x.Status
  1341. }
  1342. return WebStatus_Ban
  1343. }
  1344. func (x *License) GetMemo() string {
  1345. if x != nil {
  1346. return x.Memo
  1347. }
  1348. return ""
  1349. }
  1350. func (x *License) GetCreatedAt() int64 {
  1351. if x != nil {
  1352. return x.CreatedAt
  1353. }
  1354. return 0
  1355. }
  1356. func (x *License) GetCreatedUser() int64 {
  1357. if x != nil {
  1358. return x.CreatedUser
  1359. }
  1360. return 0
  1361. }
  1362. func (x *License) GetUpdatedAt() int64 {
  1363. if x != nil {
  1364. return x.UpdatedAt
  1365. }
  1366. return 0
  1367. }
  1368. func (x *License) GetUpdatedUser() int64 {
  1369. if x != nil {
  1370. return x.UpdatedUser
  1371. }
  1372. return 0
  1373. }
  1374. type LicenseList struct {
  1375. state protoimpl.MessageState
  1376. sizeCache protoimpl.SizeCache
  1377. unknownFields protoimpl.UnknownFields
  1378. List []*License `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  1379. }
  1380. func (x *LicenseList) Reset() {
  1381. *x = LicenseList{}
  1382. if protoimpl.UnsafeEnabled {
  1383. mi := &file_base_proto_msgTypes[22]
  1384. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1385. ms.StoreMessageInfo(mi)
  1386. }
  1387. }
  1388. func (x *LicenseList) String() string {
  1389. return protoimpl.X.MessageStringOf(x)
  1390. }
  1391. func (*LicenseList) ProtoMessage() {}
  1392. func (x *LicenseList) ProtoReflect() protoreflect.Message {
  1393. mi := &file_base_proto_msgTypes[22]
  1394. if protoimpl.UnsafeEnabled && x != nil {
  1395. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1396. if ms.LoadMessageInfo() == nil {
  1397. ms.StoreMessageInfo(mi)
  1398. }
  1399. return ms
  1400. }
  1401. return mi.MessageOf(x)
  1402. }
  1403. // Deprecated: Use LicenseList.ProtoReflect.Descriptor instead.
  1404. func (*LicenseList) Descriptor() ([]byte, []int) {
  1405. return file_base_proto_rawDescGZIP(), []int{22}
  1406. }
  1407. func (x *LicenseList) GetList() []*License {
  1408. if x != nil {
  1409. return x.List
  1410. }
  1411. return nil
  1412. }
  1413. type IdList struct {
  1414. state protoimpl.MessageState
  1415. sizeCache protoimpl.SizeCache
  1416. unknownFields protoimpl.UnknownFields
  1417. IdList []int64 `protobuf:"varint,1,rep,packed,name=idList,proto3" json:"idList,omitempty"`
  1418. }
  1419. func (x *IdList) Reset() {
  1420. *x = IdList{}
  1421. if protoimpl.UnsafeEnabled {
  1422. mi := &file_base_proto_msgTypes[23]
  1423. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1424. ms.StoreMessageInfo(mi)
  1425. }
  1426. }
  1427. func (x *IdList) String() string {
  1428. return protoimpl.X.MessageStringOf(x)
  1429. }
  1430. func (*IdList) ProtoMessage() {}
  1431. func (x *IdList) ProtoReflect() protoreflect.Message {
  1432. mi := &file_base_proto_msgTypes[23]
  1433. if protoimpl.UnsafeEnabled && x != nil {
  1434. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1435. if ms.LoadMessageInfo() == nil {
  1436. ms.StoreMessageInfo(mi)
  1437. }
  1438. return ms
  1439. }
  1440. return mi.MessageOf(x)
  1441. }
  1442. // Deprecated: Use IdList.ProtoReflect.Descriptor instead.
  1443. func (*IdList) Descriptor() ([]byte, []int) {
  1444. return file_base_proto_rawDescGZIP(), []int{23}
  1445. }
  1446. func (x *IdList) GetIdList() []int64 {
  1447. if x != nil {
  1448. return x.IdList
  1449. }
  1450. return nil
  1451. }
  1452. type LicenseType struct {
  1453. state protoimpl.MessageState
  1454. sizeCache protoimpl.SizeCache
  1455. unknownFields protoimpl.UnknownFields
  1456. TypeId int64 `protobuf:"varint,1,opt,name=typeId,proto3" json:"typeId,omitempty"`
  1457. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  1458. // 有效期时长,单位毫秒
  1459. ValidPeriodMs int64 `protobuf:"varint,3,opt,name=validPeriodMs,proto3" json:"validPeriodMs,omitempty"`
  1460. // 单位:分
  1461. Price int32 `protobuf:"varint,4,opt,name=price,proto3" json:"price,omitempty"`
  1462. Memo string `protobuf:"bytes,5,opt,name=memo,proto3" json:"memo,omitempty"`
  1463. ExecUser int64 `protobuf:"varint,6,opt,name=execUser,proto3" json:"execUser,omitempty"`
  1464. Status WebStatus `protobuf:"varint,7,opt,name=status,proto3,enum=base.WebStatus" json:"status,omitempty"`
  1465. }
  1466. func (x *LicenseType) Reset() {
  1467. *x = LicenseType{}
  1468. if protoimpl.UnsafeEnabled {
  1469. mi := &file_base_proto_msgTypes[24]
  1470. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1471. ms.StoreMessageInfo(mi)
  1472. }
  1473. }
  1474. func (x *LicenseType) String() string {
  1475. return protoimpl.X.MessageStringOf(x)
  1476. }
  1477. func (*LicenseType) ProtoMessage() {}
  1478. func (x *LicenseType) ProtoReflect() protoreflect.Message {
  1479. mi := &file_base_proto_msgTypes[24]
  1480. if protoimpl.UnsafeEnabled && x != nil {
  1481. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1482. if ms.LoadMessageInfo() == nil {
  1483. ms.StoreMessageInfo(mi)
  1484. }
  1485. return ms
  1486. }
  1487. return mi.MessageOf(x)
  1488. }
  1489. // Deprecated: Use LicenseType.ProtoReflect.Descriptor instead.
  1490. func (*LicenseType) Descriptor() ([]byte, []int) {
  1491. return file_base_proto_rawDescGZIP(), []int{24}
  1492. }
  1493. func (x *LicenseType) GetTypeId() int64 {
  1494. if x != nil {
  1495. return x.TypeId
  1496. }
  1497. return 0
  1498. }
  1499. func (x *LicenseType) GetName() string {
  1500. if x != nil {
  1501. return x.Name
  1502. }
  1503. return ""
  1504. }
  1505. func (x *LicenseType) GetValidPeriodMs() int64 {
  1506. if x != nil {
  1507. return x.ValidPeriodMs
  1508. }
  1509. return 0
  1510. }
  1511. func (x *LicenseType) GetPrice() int32 {
  1512. if x != nil {
  1513. return x.Price
  1514. }
  1515. return 0
  1516. }
  1517. func (x *LicenseType) GetMemo() string {
  1518. if x != nil {
  1519. return x.Memo
  1520. }
  1521. return ""
  1522. }
  1523. func (x *LicenseType) GetExecUser() int64 {
  1524. if x != nil {
  1525. return x.ExecUser
  1526. }
  1527. return 0
  1528. }
  1529. func (x *LicenseType) GetStatus() WebStatus {
  1530. if x != nil {
  1531. return x.Status
  1532. }
  1533. return WebStatus_Ban
  1534. }
  1535. type LicenseTypeMapReply struct {
  1536. state protoimpl.MessageState
  1537. sizeCache protoimpl.SizeCache
  1538. unknownFields protoimpl.UnknownFields
  1539. LicenseMap map[int64]*LicenseType `protobuf:"bytes,1,rep,name=licenseMap,proto3" json:"licenseMap,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  1540. }
  1541. func (x *LicenseTypeMapReply) Reset() {
  1542. *x = LicenseTypeMapReply{}
  1543. if protoimpl.UnsafeEnabled {
  1544. mi := &file_base_proto_msgTypes[25]
  1545. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1546. ms.StoreMessageInfo(mi)
  1547. }
  1548. }
  1549. func (x *LicenseTypeMapReply) String() string {
  1550. return protoimpl.X.MessageStringOf(x)
  1551. }
  1552. func (*LicenseTypeMapReply) ProtoMessage() {}
  1553. func (x *LicenseTypeMapReply) ProtoReflect() protoreflect.Message {
  1554. mi := &file_base_proto_msgTypes[25]
  1555. if protoimpl.UnsafeEnabled && x != nil {
  1556. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1557. if ms.LoadMessageInfo() == nil {
  1558. ms.StoreMessageInfo(mi)
  1559. }
  1560. return ms
  1561. }
  1562. return mi.MessageOf(x)
  1563. }
  1564. // Deprecated: Use LicenseTypeMapReply.ProtoReflect.Descriptor instead.
  1565. func (*LicenseTypeMapReply) Descriptor() ([]byte, []int) {
  1566. return file_base_proto_rawDescGZIP(), []int{25}
  1567. }
  1568. func (x *LicenseTypeMapReply) GetLicenseMap() map[int64]*LicenseType {
  1569. if x != nil {
  1570. return x.LicenseMap
  1571. }
  1572. return nil
  1573. }
  1574. type GenPhoneVerifyCodeRequestWX struct {
  1575. state protoimpl.MessageState
  1576. sizeCache protoimpl.SizeCache
  1577. unknownFields protoimpl.UnknownFields
  1578. VerifyType VerifyType `protobuf:"varint,1,opt,name=verifyType,proto3,enum=base.VerifyType" json:"verifyType,omitempty"`
  1579. Account string `protobuf:"bytes,2,opt,name=account,proto3" json:"account,omitempty"`
  1580. //上级商家ID,必传,写入到微信代码中
  1581. SId int64 `protobuf:"varint,3,opt,name=sId,proto3" json:"sId,omitempty"`
  1582. CodeId string `protobuf:"bytes,4,opt,name=codeId,proto3" json:"codeId,omitempty"`
  1583. ImgCode string `protobuf:"bytes,5,opt,name=imgCode,proto3" json:"imgCode,omitempty"`
  1584. }
  1585. func (x *GenPhoneVerifyCodeRequestWX) Reset() {
  1586. *x = GenPhoneVerifyCodeRequestWX{}
  1587. if protoimpl.UnsafeEnabled {
  1588. mi := &file_base_proto_msgTypes[26]
  1589. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1590. ms.StoreMessageInfo(mi)
  1591. }
  1592. }
  1593. func (x *GenPhoneVerifyCodeRequestWX) String() string {
  1594. return protoimpl.X.MessageStringOf(x)
  1595. }
  1596. func (*GenPhoneVerifyCodeRequestWX) ProtoMessage() {}
  1597. func (x *GenPhoneVerifyCodeRequestWX) ProtoReflect() protoreflect.Message {
  1598. mi := &file_base_proto_msgTypes[26]
  1599. if protoimpl.UnsafeEnabled && x != nil {
  1600. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1601. if ms.LoadMessageInfo() == nil {
  1602. ms.StoreMessageInfo(mi)
  1603. }
  1604. return ms
  1605. }
  1606. return mi.MessageOf(x)
  1607. }
  1608. // Deprecated: Use GenPhoneVerifyCodeRequestWX.ProtoReflect.Descriptor instead.
  1609. func (*GenPhoneVerifyCodeRequestWX) Descriptor() ([]byte, []int) {
  1610. return file_base_proto_rawDescGZIP(), []int{26}
  1611. }
  1612. func (x *GenPhoneVerifyCodeRequestWX) GetVerifyType() VerifyType {
  1613. if x != nil {
  1614. return x.VerifyType
  1615. }
  1616. return VerifyType_Undefined
  1617. }
  1618. func (x *GenPhoneVerifyCodeRequestWX) GetAccount() string {
  1619. if x != nil {
  1620. return x.Account
  1621. }
  1622. return ""
  1623. }
  1624. func (x *GenPhoneVerifyCodeRequestWX) GetSId() int64 {
  1625. if x != nil {
  1626. return x.SId
  1627. }
  1628. return 0
  1629. }
  1630. func (x *GenPhoneVerifyCodeRequestWX) GetCodeId() string {
  1631. if x != nil {
  1632. return x.CodeId
  1633. }
  1634. return ""
  1635. }
  1636. func (x *GenPhoneVerifyCodeRequestWX) GetImgCode() string {
  1637. if x != nil {
  1638. return x.ImgCode
  1639. }
  1640. return ""
  1641. }
  1642. type CheckVerifyCodeRequest struct {
  1643. state protoimpl.MessageState
  1644. sizeCache protoimpl.SizeCache
  1645. unknownFields protoimpl.UnknownFields
  1646. VerifyType VerifyType `protobuf:"varint,1,opt,name=verifyType,proto3,enum=base.VerifyType" json:"verifyType,omitempty"`
  1647. Code string `protobuf:"bytes,2,opt,name=code,proto3" json:"code,omitempty"`
  1648. Account string `protobuf:"bytes,3,opt,name=account,proto3" json:"account,omitempty"`
  1649. }
  1650. func (x *CheckVerifyCodeRequest) Reset() {
  1651. *x = CheckVerifyCodeRequest{}
  1652. if protoimpl.UnsafeEnabled {
  1653. mi := &file_base_proto_msgTypes[27]
  1654. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1655. ms.StoreMessageInfo(mi)
  1656. }
  1657. }
  1658. func (x *CheckVerifyCodeRequest) String() string {
  1659. return protoimpl.X.MessageStringOf(x)
  1660. }
  1661. func (*CheckVerifyCodeRequest) ProtoMessage() {}
  1662. func (x *CheckVerifyCodeRequest) ProtoReflect() protoreflect.Message {
  1663. mi := &file_base_proto_msgTypes[27]
  1664. if protoimpl.UnsafeEnabled && x != nil {
  1665. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1666. if ms.LoadMessageInfo() == nil {
  1667. ms.StoreMessageInfo(mi)
  1668. }
  1669. return ms
  1670. }
  1671. return mi.MessageOf(x)
  1672. }
  1673. // Deprecated: Use CheckVerifyCodeRequest.ProtoReflect.Descriptor instead.
  1674. func (*CheckVerifyCodeRequest) Descriptor() ([]byte, []int) {
  1675. return file_base_proto_rawDescGZIP(), []int{27}
  1676. }
  1677. func (x *CheckVerifyCodeRequest) GetVerifyType() VerifyType {
  1678. if x != nil {
  1679. return x.VerifyType
  1680. }
  1681. return VerifyType_Undefined
  1682. }
  1683. func (x *CheckVerifyCodeRequest) GetCode() string {
  1684. if x != nil {
  1685. return x.Code
  1686. }
  1687. return ""
  1688. }
  1689. func (x *CheckVerifyCodeRequest) GetAccount() string {
  1690. if x != nil {
  1691. return x.Account
  1692. }
  1693. return ""
  1694. }
  1695. type WeiXinSignInRequest struct {
  1696. state protoimpl.MessageState
  1697. sizeCache protoimpl.SizeCache
  1698. unknownFields protoimpl.UnknownFields
  1699. Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
  1700. Account string `protobuf:"bytes,2,opt,name=account,proto3" json:"account,omitempty"`
  1701. //上级商家ID,必传,写入到微信代码中
  1702. SId int64 `protobuf:"varint,3,opt,name=sId,proto3" json:"sId,omitempty"`
  1703. }
  1704. func (x *WeiXinSignInRequest) Reset() {
  1705. *x = WeiXinSignInRequest{}
  1706. if protoimpl.UnsafeEnabled {
  1707. mi := &file_base_proto_msgTypes[28]
  1708. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1709. ms.StoreMessageInfo(mi)
  1710. }
  1711. }
  1712. func (x *WeiXinSignInRequest) String() string {
  1713. return protoimpl.X.MessageStringOf(x)
  1714. }
  1715. func (*WeiXinSignInRequest) ProtoMessage() {}
  1716. func (x *WeiXinSignInRequest) ProtoReflect() protoreflect.Message {
  1717. mi := &file_base_proto_msgTypes[28]
  1718. if protoimpl.UnsafeEnabled && x != nil {
  1719. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1720. if ms.LoadMessageInfo() == nil {
  1721. ms.StoreMessageInfo(mi)
  1722. }
  1723. return ms
  1724. }
  1725. return mi.MessageOf(x)
  1726. }
  1727. // Deprecated: Use WeiXinSignInRequest.ProtoReflect.Descriptor instead.
  1728. func (*WeiXinSignInRequest) Descriptor() ([]byte, []int) {
  1729. return file_base_proto_rawDescGZIP(), []int{28}
  1730. }
  1731. func (x *WeiXinSignInRequest) GetCode() string {
  1732. if x != nil {
  1733. return x.Code
  1734. }
  1735. return ""
  1736. }
  1737. func (x *WeiXinSignInRequest) GetAccount() string {
  1738. if x != nil {
  1739. return x.Account
  1740. }
  1741. return ""
  1742. }
  1743. func (x *WeiXinSignInRequest) GetSId() int64 {
  1744. if x != nil {
  1745. return x.SId
  1746. }
  1747. return 0
  1748. }
  1749. var File_base_proto protoreflect.FileDescriptor
  1750. var file_base_proto_rawDesc = []byte{
  1751. 0x0a, 0x0a, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x04, 0x62, 0x61,
  1752. 0x73, 0x65, 0x22, 0x10, 0x0a, 0x0e, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x71,
  1753. 0x75, 0x65, 0x73, 0x74, 0x22, 0x0e, 0x0a, 0x0c, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52,
  1754. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x57, 0x0a, 0x0f, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  1755. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49,
  1756. 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49, 0x44, 0x12,
  1757. 0x18, 0x0a, 0x07, 0x6a, 0x73, 0x6f, 0x6e, 0x53, 0x74, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  1758. 0x52, 0x07, 0x6a, 0x73, 0x6f, 0x6e, 0x53, 0x74, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x67,
  1759. 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x73, 0x69, 0x67, 0x6e, 0x22, 0x8b, 0x01,
  1760. 0x0a, 0x15, 0x43, 0x6f, 0x75, 0x72, 0x73, 0x65, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  1761. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49,
  1762. 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49, 0x44, 0x12,
  1763. 0x18, 0x0a, 0x07, 0x6a, 0x73, 0x6f, 0x6e, 0x53, 0x74, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  1764. 0x52, 0x07, 0x6a, 0x73, 0x6f, 0x6e, 0x53, 0x74, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x67,
  1765. 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x73, 0x69, 0x67, 0x6e, 0x12, 0x12, 0x0a,
  1766. 0x04, 0x69, 0x73, 0x48, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x69, 0x73, 0x48,
  1767. 0x72, 0x12, 0x18, 0x0a, 0x07, 0x69, 0x73, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x18, 0x05, 0x20, 0x01,
  1768. 0x28, 0x05, 0x52, 0x07, 0x69, 0x73, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x22, 0x3d, 0x0a, 0x0d, 0x53,
  1769. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x18, 0x0a, 0x07,
  1770. 0x6a, 0x73, 0x6f, 0x6e, 0x52, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6a,
  1771. 0x73, 0x6f, 0x6e, 0x52, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x67, 0x6e, 0x18, 0x02,
  1772. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x73, 0x69, 0x67, 0x6e, 0x22, 0x3f, 0x0a, 0x0d, 0x53, 0x69,
  1773. 0x67, 0x6e, 0x55, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e,
  1774. 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12,
  1775. 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  1776. 0x09, 0x52, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x22, 0x23, 0x0a, 0x0b, 0x53,
  1777. 0x69, 0x67, 0x6e, 0x49, 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f,
  1778. 0x6b, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e,
  1779. 0x22, 0x77, 0x0a, 0x0d, 0x53, 0x69, 0x67, 0x6e, 0x49, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1780. 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  1781. 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72,
  1782. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72,
  1783. 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,
  1784. 0x09, 0x52, 0x06, 0x63, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x76, 0x65, 0x72,
  1785. 0x69, 0x66, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x76,
  1786. 0x65, 0x72, 0x69, 0x66, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x22, 0x45, 0x0a, 0x15, 0x47, 0x65, 0x6e,
  1787. 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  1788. 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x18, 0x01, 0x20, 0x01,
  1789. 0x28, 0x05, 0x52, 0x06, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x77, 0x69,
  1790. 0x64, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x77, 0x69, 0x64, 0x74, 0x68,
  1791. 0x22, 0x4f, 0x0a, 0x13, 0x47, 0x65, 0x6e, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x49, 0x6d, 0x61,
  1792. 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6f, 0x64, 0x65, 0x49,
  1793. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x63, 0x6f, 0x64, 0x65, 0x49, 0x64, 0x12,
  1794. 0x20, 0x0a, 0x0b, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x42, 0x61, 0x73, 0x65, 0x36, 0x34, 0x18, 0x02,
  1795. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x42, 0x61, 0x73, 0x65, 0x36,
  1796. 0x34, 0x22, 0x87, 0x03, 0x0a, 0x08, 0x53, 0x68, 0x6f, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16,
  1797. 0x0a, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  1798. 0x73, 0x68, 0x6f, 0x70, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02,
  1799. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x49,
  1800. 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04,
  1801. 0x61, 0x64, 0x64, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x64, 0x64, 0x72,
  1802. 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52,
  1803. 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63,
  1804. 0x74, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63,
  1805. 0x74, 0x73, 0x12, 0x27, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x07, 0x20, 0x01,
  1806. 0x28, 0x0e, 0x32, 0x0f, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x57, 0x65, 0x62, 0x53, 0x74, 0x61,
  1807. 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1d, 0x0a, 0x0a, 0x63,
  1808. 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52,
  1809. 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x72,
  1810. 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03,
  1811. 0x52, 0x0b, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x55, 0x73, 0x65, 0x72, 0x12, 0x1d, 0x0a,
  1812. 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28,
  1813. 0x09, 0x52, 0x09, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74, 0x12, 0x21, 0x0a, 0x0c,
  1814. 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x18, 0x0b, 0x20, 0x01,
  1815. 0x28, 0x03, 0x52, 0x0b, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x55, 0x73, 0x65, 0x72, 0x12,
  1816. 0x13, 0x0a, 0x05, 0x69, 0x73, 0x5f, 0x68, 0x72, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04,
  1817. 0x69, 0x73, 0x48, 0x72, 0x12, 0x19, 0x0a, 0x08, 0x69, 0x73, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65,
  1818. 0x18, 0x0d, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x69, 0x73, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x12,
  1819. 0x1a, 0x0a, 0x08, 0x73, 0x68, 0x6f, 0x70, 0x55, 0x55, 0x49, 0x44, 0x18, 0x0e, 0x20, 0x01, 0x28,
  1820. 0x09, 0x52, 0x08, 0x73, 0x68, 0x6f, 0x70, 0x55, 0x55, 0x49, 0x44, 0x22, 0x2b, 0x0a, 0x11, 0x53,
  1821. 0x68, 0x6f, 0x70, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  1822. 0x12, 0x16, 0x0a, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  1823. 0x52, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49, 0x64, 0x22, 0x60, 0x0a, 0x0f, 0x53, 0x68, 0x6f, 0x70,
  1824. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e,
  1825. 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12,
  1826. 0x27, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32,
  1827. 0x0f, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x57, 0x65, 0x62, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  1828. 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x49, 0x64, 0x18,
  1829. 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x49, 0x64, 0x22, 0x33, 0x0a, 0x0d, 0x53, 0x68,
  1830. 0x6f, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x22, 0x0a, 0x04, 0x6c,
  1831. 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x62, 0x61, 0x73, 0x65,
  1832. 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22,
  1833. 0x48, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x53, 0x68, 0x6f, 0x70, 0x4e, 0x61, 0x76, 0x69, 0x52, 0x65,
  1834. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49, 0x64, 0x18,
  1835. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49, 0x64, 0x12, 0x1a, 0x0a,
  1836. 0x08, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  1837. 0x08, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x22, 0x2f, 0x0a, 0x15, 0x47, 0x65, 0x74,
  1838. 0x53, 0x68, 0x6f, 0x70, 0x4e, 0x61, 0x76, 0x69, 0x41, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65,
  1839. 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01,
  1840. 0x28, 0x03, 0x52, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49, 0x64, 0x22, 0xa5, 0x01, 0x0a, 0x06, 0x43,
  1841. 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20,
  1842. 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c,
  1843. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x12, 0x0a, 0x04, 0x63,
  1844. 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12,
  1845. 0x0e, 0x0a, 0x02, 0x73, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x73, 0x6e, 0x12,
  1846. 0x27, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32,
  1847. 0x0f, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x57, 0x65, 0x62, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  1848. 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x6e, 0x61, 0x76, 0x53,
  1849. 0x68, 0x6f, 0x77, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x6e, 0x61, 0x76, 0x53, 0x68,
  1850. 0x6f, 0x77, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02,
  1851. 0x69, 0x64, 0x22, 0x34, 0x0a, 0x10, 0x47, 0x65, 0x74, 0x53, 0x68, 0x6f, 0x70, 0x4e, 0x61, 0x76,
  1852. 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x20, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01,
  1853. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x43, 0x6f, 0x6c, 0x75,
  1854. 0x6d, 0x6e, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x31, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x53,
  1855. 0x68, 0x6f, 0x70, 0x4e, 0x61, 0x76, 0x69, 0x41, 0x6c, 0x6c, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12,
  1856. 0x1a, 0x0a, 0x08, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x52, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28,
  1857. 0x09, 0x52, 0x08, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x52, 0x73, 0x22, 0x32, 0x0a, 0x14, 0x47,
  1858. 0x65, 0x74, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x79, 0x49, 0x6d, 0x67, 0x52, 0x65, 0x71, 0x75,
  1859. 0x65, 0x73, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x18,
  1860. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x22,
  1861. 0x27, 0x0a, 0x0f, 0x51, 0x69, 0x4e, 0x69, 0x75, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x70,
  1862. 0x6c, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28,
  1863. 0x09, 0x52, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0xb8, 0x03, 0x0a, 0x07, 0x4c, 0x69, 0x63,
  1864. 0x65, 0x6e, 0x73, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  1865. 0x52, 0x02, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49, 0x64, 0x18, 0x02,
  1866. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x68, 0x6f, 0x70, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09,
  1867. 0x6c, 0x63, 0x73, 0x54, 0x79, 0x70, 0x65, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52,
  1868. 0x09, 0x6c, 0x63, 0x73, 0x54, 0x79, 0x70, 0x65, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61,
  1869. 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x20,
  1870. 0x0a, 0x0b, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x50, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x18, 0x05, 0x20,
  1871. 0x01, 0x28, 0x03, 0x52, 0x0b, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x50, 0x65, 0x72, 0x69, 0x6f, 0x64,
  1872. 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x63, 0x73, 0x50, 0x72, 0x69, 0x63, 0x65, 0x18, 0x06, 0x20, 0x01,
  1873. 0x28, 0x03, 0x52, 0x08, 0x6c, 0x63, 0x73, 0x50, 0x72, 0x69, 0x63, 0x65, 0x12, 0x22, 0x0a, 0x0c,
  1874. 0x6c, 0x63, 0x73, 0x42, 0x65, 0x67, 0x69, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01,
  1875. 0x28, 0x03, 0x52, 0x0c, 0x6c, 0x63, 0x73, 0x42, 0x65, 0x67, 0x69, 0x6e, 0x54, 0x69, 0x6d, 0x65,
  1876. 0x12, 0x1e, 0x0a, 0x0a, 0x6c, 0x63, 0x73, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x08,
  1877. 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x6c, 0x63, 0x73, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65,
  1878. 0x12, 0x14, 0x0a, 0x05, 0x66, 0x65, 0x65, 0x49, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52,
  1879. 0x05, 0x66, 0x65, 0x65, 0x49, 0x64, 0x12, 0x27, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
  1880. 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x0f, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x57, 0x65,
  1881. 0x62, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12,
  1882. 0x12, 0x0a, 0x04, 0x6d, 0x65, 0x6d, 0x6f, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6d,
  1883. 0x65, 0x6d, 0x6f, 0x12, 0x1c, 0x0a, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74,
  1884. 0x18, 0x0c, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41,
  1885. 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x55, 0x73, 0x65, 0x72,
  1886. 0x18, 0x0d, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x55,
  1887. 0x73, 0x65, 0x72, 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x41, 0x74,
  1888. 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x41,
  1889. 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x55, 0x73, 0x65, 0x72,
  1890. 0x18, 0x0f, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x55,
  1891. 0x73, 0x65, 0x72, 0x22, 0x30, 0x0a, 0x0b, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x4c, 0x69,
  1892. 0x73, 0x74, 0x12, 0x21, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,
  1893. 0x32, 0x0d, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x52,
  1894. 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x20, 0x0a, 0x06, 0x49, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12,
  1895. 0x16, 0x0a, 0x06, 0x69, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x03, 0x52,
  1896. 0x06, 0x69, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x22, 0xce, 0x01, 0x0a, 0x0b, 0x4c, 0x69, 0x63, 0x65,
  1897. 0x6e, 0x73, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x74, 0x79, 0x70, 0x65, 0x49,
  1898. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x74, 0x79, 0x70, 0x65, 0x49, 0x64, 0x12,
  1899. 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e,
  1900. 0x61, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x50, 0x65, 0x72, 0x69,
  1901. 0x6f, 0x64, 0x4d, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x76, 0x61, 0x6c, 0x69,
  1902. 0x64, 0x50, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x4d, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x72, 0x69,
  1903. 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x12,
  1904. 0x12, 0x0a, 0x04, 0x6d, 0x65, 0x6d, 0x6f, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6d,
  1905. 0x65, 0x6d, 0x6f, 0x12, 0x1a, 0x0a, 0x08, 0x65, 0x78, 0x65, 0x63, 0x55, 0x73, 0x65, 0x72, 0x18,
  1906. 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x65, 0x78, 0x65, 0x63, 0x55, 0x73, 0x65, 0x72, 0x12,
  1907. 0x27, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32,
  1908. 0x0f, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x57, 0x65, 0x62, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  1909. 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0xb2, 0x01, 0x0a, 0x13, 0x4c, 0x69, 0x63,
  1910. 0x65, 0x6e, 0x73, 0x65, 0x54, 0x79, 0x70, 0x65, 0x4d, 0x61, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79,
  1911. 0x12, 0x49, 0x0a, 0x0a, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x4d, 0x61, 0x70, 0x18, 0x01,
  1912. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x4c, 0x69, 0x63, 0x65,
  1913. 0x6e, 0x73, 0x65, 0x54, 0x79, 0x70, 0x65, 0x4d, 0x61, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x2e,
  1914. 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52,
  1915. 0x0a, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x4d, 0x61, 0x70, 0x1a, 0x50, 0x0a, 0x0f, 0x4c,
  1916. 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x4d, 0x61, 0x70, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10,
  1917. 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6b, 0x65, 0x79,
  1918. 0x12, 0x27, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
  1919. 0x11, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x54, 0x79,
  1920. 0x70, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xad, 0x01,
  1921. 0x0a, 0x1b, 0x47, 0x65, 0x6e, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79,
  1922. 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x57, 0x58, 0x12, 0x30, 0x0a,
  1923. 0x0a, 0x76, 0x65, 0x72, 0x69, 0x66, 0x79, 0x54, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  1924. 0x0e, 0x32, 0x10, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x54,
  1925. 0x79, 0x70, 0x65, 0x52, 0x0a, 0x76, 0x65, 0x72, 0x69, 0x66, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12,
  1926. 0x18, 0x0a, 0x07, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  1927. 0x52, 0x07, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x49, 0x64,
  1928. 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x63,
  1929. 0x6f, 0x64, 0x65, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x63, 0x6f, 0x64,
  1930. 0x65, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x69, 0x6d, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x05,
  1931. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x69, 0x6d, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x22, 0x78, 0x0a,
  1932. 0x16, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x43, 0x6f, 0x64, 0x65,
  1933. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x30, 0x0a, 0x0a, 0x76, 0x65, 0x72, 0x69, 0x66,
  1934. 0x79, 0x54, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x10, 0x2e, 0x62, 0x61,
  1935. 0x73, 0x65, 0x2e, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0a, 0x76,
  1936. 0x65, 0x72, 0x69, 0x66, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64,
  1937. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a,
  1938. 0x07, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  1939. 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x55, 0x0a, 0x13, 0x57, 0x65, 0x69, 0x58, 0x69,
  1940. 0x6e, 0x53, 0x69, 0x67, 0x6e, 0x49, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12,
  1941. 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x6f,
  1942. 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20,
  1943. 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x10, 0x0a, 0x03,
  1944. 0x73, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x49, 0x64, 0x2a, 0xd0,
  1945. 0x01, 0x0a, 0x09, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x06, 0x0a, 0x02,
  1946. 0x4f, 0x4b, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x50, 0x47, 0x45, 0x72, 0x72, 0x10, 0x64, 0x12,
  1947. 0x0d, 0x0a, 0x09, 0x50, 0x6d, 0x73, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x10, 0x6e, 0x12, 0x0c,
  1948. 0x0a, 0x08, 0x4a, 0x32, 0x4d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x10, 0x78, 0x12, 0x12, 0x0a, 0x0e,
  1949. 0x57, 0x65, 0x62, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x10, 0x79,
  1950. 0x12, 0x16, 0x0a, 0x12, 0x57, 0x65, 0x62, 0x54, 0x6f, 0x49, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x75,
  1951. 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x10, 0x7a, 0x12, 0x15, 0x0a, 0x11, 0x49, 0x6d, 0x54, 0x6f,
  1952. 0x57, 0x65, 0x62, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x10, 0x7b, 0x12,
  1953. 0x0c, 0x0a, 0x08, 0x4d, 0x32, 0x4a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x10, 0x7c, 0x12, 0x0a, 0x0a,
  1954. 0x05, 0x50, 0x41, 0x52, 0x41, 0x4d, 0x10, 0x96, 0x01, 0x12, 0x0a, 0x0a, 0x05, 0x54, 0x6f, 0x6b,
  1955. 0x65, 0x6e, 0x10, 0xc8, 0x01, 0x12, 0x0f, 0x0a, 0x0a, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x43,
  1956. 0x6f, 0x64, 0x65, 0x10, 0xc9, 0x01, 0x12, 0x19, 0x0a, 0x14, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f,
  1957. 0x72, 0x64, 0x57, 0x72, 0x6f, 0x6e, 0x67, 0x54, 0x6f, 0x6f, 0x4d, 0x75, 0x63, 0x68, 0x10, 0xca,
  1958. 0x01, 0x2a, 0x31, 0x0a, 0x09, 0x57, 0x65, 0x62, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x07,
  1959. 0x0a, 0x03, 0x42, 0x61, 0x6e, 0x10, 0x00, 0x12, 0x06, 0x0a, 0x02, 0x4f, 0x6e, 0x10, 0x01, 0x12,
  1960. 0x0a, 0x0a, 0x06, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x10, 0x09, 0x12, 0x07, 0x0a, 0x03, 0x41,
  1961. 0x6c, 0x6c, 0x10, 0x63, 0x2a, 0x47, 0x0a, 0x0a, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x54, 0x79,
  1962. 0x70, 0x65, 0x12, 0x0d, 0x0a, 0x09, 0x55, 0x6e, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x65, 0x64, 0x10,
  1963. 0x00, 0x12, 0x0a, 0x0a, 0x06, 0x53, 0x69, 0x67, 0x6e, 0x55, 0x70, 0x10, 0x01, 0x12, 0x0a, 0x0a,
  1964. 0x06, 0x53, 0x69, 0x67, 0x6e, 0x49, 0x6e, 0x10, 0x02, 0x12, 0x12, 0x0a, 0x0e, 0x43, 0x68, 0x61,
  1965. 0x6e, 0x67, 0x65, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x10, 0x03, 0x32, 0xe3, 0x41,
  1966. 0x0a, 0x03, 0x41, 0x70, 0x69, 0x12, 0x33, 0x0a, 0x06, 0x53, 0x69, 0x67, 0x6e, 0x55, 0x70, 0x12,
  1967. 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x55, 0x70, 0x52, 0x65, 0x71,
  1968. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x12, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x44, 0x65, 0x66, 0x61,
  1969. 0x75, 0x6c, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x32, 0x0a, 0x06, 0x53, 0x69,
  1970. 0x67, 0x6e, 0x49, 0x6e, 0x12, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x69, 0x67, 0x6e,
  1971. 0x49, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x11, 0x2e, 0x62, 0x61, 0x73, 0x65,
  1972. 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x49, 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x35,
  1973. 0x0a, 0x07, 0x53, 0x69, 0x67, 0x6e, 0x4f, 0x75, 0x74, 0x12, 0x14, 0x2e, 0x62, 0x61, 0x73, 0x65,
  1974. 0x2e, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  1975. 0x12, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52, 0x65,
  1976. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x4a, 0x0a, 0x0e, 0x47, 0x65, 0x6e, 0x56, 0x65, 0x72, 0x69,
  1977. 0x66, 0x79, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x12, 0x1b, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x47,
  1978. 0x65, 0x6e, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71,
  1979. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x47, 0x65, 0x6e, 0x56,
  1980. 0x65, 0x72, 0x69, 0x66, 0x79, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  1981. 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x48, 0x72, 0x53, 0x65, 0x6e,
  1982. 0x73, 0x6f, 0x72, 0x73, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  1983. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61,
  1984. 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79,
  1985. 0x22, 0x00, 0x12, 0x45, 0x0a, 0x15, 0x41, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x55, 0x73, 0x65, 0x72,
  1986. 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61,
  1987. 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
  1988. 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  1989. 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x42, 0x0a, 0x12, 0x56, 0x69, 0x70,
  1990. 0x55, 0x73, 0x65, 0x72, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12,
  1991. 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  1992. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  1993. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x46, 0x0a,
  1994. 0x16, 0x54, 0x65, 0x6d, 0x70, 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x53, 0x69, 0x6d, 0x70,
  1995. 0x6c, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  1996. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
  1997. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  1998. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x53, 0x68, 0x6f, 0x70, 0x53, 0x69, 0x6d,
  1999. 0x70, 0x6c, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  2000. 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  2001. 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  2002. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x15, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  2003. 0x61, 0x62, 0x6c, 0x65, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12,
  2004. 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  2005. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  2006. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x40, 0x0a,
  2007. 0x10, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x51, 0x75, 0x65, 0x72,
  2008. 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  2009. 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  2010. 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12,
  2011. 0x41, 0x0a, 0x11, 0x53, 0x63, 0x72, 0x65, 0x65, 0x6e, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x51,
  2012. 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  2013. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61,
  2014. 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79,
  2015. 0x22, 0x00, 0x12, 0x48, 0x0a, 0x18, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x69, 0x6d, 0x70, 0x6c,
  2016. 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x42, 0x79, 0x53, 0x68, 0x6f, 0x70, 0x49, 0x44, 0x12, 0x15,
  2017. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  2018. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  2019. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x42, 0x0a, 0x12,
  2020. 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x53, 0x68, 0x6f, 0x70, 0x4c, 0x69,
  2021. 0x73, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x4c, 0x69,
  2022. 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65,
  2023. 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
  2024. 0x12, 0x42, 0x0a, 0x15, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x47, 0x65,
  2025. 0x74, 0x53, 0x68, 0x6f, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x17, 0x2e, 0x62, 0x61, 0x73, 0x65,
  2026. 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65,
  2027. 0x73, 0x74, 0x1a, 0x0e, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x49, 0x6e,
  2028. 0x66, 0x6f, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x53, 0x68, 0x6f, 0x70, 0x4c, 0x69, 0x63, 0x65,
  2029. 0x6e, 0x73, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x17, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  2030. 0x68, 0x6f, 0x70, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2031. 0x1a, 0x11, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x4c,
  2032. 0x69, 0x73, 0x74, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x12, 0x53, 0x68, 0x6f, 0x70, 0x4c, 0x69, 0x63,
  2033. 0x65, 0x6e, 0x73, 0x65, 0x54, 0x79, 0x70, 0x65, 0x4d, 0x61, 0x70, 0x12, 0x0c, 0x2e, 0x62, 0x61,
  2034. 0x73, 0x65, 0x2e, 0x49, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x62, 0x61, 0x73, 0x65,
  2035. 0x2e, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x54, 0x79, 0x70, 0x65, 0x4d, 0x61, 0x70, 0x52,
  2036. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x0b, 0x47, 0x65, 0x74, 0x53, 0x68, 0x6f,
  2037. 0x70, 0x4e, 0x61, 0x76, 0x69, 0x12, 0x18, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x47, 0x65, 0x74,
  2038. 0x53, 0x68, 0x6f, 0x70, 0x4e, 0x61, 0x76, 0x69, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  2039. 0x16, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x68, 0x6f, 0x70, 0x4e, 0x61,
  2040. 0x76, 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x4a, 0x0a, 0x0e, 0x47, 0x65, 0x74,
  2041. 0x53, 0x68, 0x6f, 0x70, 0x4e, 0x61, 0x76, 0x69, 0x41, 0x6c, 0x6c, 0x12, 0x1b, 0x2e, 0x62, 0x61,
  2042. 0x73, 0x65, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x68, 0x6f, 0x70, 0x4e, 0x61, 0x76, 0x69, 0x41, 0x6c,
  2043. 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  2044. 0x47, 0x65, 0x74, 0x53, 0x68, 0x6f, 0x70, 0x4e, 0x61, 0x76, 0x69, 0x41, 0x6c, 0x6c, 0x52, 0x65,
  2045. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x53, 0x68, 0x6f, 0x70, 0x47, 0x72, 0x6f,
  2046. 0x75, 0x70, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  2047. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
  2048. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  2049. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3c, 0x0a, 0x0c, 0x53, 0x68, 0x6f, 0x70, 0x47, 0x72, 0x6f,
  2050. 0x75, 0x70, 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  2051. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62,
  2052. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c,
  2053. 0x79, 0x22, 0x00, 0x12, 0x3d, 0x0a, 0x0d, 0x53, 0x68, 0x6f, 0x70, 0x47, 0x72, 0x6f, 0x75, 0x70,
  2054. 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  2055. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61,
  2056. 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79,
  2057. 0x22, 0x00, 0x12, 0x43, 0x0a, 0x13, 0x53, 0x68, 0x6f, 0x70, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53,
  2058. 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65,
  2059. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2060. 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  2061. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x15, 0x53, 0x68, 0x6f, 0x70, 0x47,
  2062. 0x72, 0x6f, 0x75, 0x70, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x51, 0x75, 0x65, 0x72, 0x79,
  2063. 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  2064. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  2065. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x43,
  2066. 0x0a, 0x13, 0x53, 0x68, 0x6f, 0x70, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x44, 0x65, 0x74, 0x61, 0x69,
  2067. 0x6c, 0x73, 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  2068. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62,
  2069. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c,
  2070. 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x53, 0x68, 0x6f, 0x70, 0x56, 0x65, 0x6e, 0x75, 0x65,
  2071. 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  2072. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62,
  2073. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c,
  2074. 0x79, 0x22, 0x00, 0x12, 0x3c, 0x0a, 0x0c, 0x53, 0x68, 0x6f, 0x70, 0x56, 0x65, 0x6e, 0x75, 0x65,
  2075. 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  2076. 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73,
  2077. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  2078. 0x00, 0x12, 0x3d, 0x0a, 0x0d, 0x53, 0x68, 0x6f, 0x70, 0x56, 0x65, 0x6e, 0x75, 0x65, 0x45, 0x64,
  2079. 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  2080. 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65,
  2081. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
  2082. 0x12, 0x43, 0x0a, 0x13, 0x53, 0x68, 0x6f, 0x70, 0x56, 0x65, 0x6e, 0x75, 0x65, 0x53, 0x74, 0x61,
  2083. 0x74, 0x75, 0x73, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  2084. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
  2085. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  2086. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x43, 0x0a, 0x13, 0x53, 0x68, 0x6f, 0x70, 0x56, 0x65, 0x6e,
  2087. 0x75, 0x65, 0x45, 0x71, 0x75, 0x69, 0x70, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62,
  2088. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
  2089. 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  2090. 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x11, 0x53, 0x68,
  2091. 0x6f, 0x70, 0x56, 0x65, 0x6e, 0x75, 0x65, 0x45, 0x71, 0x75, 0x69, 0x70, 0x41, 0x64, 0x64, 0x12,
  2092. 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  2093. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  2094. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x42, 0x0a,
  2095. 0x12, 0x53, 0x68, 0x6f, 0x70, 0x56, 0x65, 0x6e, 0x75, 0x65, 0x45, 0x71, 0x75, 0x69, 0x70, 0x45,
  2096. 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  2097. 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73,
  2098. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  2099. 0x00, 0x12, 0x48, 0x0a, 0x18, 0x53, 0x68, 0x6f, 0x70, 0x56, 0x65, 0x6e, 0x75, 0x65, 0x45, 0x71,
  2100. 0x75, 0x69, 0x70, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e,
  2101. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71,
  2102. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  2103. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x47, 0x0a, 0x17, 0x53,
  2104. 0x68, 0x6f, 0x70, 0x56, 0x65, 0x6e, 0x75, 0x65, 0x45, 0x71, 0x75, 0x69, 0x70, 0x53, 0x74, 0x61,
  2105. 0x74, 0x75, 0x73, 0x44, 0x65, 0x6c, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  2106. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e,
  2107. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70,
  2108. 0x6c, 0x79, 0x22, 0x00, 0x12, 0x40, 0x0a, 0x10, 0x53, 0x68, 0x6f, 0x70, 0x4d, 0x61, 0x6e, 0x61,
  2109. 0x67, 0x65, 0x72, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  2110. 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  2111. 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  2112. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x53, 0x68, 0x6f, 0x70, 0x4d, 0x61,
  2113. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  2114. 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  2115. 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  2116. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x53, 0x68, 0x6f, 0x70, 0x4d, 0x61,
  2117. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65,
  2118. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2119. 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  2120. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x15, 0x53, 0x68, 0x6f, 0x70, 0x4d,
  2121. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x64, 0x69, 0x74,
  2122. 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  2123. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  2124. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f,
  2125. 0x0a, 0x0f, 0x53, 0x68, 0x6f, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x51, 0x75, 0x65, 0x72,
  2126. 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  2127. 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  2128. 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12,
  2129. 0x3e, 0x0a, 0x0e, 0x53, 0x68, 0x6f, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x45, 0x64, 0x69,
  2130. 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  2131. 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  2132. 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12,
  2133. 0x40, 0x0a, 0x10, 0x53, 0x68, 0x6f, 0x70, 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x51, 0x75,
  2134. 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  2135. 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73,
  2136. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  2137. 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x53, 0x68, 0x6f, 0x70, 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72,
  2138. 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  2139. 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73,
  2140. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  2141. 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x53, 0x68, 0x6f, 0x70, 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72,
  2142. 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  2143. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61,
  2144. 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79,
  2145. 0x22, 0x00, 0x12, 0x45, 0x0a, 0x15, 0x53, 0x68, 0x6f, 0x70, 0x56, 0x69, 0x70, 0x55, 0x73, 0x65,
  2146. 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61,
  2147. 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
  2148. 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  2149. 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x42, 0x0a, 0x12, 0x41, 0x63, 0x72,
  2150. 0x6f, 0x73, 0x73, 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12,
  2151. 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  2152. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  2153. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x40, 0x0a,
  2154. 0x10, 0x41, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64,
  2155. 0x64, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  2156. 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  2157. 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12,
  2158. 0x40, 0x0a, 0x10, 0x41, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72,
  2159. 0x44, 0x65, 0x6c, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  2160. 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73,
  2161. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  2162. 0x00, 0x12, 0x3d, 0x0a, 0x0d, 0x56, 0x69, 0x70, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x51, 0x75, 0x65,
  2163. 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  2164. 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65,
  2165. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
  2166. 0x12, 0x41, 0x0a, 0x11, 0x56, 0x69, 0x70, 0x4d, 0x61, 0x69, 0x6e, 0x50, 0x68, 0x6f, 0x6e, 0x65,
  2167. 0x43, 0x68, 0x65, 0x63, 0x6b, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  2168. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62,
  2169. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c,
  2170. 0x79, 0x22, 0x00, 0x12, 0x40, 0x0a, 0x10, 0x56, 0x69, 0x70, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x50,
  2171. 0x68, 0x6f, 0x6e, 0x65, 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  2172. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
  2173. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  2174. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x11, 0x56, 0x69, 0x70, 0x4f, 0x74, 0x68, 0x65,
  2175. 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
  2176. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2177. 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  2178. 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x47, 0x0a, 0x17, 0x56, 0x69, 0x70, 0x4f,
  2179. 0x74, 0x68, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45,
  2180. 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  2181. 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73,
  2182. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  2183. 0x00, 0x12, 0x40, 0x0a, 0x10, 0x54, 0x65, 0x6d, 0x70, 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72,
  2184. 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  2185. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62,
  2186. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c,
  2187. 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x54, 0x65, 0x6d, 0x70, 0x56, 0x69, 0x70, 0x55, 0x73,
  2188. 0x65, 0x72, 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  2189. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62,
  2190. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c,
  2191. 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x54, 0x65, 0x6d, 0x70, 0x56, 0x69, 0x70, 0x55, 0x73,
  2192. 0x65, 0x72, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  2193. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e,
  2194. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70,
  2195. 0x6c, 0x79, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x15, 0x54, 0x65, 0x6d, 0x70, 0x56, 0x69, 0x70, 0x55,
  2196. 0x73, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e,
  2197. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71,
  2198. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  2199. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3b, 0x0a, 0x0b, 0x56,
  2200. 0x69, 0x70, 0x48, 0x6f, 0x75, 0x72, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
  2201. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2202. 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  2203. 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x43, 0x0a, 0x13, 0x56, 0x69, 0x70, 0x43,
  2204. 0x6f, 0x6e, 0x73, 0x75, 0x6d, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12,
  2205. 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  2206. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  2207. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x45, 0x0a,
  2208. 0x15, 0x56, 0x69, 0x70, 0x43, 0x6f, 0x6e, 0x73, 0x75, 0x6d, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69,
  2209. 0x6c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  2210. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e,
  2211. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70,
  2212. 0x6c, 0x79, 0x22, 0x00, 0x12, 0x44, 0x0a, 0x14, 0x56, 0x69, 0x70, 0x43, 0x6c, 0x61, 0x73, 0x73,
  2213. 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62,
  2214. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
  2215. 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  2216. 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x56, 0x69,
  2217. 0x70, 0x48, 0x6f, 0x75, 0x72, 0x43, 0x68, 0x67, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e,
  2218. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71,
  2219. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  2220. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x11, 0x56,
  2221. 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x51, 0x75, 0x65, 0x72, 0x79,
  2222. 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  2223. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  2224. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x4e,
  2225. 0x0a, 0x17, 0x47, 0x65, 0x74, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x79, 0x49, 0x6d, 0x67, 0x51,
  2226. 0x69, 0x4e, 0x69, 0x75, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x1a, 0x2e, 0x62, 0x61, 0x73, 0x65,
  2227. 0x2e, 0x47, 0x65, 0x74, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x79, 0x49, 0x6d, 0x67, 0x52, 0x65,
  2228. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x51, 0x69, 0x4e,
  2229. 0x69, 0x75, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x44,
  2230. 0x0a, 0x13, 0x47, 0x65, 0x74, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x65, 0x51, 0x69, 0x4e, 0x69, 0x75,
  2231. 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x14, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x44, 0x65, 0x66,
  2232. 0x61, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x15, 0x2e, 0x62, 0x61,
  2233. 0x73, 0x65, 0x2e, 0x51, 0x69, 0x4e, 0x69, 0x75, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x70,
  2234. 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3a, 0x0a, 0x0a, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x51, 0x75, 0x65,
  2235. 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  2236. 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65,
  2237. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
  2238. 0x12, 0x38, 0x0a, 0x08, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62,
  2239. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
  2240. 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  2241. 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x39, 0x0a, 0x09, 0x43, 0x6c,
  2242. 0x61, 0x73, 0x73, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  2243. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
  2244. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  2245. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x53, 0x74,
  2246. 0x61, 0x74, 0x75, 0x73, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  2247. 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  2248. 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  2249. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x43,
  2250. 0x6f, 0x6c, 0x6f, 0x72, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  2251. 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  2252. 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  2253. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x42, 0x0a, 0x12, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x57,
  2254. 0x78, 0x56, 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62,
  2255. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
  2256. 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  2257. 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3c, 0x0a, 0x0c, 0x43, 0x6c,
  2258. 0x61, 0x73, 0x73, 0x56, 0x69, 0x70, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
  2259. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2260. 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  2261. 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x11, 0x53, 0x74, 0x74, 0x50,
  2262. 0x6c, 0x61, 0x6e, 0x42, 0x61, 0x73, 0x69, 0x63, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e,
  2263. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71,
  2264. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  2265. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x53,
  2266. 0x74, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x42, 0x61, 0x73, 0x69, 0x63, 0x41, 0x64, 0x64, 0x12, 0x15,
  2267. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  2268. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  2269. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x40, 0x0a, 0x10,
  2270. 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x42, 0x61, 0x73, 0x69, 0x63, 0x45, 0x64, 0x69, 0x74,
  2271. 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  2272. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  2273. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x44,
  2274. 0x0a, 0x14, 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x42, 0x61, 0x73, 0x69, 0x63, 0x53, 0x68,
  2275. 0x6f, 0x70, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  2276. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e,
  2277. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70,
  2278. 0x6c, 0x79, 0x22, 0x00, 0x12, 0x46, 0x0a, 0x16, 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x42,
  2279. 0x61, 0x73, 0x69, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15,
  2280. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  2281. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  2282. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x43, 0x0a, 0x13,
  2283. 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x42, 0x61, 0x73, 0x69, 0x63, 0x50, 0x75, 0x62, 0x6c,
  2284. 0x69, 0x73, 0x68, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  2285. 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73,
  2286. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  2287. 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x50, 0x72, 0x65, 0x76,
  2288. 0x69, 0x65, 0x77, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  2289. 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73,
  2290. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  2291. 0x00, 0x12, 0x3b, 0x0a, 0x0b, 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x6f, 0x70, 0x79,
  2292. 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  2293. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  2294. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x42,
  2295. 0x0a, 0x12, 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x51,
  2296. 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  2297. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61,
  2298. 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79,
  2299. 0x22, 0x00, 0x12, 0x46, 0x0a, 0x16, 0x53, 0x74, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x44, 0x65, 0x74,
  2300. 0x61, 0x69, 0x6c, 0x42, 0x61, 0x74, 0x63, 0x68, 0x53, 0x61, 0x76, 0x65, 0x12, 0x15, 0x2e, 0x62,
  2301. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
  2302. 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  2303. 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3d, 0x0a, 0x0d, 0x53, 0x54,
  2304. 0x54, 0x42, 0x61, 0x73, 0x69, 0x63, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61,
  2305. 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
  2306. 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  2307. 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3b, 0x0a, 0x0b, 0x53, 0x54, 0x54,
  2308. 0x42, 0x61, 0x73, 0x69, 0x63, 0x41, 0x64, 0x64, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  2309. 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  2310. 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  2311. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3c, 0x0a, 0x0c, 0x53, 0x54, 0x54, 0x42, 0x61, 0x73,
  2312. 0x69, 0x63, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  2313. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e,
  2314. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70,
  2315. 0x6c, 0x79, 0x22, 0x00, 0x12, 0x42, 0x0a, 0x12, 0x53, 0x54, 0x54, 0x42, 0x61, 0x73, 0x69, 0x63,
  2316. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
  2317. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2318. 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  2319. 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x53, 0x54, 0x54, 0x42,
  2320. 0x61, 0x73, 0x69, 0x63, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x12, 0x15, 0x2e, 0x62, 0x61,
  2321. 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
  2322. 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  2323. 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3c, 0x0a, 0x0c, 0x53, 0x54, 0x54,
  2324. 0x42, 0x61, 0x73, 0x69, 0x63, 0x43, 0x6f, 0x70, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65,
  2325. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2326. 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  2327. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x43, 0x0a, 0x13, 0x53, 0x54, 0x54, 0x42, 0x61,
  2328. 0x73, 0x69, 0x63, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x45, 0x64, 0x69, 0x74, 0x12, 0x15,
  2329. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  2330. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  2331. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x42, 0x0a, 0x12,
  2332. 0x53, 0x54, 0x54, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x4c, 0x69, 0x73, 0x74, 0x51, 0x75, 0x65,
  2333. 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  2334. 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65,
  2335. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
  2336. 0x12, 0x47, 0x0a, 0x17, 0x53, 0x54, 0x54, 0x42, 0x61, 0x73, 0x69, 0x63, 0x44, 0x65, 0x74, 0x61,
  2337. 0x69, 0x6c, 0x42, 0x61, 0x74, 0x63, 0x68, 0x53, 0x61, 0x76, 0x65, 0x12, 0x15, 0x2e, 0x62, 0x61,
  2338. 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
  2339. 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  2340. 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x46, 0x0a, 0x16, 0x53, 0x54, 0x54,
  2341. 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x41, 0x6c, 0x6c, 0x6f, 0x77, 0x44, 0x65, 0x6c, 0x43, 0x68,
  2342. 0x65, 0x63, 0x6b, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  2343. 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73,
  2344. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  2345. 0x00, 0x12, 0x41, 0x0a, 0x11, 0x43, 0x6f, 0x75, 0x72, 0x73, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69,
  2346. 0x6c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  2347. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e,
  2348. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70,
  2349. 0x6c, 0x79, 0x22, 0x00, 0x12, 0x44, 0x0a, 0x14, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x4c, 0x69, 0x73,
  2350. 0x74, 0x42, 0x79, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x44, 0x61, 0x74, 0x65, 0x12, 0x15, 0x2e, 0x62,
  2351. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
  2352. 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  2353. 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x47, 0x0a, 0x11, 0x43, 0x6c,
  2354. 0x61, 0x73, 0x73, 0x53, 0x74, 0x61, 0x72, 0x74, 0x50, 0x72, 0x65, 0x70, 0x61, 0x72, 0x65, 0x12,
  2355. 0x1b, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x43, 0x6f, 0x75, 0x72, 0x73, 0x65, 0x53, 0x74, 0x61,
  2356. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62,
  2357. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c,
  2358. 0x79, 0x22, 0x00, 0x12, 0x43, 0x0a, 0x13, 0x56, 0x69, 0x70, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x44,
  2359. 0x65, 0x74, 0x61, 0x69, 0x6c, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73,
  2360. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2361. 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  2362. 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x47, 0x0a, 0x11, 0x56, 0x69, 0x70, 0x43,
  2363. 0x6c, 0x61, 0x73, 0x73, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x41, 0x64, 0x64, 0x12, 0x1b, 0x2e,
  2364. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x43, 0x6f, 0x75, 0x72, 0x73, 0x65, 0x53, 0x74, 0x61, 0x6e, 0x64,
  2365. 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73,
  2366. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  2367. 0x00, 0x12, 0x47, 0x0a, 0x11, 0x56, 0x69, 0x70, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x44, 0x65, 0x74,
  2368. 0x61, 0x69, 0x6c, 0x44, 0x65, 0x6c, 0x12, 0x1b, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x43, 0x6f,
  2369. 0x75, 0x72, 0x73, 0x65, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
  2370. 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  2371. 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x47, 0x0a, 0x11, 0x54, 0x6d,
  2372. 0x70, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x41, 0x64, 0x64, 0x12,
  2373. 0x1b, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x43, 0x6f, 0x75, 0x72, 0x73, 0x65, 0x53, 0x74, 0x61,
  2374. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62,
  2375. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c,
  2376. 0x79, 0x22, 0x00, 0x12, 0x47, 0x0a, 0x11, 0x54, 0x6d, 0x70, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x44,
  2377. 0x65, 0x74, 0x61, 0x69, 0x6c, 0x44, 0x65, 0x6c, 0x12, 0x1b, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  2378. 0x43, 0x6f, 0x75, 0x72, 0x73, 0x65, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  2379. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  2380. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x4e, 0x0a, 0x18,
  2381. 0x56, 0x69, 0x70, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x53, 0x74,
  2382. 0x61, 0x74, 0x75, 0x65, 0x45, 0x64, 0x69, 0x74, 0x12, 0x1b, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  2383. 0x43, 0x6f, 0x75, 0x72, 0x73, 0x65, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  2384. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  2385. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x47, 0x0a, 0x11,
  2386. 0x43, 0x6c, 0x61, 0x73, 0x73, 0x53, 0x74, 0x61, 0x72, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x72,
  2387. 0x6d, 0x12, 0x1b, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x43, 0x6f, 0x75, 0x72, 0x73, 0x65, 0x53,
  2388. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
  2389. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  2390. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x40, 0x0a, 0x10, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x4f, 0x76,
  2391. 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65,
  2392. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2393. 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64,
  2394. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x48, 0x0a, 0x12, 0x43, 0x6c, 0x61, 0x73, 0x73,
  2395. 0x47, 0x69, 0x76, 0x65, 0x55, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x12, 0x1b, 0x2e,
  2396. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x43, 0x6f, 0x75, 0x72, 0x73, 0x65, 0x53, 0x74, 0x61, 0x6e, 0x64,
  2397. 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73,
  2398. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  2399. 0x00, 0x12, 0x4e, 0x0a, 0x18, 0x41, 0x66, 0x74, 0x65, 0x72, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x41,
  2400. 0x64, 0x64, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x12, 0x1b, 0x2e,
  2401. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x43, 0x6f, 0x75, 0x72, 0x73, 0x65, 0x53, 0x74, 0x61, 0x6e, 0x64,
  2402. 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73,
  2403. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  2404. 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x51, 0x75,
  2405. 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  2406. 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73,
  2407. 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  2408. 0x00, 0x12, 0x41, 0x0a, 0x11, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x41, 0x64, 0x64, 0x42, 0x79, 0x4d,
  2409. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  2410. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e,
  2411. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70,
  2412. 0x6c, 0x79, 0x22, 0x00, 0x12, 0x44, 0x0a, 0x14, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x43, 0x61, 0x6e,
  2413. 0x63, 0x65, 0x6c, 0x42, 0x79, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x12, 0x15, 0x2e, 0x62,
  2414. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
  2415. 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  2416. 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x4f, 0x72,
  2417. 0x64, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x12, 0x15, 0x2e,
  2418. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71,
  2419. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  2420. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x43,
  2421. 0x6c, 0x61, 0x73, 0x73, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15,
  2422. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  2423. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  2424. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x11,
  2425. 0x56, 0x69, 0x70, 0x55, 0x73, 0x65, 0x72, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x51, 0x75, 0x65, 0x72,
  2426. 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72,
  2427. 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e,
  2428. 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12,
  2429. 0x43, 0x0a, 0x13, 0x55, 0x73, 0x65, 0x72, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x51, 0x75, 0x65, 0x72,
  2430. 0x79, 0x42, 0x79, 0x53, 0x74, 0x64, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  2431. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e,
  2432. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70,
  2433. 0x6c, 0x79, 0x22, 0x00, 0x12, 0x44, 0x0a, 0x14, 0x48, 0x72, 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72,
  2434. 0x73, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62,
  2435. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
  2436. 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64,
  2437. 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x41, 0x0a, 0x11, 0x48, 0x72,
  2438. 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x73, 0x50, 0x76, 0x74, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12,
  2439. 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52,
  2440. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74,
  2441. 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3c, 0x0a,
  2442. 0x0c, 0x41, 0x64, 0x64, 0x48, 0x72, 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x73, 0x12, 0x15, 0x2e,
  2443. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71,
  2444. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  2445. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3f, 0x0a, 0x0f, 0x41,
  2446. 0x64, 0x64, 0x50, 0x76, 0x74, 0x48, 0x72, 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x73, 0x12, 0x15,
  2447. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  2448. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  2449. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3d, 0x0a, 0x0d,
  2450. 0x45, 0x64, 0x69, 0x74, 0x48, 0x72, 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x73, 0x12, 0x15, 0x2e,
  2451. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71,
  2452. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e,
  2453. 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3c, 0x0a, 0x0c, 0x48,
  2454. 0x72, 0x53, 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x73, 0x44, 0x65, 0x6c, 0x12, 0x15, 0x2e, 0x62, 0x61,
  2455. 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65,
  2456. 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  2457. 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3a, 0x0a, 0x0a, 0x50, 0x4b, 0x47,
  2458. 0x72, 0x6f, 0x75, 0x70, 0x43, 0x68, 0x67, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53,
  2459. 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13,
  2460. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65,
  2461. 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x3c, 0x0a, 0x0c, 0x42, 0x69, 0x6e, 0x64, 0x48, 0x72, 0x53,
  2462. 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  2463. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62,
  2464. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c,
  2465. 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0e, 0x55, 0x6e, 0x42, 0x69, 0x6e, 0x64, 0x48, 0x72, 0x53,
  2466. 0x65, 0x6e, 0x73, 0x6f, 0x72, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  2467. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62,
  2468. 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c,
  2469. 0x79, 0x22, 0x00, 0x12, 0x3b, 0x0a, 0x0b, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x51, 0x75, 0x65,
  2470. 0x72, 0x79, 0x12, 0x15, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61,
  2471. 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65,
  2472. 0x2e, 0x53, 0x74, 0x61, 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00,
  2473. 0x12, 0x52, 0x0a, 0x16, 0x47, 0x65, 0x6e, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x49, 0x6d, 0x61,
  2474. 0x67, 0x65, 0x42, 0x79, 0x57, 0x69, 0x6e, 0x58, 0x69, 0x6e, 0x12, 0x1b, 0x2e, 0x62, 0x61, 0x73,
  2475. 0x65, 0x2e, 0x47, 0x65, 0x6e, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x49, 0x6d, 0x61, 0x67, 0x65,
  2476. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x47,
  2477. 0x65, 0x6e, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70,
  2478. 0x6c, 0x79, 0x22, 0x00, 0x12, 0x56, 0x0a, 0x1a, 0x47, 0x65, 0x6e, 0x50, 0x68, 0x6f, 0x6e, 0x65,
  2479. 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x42, 0x79, 0x57, 0x65, 0x69, 0x58,
  2480. 0x69, 0x6e, 0x12, 0x21, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x47, 0x65, 0x6e, 0x50, 0x68, 0x6f,
  2481. 0x6e, 0x65, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75,
  2482. 0x65, 0x73, 0x74, 0x57, 0x58, 0x1a, 0x13, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x74, 0x61,
  2483. 0x6e, 0x64, 0x61, 0x72, 0x64, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x45, 0x0a, 0x0f,
  2484. 0x43, 0x68, 0x65, 0x63, 0x6b, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12,
  2485. 0x1c, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x56, 0x65, 0x72, 0x69,
  2486. 0x66, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x12, 0x2e,
  2487. 0x62, 0x61, 0x73, 0x65, 0x2e, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x70, 0x6c,
  2488. 0x79, 0x22, 0x00, 0x12, 0x3e, 0x0a, 0x0c, 0x57, 0x65, 0x69, 0x58, 0x69, 0x6e, 0x53, 0x69, 0x67,
  2489. 0x6e, 0x49, 0x6e, 0x12, 0x19, 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x57, 0x65, 0x69, 0x58, 0x69,
  2490. 0x6e, 0x53, 0x69, 0x67, 0x6e, 0x49, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x11,
  2491. 0x2e, 0x62, 0x61, 0x73, 0x65, 0x2e, 0x53, 0x69, 0x67, 0x6e, 0x49, 0x6e, 0x52, 0x65, 0x70, 0x6c,
  2492. 0x79, 0x22, 0x00, 0x42, 0x08, 0x5a, 0x06, 0x2e, 0x3b, 0x62, 0x61, 0x73, 0x65, 0x62, 0x06, 0x70,
  2493. 0x72, 0x6f, 0x74, 0x6f, 0x33,
  2494. }
  2495. var (
  2496. file_base_proto_rawDescOnce sync.Once
  2497. file_base_proto_rawDescData = file_base_proto_rawDesc
  2498. )
  2499. func file_base_proto_rawDescGZIP() []byte {
  2500. file_base_proto_rawDescOnce.Do(func() {
  2501. file_base_proto_rawDescData = protoimpl.X.CompressGZIP(file_base_proto_rawDescData)
  2502. })
  2503. return file_base_proto_rawDescData
  2504. }
  2505. var file_base_proto_enumTypes = make([]protoimpl.EnumInfo, 3)
  2506. var file_base_proto_msgTypes = make([]protoimpl.MessageInfo, 30)
  2507. var file_base_proto_goTypes = []interface{}{
  2508. (ErrorCode)(0), // 0: base.ErrorCode
  2509. (WebStatus)(0), // 1: base.WebStatus
  2510. (VerifyType)(0), // 2: base.VerifyType
  2511. (*DefaultRequest)(nil), // 3: base.DefaultRequest
  2512. (*DefaultReply)(nil), // 4: base.DefaultReply
  2513. (*StandardRequest)(nil), // 5: base.StandardRequest
  2514. (*CourseStandardRequest)(nil), // 6: base.CourseStandardRequest
  2515. (*StandardReply)(nil), // 7: base.StandardReply
  2516. (*SignUpRequest)(nil), // 8: base.SignUpRequest
  2517. (*SignInReply)(nil), // 9: base.SignInReply
  2518. (*SignInRequest)(nil), // 10: base.SignInRequest
  2519. (*GenVerifyImageRequest)(nil), // 11: base.GenVerifyImageRequest
  2520. (*GenVerifyImageReply)(nil), // 12: base.GenVerifyImageReply
  2521. (*ShopInfo)(nil), // 13: base.ShopInfo
  2522. (*ShopDetailRequest)(nil), // 14: base.ShopDetailRequest
  2523. (*ShopListRequest)(nil), // 15: base.ShopListRequest
  2524. (*ShopListReply)(nil), // 16: base.ShopListReply
  2525. (*GetShopNaviRequest)(nil), // 17: base.GetShopNaviRequest
  2526. (*GetShopNaviAllRequest)(nil), // 18: base.GetShopNaviAllRequest
  2527. (*Column)(nil), // 19: base.Column
  2528. (*GetShopNaviReply)(nil), // 20: base.GetShopNaviReply
  2529. (*GetShopNaviAllReply)(nil), // 21: base.GetShopNaviAllReply
  2530. (*GetOverlayImgRequest)(nil), // 22: base.GetOverlayImgRequest
  2531. (*QiNiuTokenReply)(nil), // 23: base.QiNiuTokenReply
  2532. (*License)(nil), // 24: base.License
  2533. (*LicenseList)(nil), // 25: base.LicenseList
  2534. (*IdList)(nil), // 26: base.IdList
  2535. (*LicenseType)(nil), // 27: base.LicenseType
  2536. (*LicenseTypeMapReply)(nil), // 28: base.LicenseTypeMapReply
  2537. (*GenPhoneVerifyCodeRequestWX)(nil), // 29: base.GenPhoneVerifyCodeRequestWX
  2538. (*CheckVerifyCodeRequest)(nil), // 30: base.CheckVerifyCodeRequest
  2539. (*WeiXinSignInRequest)(nil), // 31: base.WeiXinSignInRequest
  2540. nil, // 32: base.LicenseTypeMapReply.LicenseMapEntry
  2541. }
  2542. var file_base_proto_depIdxs = []int32{
  2543. 1, // 0: base.ShopInfo.status:type_name -> base.WebStatus
  2544. 1, // 1: base.ShopListRequest.status:type_name -> base.WebStatus
  2545. 13, // 2: base.ShopListReply.list:type_name -> base.ShopInfo
  2546. 1, // 3: base.Column.status:type_name -> base.WebStatus
  2547. 19, // 4: base.GetShopNaviReply.list:type_name -> base.Column
  2548. 1, // 5: base.License.status:type_name -> base.WebStatus
  2549. 24, // 6: base.LicenseList.list:type_name -> base.License
  2550. 1, // 7: base.LicenseType.status:type_name -> base.WebStatus
  2551. 32, // 8: base.LicenseTypeMapReply.licenseMap:type_name -> base.LicenseTypeMapReply.LicenseMapEntry
  2552. 2, // 9: base.GenPhoneVerifyCodeRequestWX.verifyType:type_name -> base.VerifyType
  2553. 2, // 10: base.CheckVerifyCodeRequest.verifyType:type_name -> base.VerifyType
  2554. 27, // 11: base.LicenseTypeMapReply.LicenseMapEntry.value:type_name -> base.LicenseType
  2555. 8, // 12: base.Api.SignUp:input_type -> base.SignUpRequest
  2556. 10, // 13: base.Api.SignIn:input_type -> base.SignInRequest
  2557. 3, // 14: base.Api.SignOut:input_type -> base.DefaultRequest
  2558. 11, // 15: base.Api.GenVerifyImage:input_type -> base.GenVerifyImageRequest
  2559. 5, // 16: base.Api.SelectHrSensors:input_type -> base.StandardRequest
  2560. 5, // 17: base.Api.AcrossUserSimpleQuery:input_type -> base.StandardRequest
  2561. 5, // 18: base.Api.VipUserSimpleQuery:input_type -> base.StandardRequest
  2562. 5, // 19: base.Api.TempVipUserSimpleQuery:input_type -> base.StandardRequest
  2563. 5, // 20: base.Api.ShopSimpleQuery:input_type -> base.StandardRequest
  2564. 5, // 21: base.Api.ManageableSimpleQuery:input_type -> base.StandardRequest
  2565. 5, // 22: base.Api.ClassSimpleQuery:input_type -> base.StandardRequest
  2566. 5, // 23: base.Api.ScreenSimpleQuery:input_type -> base.StandardRequest
  2567. 5, // 24: base.Api.GroupSimpleQueryByShopID:input_type -> base.StandardRequest
  2568. 15, // 25: base.Api.ManageableShopList:input_type -> base.ShopListRequest
  2569. 14, // 26: base.Api.ManageableGetShopInfo:input_type -> base.ShopDetailRequest
  2570. 14, // 27: base.Api.ShopLicenseList:input_type -> base.ShopDetailRequest
  2571. 26, // 28: base.Api.ShopLicenseTypeMap:input_type -> base.IdList
  2572. 17, // 29: base.Api.GetShopNavi:input_type -> base.GetShopNaviRequest
  2573. 18, // 30: base.Api.GetShopNaviAll:input_type -> base.GetShopNaviAllRequest
  2574. 5, // 31: base.Api.ShopGroupQuery:input_type -> base.StandardRequest
  2575. 5, // 32: base.Api.ShopGroupAdd:input_type -> base.StandardRequest
  2576. 5, // 33: base.Api.ShopGroupEdit:input_type -> base.StandardRequest
  2577. 5, // 34: base.Api.ShopGroupStatusEdit:input_type -> base.StandardRequest
  2578. 5, // 35: base.Api.ShopGroupDetailsQuery:input_type -> base.StandardRequest
  2579. 5, // 36: base.Api.ShopGroupDetailsAdd:input_type -> base.StandardRequest
  2580. 5, // 37: base.Api.ShopVenueQuery:input_type -> base.StandardRequest
  2581. 5, // 38: base.Api.ShopVenueAdd:input_type -> base.StandardRequest
  2582. 5, // 39: base.Api.ShopVenueEdit:input_type -> base.StandardRequest
  2583. 5, // 40: base.Api.ShopVenueStatusEdit:input_type -> base.StandardRequest
  2584. 5, // 41: base.Api.ShopVenueEquipQuery:input_type -> base.StandardRequest
  2585. 5, // 42: base.Api.ShopVenueEquipAdd:input_type -> base.StandardRequest
  2586. 5, // 43: base.Api.ShopVenueEquipEdit:input_type -> base.StandardRequest
  2587. 5, // 44: base.Api.ShopVenueEquipStatusEdit:input_type -> base.StandardRequest
  2588. 5, // 45: base.Api.ShopVenueEquipStatusDel:input_type -> base.StandardRequest
  2589. 5, // 46: base.Api.ShopManagerQuery:input_type -> base.StandardRequest
  2590. 5, // 47: base.Api.ShopManagerAdd:input_type -> base.StandardRequest
  2591. 5, // 48: base.Api.ShopManagerEdit:input_type -> base.StandardRequest
  2592. 5, // 49: base.Api.ShopManagerStatusEdit:input_type -> base.StandardRequest
  2593. 5, // 50: base.Api.ShopConfigQuery:input_type -> base.StandardRequest
  2594. 5, // 51: base.Api.ShopConfigEdit:input_type -> base.StandardRequest
  2595. 5, // 52: base.Api.ShopVipUserQuery:input_type -> base.StandardRequest
  2596. 5, // 53: base.Api.ShopVipUserAdd:input_type -> base.StandardRequest
  2597. 5, // 54: base.Api.ShopVipUserEdit:input_type -> base.StandardRequest
  2598. 5, // 55: base.Api.ShopVipUserStatusEdit:input_type -> base.StandardRequest
  2599. 5, // 56: base.Api.AcrossVipUserQuery:input_type -> base.StandardRequest
  2600. 5, // 57: base.Api.AcrossVipUserAdd:input_type -> base.StandardRequest
  2601. 5, // 58: base.Api.AcrossVipUserDel:input_type -> base.StandardRequest
  2602. 5, // 59: base.Api.VipPhoneQuery:input_type -> base.StandardRequest
  2603. 5, // 60: base.Api.VipMainPhoneCheck:input_type -> base.StandardRequest
  2604. 5, // 61: base.Api.VipOtherPhoneAdd:input_type -> base.StandardRequest
  2605. 5, // 62: base.Api.VipOtherPhoneEdit:input_type -> base.StandardRequest
  2606. 5, // 63: base.Api.VipOtherPhoneStatusEdit:input_type -> base.StandardRequest
  2607. 5, // 64: base.Api.TempVipUserQuery:input_type -> base.StandardRequest
  2608. 5, // 65: base.Api.TempVipUserAdd:input_type -> base.StandardRequest
  2609. 5, // 66: base.Api.TempVipUserEdit:input_type -> base.StandardRequest
  2610. 5, // 67: base.Api.TempVipUserStatusEdit:input_type -> base.StandardRequest
  2611. 5, // 68: base.Api.VipHourEdit:input_type -> base.StandardRequest
  2612. 5, // 69: base.Api.VipConsumeListQuery:input_type -> base.StandardRequest
  2613. 5, // 70: base.Api.VipConsumeDetailQuery:input_type -> base.StandardRequest
  2614. 5, // 71: base.Api.VipClassRelationEdit:input_type -> base.StandardRequest
  2615. 5, // 72: base.Api.VipHourChgQuery:input_type -> base.StandardRequest
  2616. 5, // 73: base.Api.VipUserClassQuery:input_type -> base.StandardRequest
  2617. 22, // 74: base.Api.GetOverlayImgQiNiuToken:input_type -> base.GetOverlayImgRequest
  2618. 3, // 75: base.Api.GetSimpleQiNiuToken:input_type -> base.DefaultRequest
  2619. 5, // 76: base.Api.ClassQuery:input_type -> base.StandardRequest
  2620. 5, // 77: base.Api.ClassAdd:input_type -> base.StandardRequest
  2621. 5, // 78: base.Api.ClassEdit:input_type -> base.StandardRequest
  2622. 5, // 79: base.Api.ClassStatusEdit:input_type -> base.StandardRequest
  2623. 5, // 80: base.Api.ClassColorEdit:input_type -> base.StandardRequest
  2624. 5, // 81: base.Api.ClassWxVisibleEdit:input_type -> base.StandardRequest
  2625. 5, // 82: base.Api.ClassVipEdit:input_type -> base.StandardRequest
  2626. 5, // 83: base.Api.SttPlanBasicQuery:input_type -> base.StandardRequest
  2627. 5, // 84: base.Api.SttPlanBasicAdd:input_type -> base.StandardRequest
  2628. 5, // 85: base.Api.SttPlanBasicEdit:input_type -> base.StandardRequest
  2629. 5, // 86: base.Api.SttPlanBasicShopEdit:input_type -> base.StandardRequest
  2630. 5, // 87: base.Api.SttPlanBasicStatusEdit:input_type -> base.StandardRequest
  2631. 5, // 88: base.Api.SttPlanBasicPublish:input_type -> base.StandardRequest
  2632. 5, // 89: base.Api.SttPlanPreview:input_type -> base.StandardRequest
  2633. 5, // 90: base.Api.SttPlanCopy:input_type -> base.StandardRequest
  2634. 5, // 91: base.Api.SttPlanDetailQuery:input_type -> base.StandardRequest
  2635. 5, // 92: base.Api.SttPlanDetailBatchSave:input_type -> base.StandardRequest
  2636. 5, // 93: base.Api.STTBasicQuery:input_type -> base.StandardRequest
  2637. 5, // 94: base.Api.STTBasicAdd:input_type -> base.StandardRequest
  2638. 5, // 95: base.Api.STTBasicEdit:input_type -> base.StandardRequest
  2639. 5, // 96: base.Api.STTBasicStatusEdit:input_type -> base.StandardRequest
  2640. 5, // 97: base.Api.STTBasicPreview:input_type -> base.StandardRequest
  2641. 5, // 98: base.Api.STTBasicCopy:input_type -> base.StandardRequest
  2642. 5, // 99: base.Api.STTBasicOfflineEdit:input_type -> base.StandardRequest
  2643. 5, // 100: base.Api.STTDetailListQuery:input_type -> base.StandardRequest
  2644. 5, // 101: base.Api.STTBasicDetailBatchSave:input_type -> base.StandardRequest
  2645. 5, // 102: base.Api.STTDetailAllowDelCheck:input_type -> base.StandardRequest
  2646. 5, // 103: base.Api.CourseDetailQuery:input_type -> base.StandardRequest
  2647. 5, // 104: base.Api.ClassListByOrderDate:input_type -> base.StandardRequest
  2648. 6, // 105: base.Api.ClassStartPrepare:input_type -> base.CourseStandardRequest
  2649. 5, // 106: base.Api.VipClassDetailQuery:input_type -> base.StandardRequest
  2650. 6, // 107: base.Api.VipClassDetailAdd:input_type -> base.CourseStandardRequest
  2651. 6, // 108: base.Api.VipClassDetailDel:input_type -> base.CourseStandardRequest
  2652. 6, // 109: base.Api.TmpClassDetailAdd:input_type -> base.CourseStandardRequest
  2653. 6, // 110: base.Api.TmpClassDetailDel:input_type -> base.CourseStandardRequest
  2654. 6, // 111: base.Api.VipClassDetailStatueEdit:input_type -> base.CourseStandardRequest
  2655. 6, // 112: base.Api.ClassStartConfirm:input_type -> base.CourseStandardRequest
  2656. 5, // 113: base.Api.ClassOverConfirm:input_type -> base.StandardRequest
  2657. 6, // 114: base.Api.ClassGiveUpConfirm:input_type -> base.CourseStandardRequest
  2658. 6, // 115: base.Api.AfterClassAddClassDetail:input_type -> base.CourseStandardRequest
  2659. 5, // 116: base.Api.OrderListQuery:input_type -> base.StandardRequest
  2660. 5, // 117: base.Api.OrderAddByManager:input_type -> base.StandardRequest
  2661. 5, // 118: base.Api.OrderCancelByManager:input_type -> base.StandardRequest
  2662. 5, // 119: base.Api.OrderStatistics:input_type -> base.StandardRequest
  2663. 5, // 120: base.Api.ClassOrderQuery:input_type -> base.StandardRequest
  2664. 5, // 121: base.Api.VipUserOrderQuery:input_type -> base.StandardRequest
  2665. 5, // 122: base.Api.UserOrderQueryByStd:input_type -> base.StandardRequest
  2666. 5, // 123: base.Api.HrSensorsPublicQuery:input_type -> base.StandardRequest
  2667. 5, // 124: base.Api.HrSensorsPvtQuery:input_type -> base.StandardRequest
  2668. 5, // 125: base.Api.AddHrSensors:input_type -> base.StandardRequest
  2669. 5, // 126: base.Api.AddPvtHrSensors:input_type -> base.StandardRequest
  2670. 5, // 127: base.Api.EditHrSensors:input_type -> base.StandardRequest
  2671. 5, // 128: base.Api.HrSensorsDel:input_type -> base.StandardRequest
  2672. 5, // 129: base.Api.PKGroupChg:input_type -> base.StandardRequest
  2673. 5, // 130: base.Api.BindHrSensor:input_type -> base.StandardRequest
  2674. 5, // 131: base.Api.UnBindHrSensor:input_type -> base.StandardRequest
  2675. 5, // 132: base.Api.ActionQuery:input_type -> base.StandardRequest
  2676. 11, // 133: base.Api.GenVerifyImageByWinXin:input_type -> base.GenVerifyImageRequest
  2677. 29, // 134: base.Api.GenPhoneVerifyCodeByWeiXin:input_type -> base.GenPhoneVerifyCodeRequestWX
  2678. 30, // 135: base.Api.CheckVerifyCode:input_type -> base.CheckVerifyCodeRequest
  2679. 31, // 136: base.Api.WeiXinSignIn:input_type -> base.WeiXinSignInRequest
  2680. 4, // 137: base.Api.SignUp:output_type -> base.DefaultReply
  2681. 9, // 138: base.Api.SignIn:output_type -> base.SignInReply
  2682. 4, // 139: base.Api.SignOut:output_type -> base.DefaultReply
  2683. 12, // 140: base.Api.GenVerifyImage:output_type -> base.GenVerifyImageReply
  2684. 7, // 141: base.Api.SelectHrSensors:output_type -> base.StandardReply
  2685. 7, // 142: base.Api.AcrossUserSimpleQuery:output_type -> base.StandardReply
  2686. 7, // 143: base.Api.VipUserSimpleQuery:output_type -> base.StandardReply
  2687. 7, // 144: base.Api.TempVipUserSimpleQuery:output_type -> base.StandardReply
  2688. 7, // 145: base.Api.ShopSimpleQuery:output_type -> base.StandardReply
  2689. 7, // 146: base.Api.ManageableSimpleQuery:output_type -> base.StandardReply
  2690. 7, // 147: base.Api.ClassSimpleQuery:output_type -> base.StandardReply
  2691. 7, // 148: base.Api.ScreenSimpleQuery:output_type -> base.StandardReply
  2692. 7, // 149: base.Api.GroupSimpleQueryByShopID:output_type -> base.StandardReply
  2693. 16, // 150: base.Api.ManageableShopList:output_type -> base.ShopListReply
  2694. 13, // 151: base.Api.ManageableGetShopInfo:output_type -> base.ShopInfo
  2695. 25, // 152: base.Api.ShopLicenseList:output_type -> base.LicenseList
  2696. 28, // 153: base.Api.ShopLicenseTypeMap:output_type -> base.LicenseTypeMapReply
  2697. 20, // 154: base.Api.GetShopNavi:output_type -> base.GetShopNaviReply
  2698. 21, // 155: base.Api.GetShopNaviAll:output_type -> base.GetShopNaviAllReply
  2699. 7, // 156: base.Api.ShopGroupQuery:output_type -> base.StandardReply
  2700. 7, // 157: base.Api.ShopGroupAdd:output_type -> base.StandardReply
  2701. 7, // 158: base.Api.ShopGroupEdit:output_type -> base.StandardReply
  2702. 7, // 159: base.Api.ShopGroupStatusEdit:output_type -> base.StandardReply
  2703. 7, // 160: base.Api.ShopGroupDetailsQuery:output_type -> base.StandardReply
  2704. 7, // 161: base.Api.ShopGroupDetailsAdd:output_type -> base.StandardReply
  2705. 7, // 162: base.Api.ShopVenueQuery:output_type -> base.StandardReply
  2706. 7, // 163: base.Api.ShopVenueAdd:output_type -> base.StandardReply
  2707. 7, // 164: base.Api.ShopVenueEdit:output_type -> base.StandardReply
  2708. 7, // 165: base.Api.ShopVenueStatusEdit:output_type -> base.StandardReply
  2709. 7, // 166: base.Api.ShopVenueEquipQuery:output_type -> base.StandardReply
  2710. 7, // 167: base.Api.ShopVenueEquipAdd:output_type -> base.StandardReply
  2711. 7, // 168: base.Api.ShopVenueEquipEdit:output_type -> base.StandardReply
  2712. 7, // 169: base.Api.ShopVenueEquipStatusEdit:output_type -> base.StandardReply
  2713. 7, // 170: base.Api.ShopVenueEquipStatusDel:output_type -> base.StandardReply
  2714. 7, // 171: base.Api.ShopManagerQuery:output_type -> base.StandardReply
  2715. 7, // 172: base.Api.ShopManagerAdd:output_type -> base.StandardReply
  2716. 7, // 173: base.Api.ShopManagerEdit:output_type -> base.StandardReply
  2717. 7, // 174: base.Api.ShopManagerStatusEdit:output_type -> base.StandardReply
  2718. 7, // 175: base.Api.ShopConfigQuery:output_type -> base.StandardReply
  2719. 7, // 176: base.Api.ShopConfigEdit:output_type -> base.StandardReply
  2720. 7, // 177: base.Api.ShopVipUserQuery:output_type -> base.StandardReply
  2721. 7, // 178: base.Api.ShopVipUserAdd:output_type -> base.StandardReply
  2722. 7, // 179: base.Api.ShopVipUserEdit:output_type -> base.StandardReply
  2723. 7, // 180: base.Api.ShopVipUserStatusEdit:output_type -> base.StandardReply
  2724. 7, // 181: base.Api.AcrossVipUserQuery:output_type -> base.StandardReply
  2725. 7, // 182: base.Api.AcrossVipUserAdd:output_type -> base.StandardReply
  2726. 7, // 183: base.Api.AcrossVipUserDel:output_type -> base.StandardReply
  2727. 7, // 184: base.Api.VipPhoneQuery:output_type -> base.StandardReply
  2728. 7, // 185: base.Api.VipMainPhoneCheck:output_type -> base.StandardReply
  2729. 7, // 186: base.Api.VipOtherPhoneAdd:output_type -> base.StandardReply
  2730. 7, // 187: base.Api.VipOtherPhoneEdit:output_type -> base.StandardReply
  2731. 7, // 188: base.Api.VipOtherPhoneStatusEdit:output_type -> base.StandardReply
  2732. 7, // 189: base.Api.TempVipUserQuery:output_type -> base.StandardReply
  2733. 7, // 190: base.Api.TempVipUserAdd:output_type -> base.StandardReply
  2734. 7, // 191: base.Api.TempVipUserEdit:output_type -> base.StandardReply
  2735. 7, // 192: base.Api.TempVipUserStatusEdit:output_type -> base.StandardReply
  2736. 7, // 193: base.Api.VipHourEdit:output_type -> base.StandardReply
  2737. 7, // 194: base.Api.VipConsumeListQuery:output_type -> base.StandardReply
  2738. 7, // 195: base.Api.VipConsumeDetailQuery:output_type -> base.StandardReply
  2739. 7, // 196: base.Api.VipClassRelationEdit:output_type -> base.StandardReply
  2740. 7, // 197: base.Api.VipHourChgQuery:output_type -> base.StandardReply
  2741. 7, // 198: base.Api.VipUserClassQuery:output_type -> base.StandardReply
  2742. 23, // 199: base.Api.GetOverlayImgQiNiuToken:output_type -> base.QiNiuTokenReply
  2743. 23, // 200: base.Api.GetSimpleQiNiuToken:output_type -> base.QiNiuTokenReply
  2744. 7, // 201: base.Api.ClassQuery:output_type -> base.StandardReply
  2745. 7, // 202: base.Api.ClassAdd:output_type -> base.StandardReply
  2746. 7, // 203: base.Api.ClassEdit:output_type -> base.StandardReply
  2747. 7, // 204: base.Api.ClassStatusEdit:output_type -> base.StandardReply
  2748. 7, // 205: base.Api.ClassColorEdit:output_type -> base.StandardReply
  2749. 7, // 206: base.Api.ClassWxVisibleEdit:output_type -> base.StandardReply
  2750. 7, // 207: base.Api.ClassVipEdit:output_type -> base.StandardReply
  2751. 7, // 208: base.Api.SttPlanBasicQuery:output_type -> base.StandardReply
  2752. 7, // 209: base.Api.SttPlanBasicAdd:output_type -> base.StandardReply
  2753. 7, // 210: base.Api.SttPlanBasicEdit:output_type -> base.StandardReply
  2754. 7, // 211: base.Api.SttPlanBasicShopEdit:output_type -> base.StandardReply
  2755. 7, // 212: base.Api.SttPlanBasicStatusEdit:output_type -> base.StandardReply
  2756. 7, // 213: base.Api.SttPlanBasicPublish:output_type -> base.StandardReply
  2757. 7, // 214: base.Api.SttPlanPreview:output_type -> base.StandardReply
  2758. 7, // 215: base.Api.SttPlanCopy:output_type -> base.StandardReply
  2759. 7, // 216: base.Api.SttPlanDetailQuery:output_type -> base.StandardReply
  2760. 7, // 217: base.Api.SttPlanDetailBatchSave:output_type -> base.StandardReply
  2761. 7, // 218: base.Api.STTBasicQuery:output_type -> base.StandardReply
  2762. 7, // 219: base.Api.STTBasicAdd:output_type -> base.StandardReply
  2763. 7, // 220: base.Api.STTBasicEdit:output_type -> base.StandardReply
  2764. 7, // 221: base.Api.STTBasicStatusEdit:output_type -> base.StandardReply
  2765. 7, // 222: base.Api.STTBasicPreview:output_type -> base.StandardReply
  2766. 7, // 223: base.Api.STTBasicCopy:output_type -> base.StandardReply
  2767. 7, // 224: base.Api.STTBasicOfflineEdit:output_type -> base.StandardReply
  2768. 7, // 225: base.Api.STTDetailListQuery:output_type -> base.StandardReply
  2769. 7, // 226: base.Api.STTBasicDetailBatchSave:output_type -> base.StandardReply
  2770. 7, // 227: base.Api.STTDetailAllowDelCheck:output_type -> base.StandardReply
  2771. 7, // 228: base.Api.CourseDetailQuery:output_type -> base.StandardReply
  2772. 7, // 229: base.Api.ClassListByOrderDate:output_type -> base.StandardReply
  2773. 7, // 230: base.Api.ClassStartPrepare:output_type -> base.StandardReply
  2774. 7, // 231: base.Api.VipClassDetailQuery:output_type -> base.StandardReply
  2775. 7, // 232: base.Api.VipClassDetailAdd:output_type -> base.StandardReply
  2776. 7, // 233: base.Api.VipClassDetailDel:output_type -> base.StandardReply
  2777. 7, // 234: base.Api.TmpClassDetailAdd:output_type -> base.StandardReply
  2778. 7, // 235: base.Api.TmpClassDetailDel:output_type -> base.StandardReply
  2779. 7, // 236: base.Api.VipClassDetailStatueEdit:output_type -> base.StandardReply
  2780. 7, // 237: base.Api.ClassStartConfirm:output_type -> base.StandardReply
  2781. 7, // 238: base.Api.ClassOverConfirm:output_type -> base.StandardReply
  2782. 7, // 239: base.Api.ClassGiveUpConfirm:output_type -> base.StandardReply
  2783. 7, // 240: base.Api.AfterClassAddClassDetail:output_type -> base.StandardReply
  2784. 7, // 241: base.Api.OrderListQuery:output_type -> base.StandardReply
  2785. 7, // 242: base.Api.OrderAddByManager:output_type -> base.StandardReply
  2786. 7, // 243: base.Api.OrderCancelByManager:output_type -> base.StandardReply
  2787. 7, // 244: base.Api.OrderStatistics:output_type -> base.StandardReply
  2788. 7, // 245: base.Api.ClassOrderQuery:output_type -> base.StandardReply
  2789. 7, // 246: base.Api.VipUserOrderQuery:output_type -> base.StandardReply
  2790. 7, // 247: base.Api.UserOrderQueryByStd:output_type -> base.StandardReply
  2791. 7, // 248: base.Api.HrSensorsPublicQuery:output_type -> base.StandardReply
  2792. 7, // 249: base.Api.HrSensorsPvtQuery:output_type -> base.StandardReply
  2793. 7, // 250: base.Api.AddHrSensors:output_type -> base.StandardReply
  2794. 7, // 251: base.Api.AddPvtHrSensors:output_type -> base.StandardReply
  2795. 7, // 252: base.Api.EditHrSensors:output_type -> base.StandardReply
  2796. 7, // 253: base.Api.HrSensorsDel:output_type -> base.StandardReply
  2797. 7, // 254: base.Api.PKGroupChg:output_type -> base.StandardReply
  2798. 7, // 255: base.Api.BindHrSensor:output_type -> base.StandardReply
  2799. 7, // 256: base.Api.UnBindHrSensor:output_type -> base.StandardReply
  2800. 7, // 257: base.Api.ActionQuery:output_type -> base.StandardReply
  2801. 12, // 258: base.Api.GenVerifyImageByWinXin:output_type -> base.GenVerifyImageReply
  2802. 7, // 259: base.Api.GenPhoneVerifyCodeByWeiXin:output_type -> base.StandardReply
  2803. 4, // 260: base.Api.CheckVerifyCode:output_type -> base.DefaultReply
  2804. 9, // 261: base.Api.WeiXinSignIn:output_type -> base.SignInReply
  2805. 137, // [137:262] is the sub-list for method output_type
  2806. 12, // [12:137] is the sub-list for method input_type
  2807. 12, // [12:12] is the sub-list for extension type_name
  2808. 12, // [12:12] is the sub-list for extension extendee
  2809. 0, // [0:12] is the sub-list for field type_name
  2810. }
  2811. func init() { file_base_proto_init() }
  2812. func file_base_proto_init() {
  2813. if File_base_proto != nil {
  2814. return
  2815. }
  2816. if !protoimpl.UnsafeEnabled {
  2817. file_base_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  2818. switch v := v.(*DefaultRequest); i {
  2819. case 0:
  2820. return &v.state
  2821. case 1:
  2822. return &v.sizeCache
  2823. case 2:
  2824. return &v.unknownFields
  2825. default:
  2826. return nil
  2827. }
  2828. }
  2829. file_base_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  2830. switch v := v.(*DefaultReply); i {
  2831. case 0:
  2832. return &v.state
  2833. case 1:
  2834. return &v.sizeCache
  2835. case 2:
  2836. return &v.unknownFields
  2837. default:
  2838. return nil
  2839. }
  2840. }
  2841. file_base_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  2842. switch v := v.(*StandardRequest); i {
  2843. case 0:
  2844. return &v.state
  2845. case 1:
  2846. return &v.sizeCache
  2847. case 2:
  2848. return &v.unknownFields
  2849. default:
  2850. return nil
  2851. }
  2852. }
  2853. file_base_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  2854. switch v := v.(*CourseStandardRequest); i {
  2855. case 0:
  2856. return &v.state
  2857. case 1:
  2858. return &v.sizeCache
  2859. case 2:
  2860. return &v.unknownFields
  2861. default:
  2862. return nil
  2863. }
  2864. }
  2865. file_base_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  2866. switch v := v.(*StandardReply); i {
  2867. case 0:
  2868. return &v.state
  2869. case 1:
  2870. return &v.sizeCache
  2871. case 2:
  2872. return &v.unknownFields
  2873. default:
  2874. return nil
  2875. }
  2876. }
  2877. file_base_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  2878. switch v := v.(*SignUpRequest); i {
  2879. case 0:
  2880. return &v.state
  2881. case 1:
  2882. return &v.sizeCache
  2883. case 2:
  2884. return &v.unknownFields
  2885. default:
  2886. return nil
  2887. }
  2888. }
  2889. file_base_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  2890. switch v := v.(*SignInReply); i {
  2891. case 0:
  2892. return &v.state
  2893. case 1:
  2894. return &v.sizeCache
  2895. case 2:
  2896. return &v.unknownFields
  2897. default:
  2898. return nil
  2899. }
  2900. }
  2901. file_base_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  2902. switch v := v.(*SignInRequest); i {
  2903. case 0:
  2904. return &v.state
  2905. case 1:
  2906. return &v.sizeCache
  2907. case 2:
  2908. return &v.unknownFields
  2909. default:
  2910. return nil
  2911. }
  2912. }
  2913. file_base_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  2914. switch v := v.(*GenVerifyImageRequest); i {
  2915. case 0:
  2916. return &v.state
  2917. case 1:
  2918. return &v.sizeCache
  2919. case 2:
  2920. return &v.unknownFields
  2921. default:
  2922. return nil
  2923. }
  2924. }
  2925. file_base_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  2926. switch v := v.(*GenVerifyImageReply); i {
  2927. case 0:
  2928. return &v.state
  2929. case 1:
  2930. return &v.sizeCache
  2931. case 2:
  2932. return &v.unknownFields
  2933. default:
  2934. return nil
  2935. }
  2936. }
  2937. file_base_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  2938. switch v := v.(*ShopInfo); i {
  2939. case 0:
  2940. return &v.state
  2941. case 1:
  2942. return &v.sizeCache
  2943. case 2:
  2944. return &v.unknownFields
  2945. default:
  2946. return nil
  2947. }
  2948. }
  2949. file_base_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  2950. switch v := v.(*ShopDetailRequest); i {
  2951. case 0:
  2952. return &v.state
  2953. case 1:
  2954. return &v.sizeCache
  2955. case 2:
  2956. return &v.unknownFields
  2957. default:
  2958. return nil
  2959. }
  2960. }
  2961. file_base_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  2962. switch v := v.(*ShopListRequest); i {
  2963. case 0:
  2964. return &v.state
  2965. case 1:
  2966. return &v.sizeCache
  2967. case 2:
  2968. return &v.unknownFields
  2969. default:
  2970. return nil
  2971. }
  2972. }
  2973. file_base_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  2974. switch v := v.(*ShopListReply); i {
  2975. case 0:
  2976. return &v.state
  2977. case 1:
  2978. return &v.sizeCache
  2979. case 2:
  2980. return &v.unknownFields
  2981. default:
  2982. return nil
  2983. }
  2984. }
  2985. file_base_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  2986. switch v := v.(*GetShopNaviRequest); i {
  2987. case 0:
  2988. return &v.state
  2989. case 1:
  2990. return &v.sizeCache
  2991. case 2:
  2992. return &v.unknownFields
  2993. default:
  2994. return nil
  2995. }
  2996. }
  2997. file_base_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  2998. switch v := v.(*GetShopNaviAllRequest); i {
  2999. case 0:
  3000. return &v.state
  3001. case 1:
  3002. return &v.sizeCache
  3003. case 2:
  3004. return &v.unknownFields
  3005. default:
  3006. return nil
  3007. }
  3008. }
  3009. file_base_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  3010. switch v := v.(*Column); i {
  3011. case 0:
  3012. return &v.state
  3013. case 1:
  3014. return &v.sizeCache
  3015. case 2:
  3016. return &v.unknownFields
  3017. default:
  3018. return nil
  3019. }
  3020. }
  3021. file_base_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  3022. switch v := v.(*GetShopNaviReply); i {
  3023. case 0:
  3024. return &v.state
  3025. case 1:
  3026. return &v.sizeCache
  3027. case 2:
  3028. return &v.unknownFields
  3029. default:
  3030. return nil
  3031. }
  3032. }
  3033. file_base_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  3034. switch v := v.(*GetShopNaviAllReply); i {
  3035. case 0:
  3036. return &v.state
  3037. case 1:
  3038. return &v.sizeCache
  3039. case 2:
  3040. return &v.unknownFields
  3041. default:
  3042. return nil
  3043. }
  3044. }
  3045. file_base_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  3046. switch v := v.(*GetOverlayImgRequest); i {
  3047. case 0:
  3048. return &v.state
  3049. case 1:
  3050. return &v.sizeCache
  3051. case 2:
  3052. return &v.unknownFields
  3053. default:
  3054. return nil
  3055. }
  3056. }
  3057. file_base_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  3058. switch v := v.(*QiNiuTokenReply); i {
  3059. case 0:
  3060. return &v.state
  3061. case 1:
  3062. return &v.sizeCache
  3063. case 2:
  3064. return &v.unknownFields
  3065. default:
  3066. return nil
  3067. }
  3068. }
  3069. file_base_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  3070. switch v := v.(*License); i {
  3071. case 0:
  3072. return &v.state
  3073. case 1:
  3074. return &v.sizeCache
  3075. case 2:
  3076. return &v.unknownFields
  3077. default:
  3078. return nil
  3079. }
  3080. }
  3081. file_base_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  3082. switch v := v.(*LicenseList); i {
  3083. case 0:
  3084. return &v.state
  3085. case 1:
  3086. return &v.sizeCache
  3087. case 2:
  3088. return &v.unknownFields
  3089. default:
  3090. return nil
  3091. }
  3092. }
  3093. file_base_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  3094. switch v := v.(*IdList); i {
  3095. case 0:
  3096. return &v.state
  3097. case 1:
  3098. return &v.sizeCache
  3099. case 2:
  3100. return &v.unknownFields
  3101. default:
  3102. return nil
  3103. }
  3104. }
  3105. file_base_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  3106. switch v := v.(*LicenseType); i {
  3107. case 0:
  3108. return &v.state
  3109. case 1:
  3110. return &v.sizeCache
  3111. case 2:
  3112. return &v.unknownFields
  3113. default:
  3114. return nil
  3115. }
  3116. }
  3117. file_base_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  3118. switch v := v.(*LicenseTypeMapReply); i {
  3119. case 0:
  3120. return &v.state
  3121. case 1:
  3122. return &v.sizeCache
  3123. case 2:
  3124. return &v.unknownFields
  3125. default:
  3126. return nil
  3127. }
  3128. }
  3129. file_base_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  3130. switch v := v.(*GenPhoneVerifyCodeRequestWX); i {
  3131. case 0:
  3132. return &v.state
  3133. case 1:
  3134. return &v.sizeCache
  3135. case 2:
  3136. return &v.unknownFields
  3137. default:
  3138. return nil
  3139. }
  3140. }
  3141. file_base_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  3142. switch v := v.(*CheckVerifyCodeRequest); i {
  3143. case 0:
  3144. return &v.state
  3145. case 1:
  3146. return &v.sizeCache
  3147. case 2:
  3148. return &v.unknownFields
  3149. default:
  3150. return nil
  3151. }
  3152. }
  3153. file_base_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  3154. switch v := v.(*WeiXinSignInRequest); i {
  3155. case 0:
  3156. return &v.state
  3157. case 1:
  3158. return &v.sizeCache
  3159. case 2:
  3160. return &v.unknownFields
  3161. default:
  3162. return nil
  3163. }
  3164. }
  3165. }
  3166. type x struct{}
  3167. out := protoimpl.TypeBuilder{
  3168. File: protoimpl.DescBuilder{
  3169. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  3170. RawDescriptor: file_base_proto_rawDesc,
  3171. NumEnums: 3,
  3172. NumMessages: 30,
  3173. NumExtensions: 0,
  3174. NumServices: 1,
  3175. },
  3176. GoTypes: file_base_proto_goTypes,
  3177. DependencyIndexes: file_base_proto_depIdxs,
  3178. EnumInfos: file_base_proto_enumTypes,
  3179. MessageInfos: file_base_proto_msgTypes,
  3180. }.Build()
  3181. File_base_proto = out.File
  3182. file_base_proto_rawDesc = nil
  3183. file_base_proto_goTypes = nil
  3184. file_base_proto_depIdxs = nil
  3185. }