command.pb.go 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675
  1. package command
  2. import (
  3. subscription "github.com/v2fly/v2ray-core/v5/app/subscription"
  4. _ "github.com/v2fly/v2ray-core/v5/common/protoext"
  5. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  6. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  7. reflect "reflect"
  8. sync "sync"
  9. unsafe "unsafe"
  10. )
  11. const (
  12. // Verify that this generated code is sufficiently up-to-date.
  13. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  14. // Verify that runtime/protoimpl is sufficiently up-to-date.
  15. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  16. )
  17. type ListTrackedSubscriptionRequest struct {
  18. state protoimpl.MessageState `protogen:"open.v1"`
  19. unknownFields protoimpl.UnknownFields
  20. sizeCache protoimpl.SizeCache
  21. }
  22. func (x *ListTrackedSubscriptionRequest) Reset() {
  23. *x = ListTrackedSubscriptionRequest{}
  24. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[0]
  25. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  26. ms.StoreMessageInfo(mi)
  27. }
  28. func (x *ListTrackedSubscriptionRequest) String() string {
  29. return protoimpl.X.MessageStringOf(x)
  30. }
  31. func (*ListTrackedSubscriptionRequest) ProtoMessage() {}
  32. func (x *ListTrackedSubscriptionRequest) ProtoReflect() protoreflect.Message {
  33. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[0]
  34. if x != nil {
  35. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  36. if ms.LoadMessageInfo() == nil {
  37. ms.StoreMessageInfo(mi)
  38. }
  39. return ms
  40. }
  41. return mi.MessageOf(x)
  42. }
  43. // Deprecated: Use ListTrackedSubscriptionRequest.ProtoReflect.Descriptor instead.
  44. func (*ListTrackedSubscriptionRequest) Descriptor() ([]byte, []int) {
  45. return file_app_subscription_subscriptionmanager_command_command_proto_rawDescGZIP(), []int{0}
  46. }
  47. type ListTrackedSubscriptionResponse struct {
  48. state protoimpl.MessageState `protogen:"open.v1"`
  49. Names []string `protobuf:"bytes,1,rep,name=names,proto3" json:"names,omitempty"`
  50. unknownFields protoimpl.UnknownFields
  51. sizeCache protoimpl.SizeCache
  52. }
  53. func (x *ListTrackedSubscriptionResponse) Reset() {
  54. *x = ListTrackedSubscriptionResponse{}
  55. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[1]
  56. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  57. ms.StoreMessageInfo(mi)
  58. }
  59. func (x *ListTrackedSubscriptionResponse) String() string {
  60. return protoimpl.X.MessageStringOf(x)
  61. }
  62. func (*ListTrackedSubscriptionResponse) ProtoMessage() {}
  63. func (x *ListTrackedSubscriptionResponse) ProtoReflect() protoreflect.Message {
  64. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[1]
  65. if x != nil {
  66. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  67. if ms.LoadMessageInfo() == nil {
  68. ms.StoreMessageInfo(mi)
  69. }
  70. return ms
  71. }
  72. return mi.MessageOf(x)
  73. }
  74. // Deprecated: Use ListTrackedSubscriptionResponse.ProtoReflect.Descriptor instead.
  75. func (*ListTrackedSubscriptionResponse) Descriptor() ([]byte, []int) {
  76. return file_app_subscription_subscriptionmanager_command_command_proto_rawDescGZIP(), []int{1}
  77. }
  78. func (x *ListTrackedSubscriptionResponse) GetNames() []string {
  79. if x != nil {
  80. return x.Names
  81. }
  82. return nil
  83. }
  84. type AddTrackedSubscriptionRequest struct {
  85. state protoimpl.MessageState `protogen:"open.v1"`
  86. Source *subscription.ImportSource `protobuf:"bytes,1,opt,name=source,proto3" json:"source,omitempty"`
  87. unknownFields protoimpl.UnknownFields
  88. sizeCache protoimpl.SizeCache
  89. }
  90. func (x *AddTrackedSubscriptionRequest) Reset() {
  91. *x = AddTrackedSubscriptionRequest{}
  92. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[2]
  93. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  94. ms.StoreMessageInfo(mi)
  95. }
  96. func (x *AddTrackedSubscriptionRequest) String() string {
  97. return protoimpl.X.MessageStringOf(x)
  98. }
  99. func (*AddTrackedSubscriptionRequest) ProtoMessage() {}
  100. func (x *AddTrackedSubscriptionRequest) ProtoReflect() protoreflect.Message {
  101. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[2]
  102. if x != nil {
  103. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  104. if ms.LoadMessageInfo() == nil {
  105. ms.StoreMessageInfo(mi)
  106. }
  107. return ms
  108. }
  109. return mi.MessageOf(x)
  110. }
  111. // Deprecated: Use AddTrackedSubscriptionRequest.ProtoReflect.Descriptor instead.
  112. func (*AddTrackedSubscriptionRequest) Descriptor() ([]byte, []int) {
  113. return file_app_subscription_subscriptionmanager_command_command_proto_rawDescGZIP(), []int{2}
  114. }
  115. func (x *AddTrackedSubscriptionRequest) GetSource() *subscription.ImportSource {
  116. if x != nil {
  117. return x.Source
  118. }
  119. return nil
  120. }
  121. type AddTrackedSubscriptionResponse struct {
  122. state protoimpl.MessageState `protogen:"open.v1"`
  123. unknownFields protoimpl.UnknownFields
  124. sizeCache protoimpl.SizeCache
  125. }
  126. func (x *AddTrackedSubscriptionResponse) Reset() {
  127. *x = AddTrackedSubscriptionResponse{}
  128. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[3]
  129. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  130. ms.StoreMessageInfo(mi)
  131. }
  132. func (x *AddTrackedSubscriptionResponse) String() string {
  133. return protoimpl.X.MessageStringOf(x)
  134. }
  135. func (*AddTrackedSubscriptionResponse) ProtoMessage() {}
  136. func (x *AddTrackedSubscriptionResponse) ProtoReflect() protoreflect.Message {
  137. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[3]
  138. if x != nil {
  139. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  140. if ms.LoadMessageInfo() == nil {
  141. ms.StoreMessageInfo(mi)
  142. }
  143. return ms
  144. }
  145. return mi.MessageOf(x)
  146. }
  147. // Deprecated: Use AddTrackedSubscriptionResponse.ProtoReflect.Descriptor instead.
  148. func (*AddTrackedSubscriptionResponse) Descriptor() ([]byte, []int) {
  149. return file_app_subscription_subscriptionmanager_command_command_proto_rawDescGZIP(), []int{3}
  150. }
  151. type RemoveTrackedSubscriptionRequest struct {
  152. state protoimpl.MessageState `protogen:"open.v1"`
  153. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  154. unknownFields protoimpl.UnknownFields
  155. sizeCache protoimpl.SizeCache
  156. }
  157. func (x *RemoveTrackedSubscriptionRequest) Reset() {
  158. *x = RemoveTrackedSubscriptionRequest{}
  159. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[4]
  160. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  161. ms.StoreMessageInfo(mi)
  162. }
  163. func (x *RemoveTrackedSubscriptionRequest) String() string {
  164. return protoimpl.X.MessageStringOf(x)
  165. }
  166. func (*RemoveTrackedSubscriptionRequest) ProtoMessage() {}
  167. func (x *RemoveTrackedSubscriptionRequest) ProtoReflect() protoreflect.Message {
  168. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[4]
  169. if x != nil {
  170. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  171. if ms.LoadMessageInfo() == nil {
  172. ms.StoreMessageInfo(mi)
  173. }
  174. return ms
  175. }
  176. return mi.MessageOf(x)
  177. }
  178. // Deprecated: Use RemoveTrackedSubscriptionRequest.ProtoReflect.Descriptor instead.
  179. func (*RemoveTrackedSubscriptionRequest) Descriptor() ([]byte, []int) {
  180. return file_app_subscription_subscriptionmanager_command_command_proto_rawDescGZIP(), []int{4}
  181. }
  182. func (x *RemoveTrackedSubscriptionRequest) GetName() string {
  183. if x != nil {
  184. return x.Name
  185. }
  186. return ""
  187. }
  188. type RemoveTrackedSubscriptionResponse struct {
  189. state protoimpl.MessageState `protogen:"open.v1"`
  190. unknownFields protoimpl.UnknownFields
  191. sizeCache protoimpl.SizeCache
  192. }
  193. func (x *RemoveTrackedSubscriptionResponse) Reset() {
  194. *x = RemoveTrackedSubscriptionResponse{}
  195. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[5]
  196. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  197. ms.StoreMessageInfo(mi)
  198. }
  199. func (x *RemoveTrackedSubscriptionResponse) String() string {
  200. return protoimpl.X.MessageStringOf(x)
  201. }
  202. func (*RemoveTrackedSubscriptionResponse) ProtoMessage() {}
  203. func (x *RemoveTrackedSubscriptionResponse) ProtoReflect() protoreflect.Message {
  204. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[5]
  205. if x != nil {
  206. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  207. if ms.LoadMessageInfo() == nil {
  208. ms.StoreMessageInfo(mi)
  209. }
  210. return ms
  211. }
  212. return mi.MessageOf(x)
  213. }
  214. // Deprecated: Use RemoveTrackedSubscriptionResponse.ProtoReflect.Descriptor instead.
  215. func (*RemoveTrackedSubscriptionResponse) Descriptor() ([]byte, []int) {
  216. return file_app_subscription_subscriptionmanager_command_command_proto_rawDescGZIP(), []int{5}
  217. }
  218. type UpdateTrackedSubscriptionRequest struct {
  219. state protoimpl.MessageState `protogen:"open.v1"`
  220. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  221. unknownFields protoimpl.UnknownFields
  222. sizeCache protoimpl.SizeCache
  223. }
  224. func (x *UpdateTrackedSubscriptionRequest) Reset() {
  225. *x = UpdateTrackedSubscriptionRequest{}
  226. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[6]
  227. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  228. ms.StoreMessageInfo(mi)
  229. }
  230. func (x *UpdateTrackedSubscriptionRequest) String() string {
  231. return protoimpl.X.MessageStringOf(x)
  232. }
  233. func (*UpdateTrackedSubscriptionRequest) ProtoMessage() {}
  234. func (x *UpdateTrackedSubscriptionRequest) ProtoReflect() protoreflect.Message {
  235. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[6]
  236. if x != nil {
  237. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  238. if ms.LoadMessageInfo() == nil {
  239. ms.StoreMessageInfo(mi)
  240. }
  241. return ms
  242. }
  243. return mi.MessageOf(x)
  244. }
  245. // Deprecated: Use UpdateTrackedSubscriptionRequest.ProtoReflect.Descriptor instead.
  246. func (*UpdateTrackedSubscriptionRequest) Descriptor() ([]byte, []int) {
  247. return file_app_subscription_subscriptionmanager_command_command_proto_rawDescGZIP(), []int{6}
  248. }
  249. func (x *UpdateTrackedSubscriptionRequest) GetName() string {
  250. if x != nil {
  251. return x.Name
  252. }
  253. return ""
  254. }
  255. type UpdateTrackedSubscriptionResponse struct {
  256. state protoimpl.MessageState `protogen:"open.v1"`
  257. unknownFields protoimpl.UnknownFields
  258. sizeCache protoimpl.SizeCache
  259. }
  260. func (x *UpdateTrackedSubscriptionResponse) Reset() {
  261. *x = UpdateTrackedSubscriptionResponse{}
  262. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[7]
  263. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  264. ms.StoreMessageInfo(mi)
  265. }
  266. func (x *UpdateTrackedSubscriptionResponse) String() string {
  267. return protoimpl.X.MessageStringOf(x)
  268. }
  269. func (*UpdateTrackedSubscriptionResponse) ProtoMessage() {}
  270. func (x *UpdateTrackedSubscriptionResponse) ProtoReflect() protoreflect.Message {
  271. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[7]
  272. if x != nil {
  273. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  274. if ms.LoadMessageInfo() == nil {
  275. ms.StoreMessageInfo(mi)
  276. }
  277. return ms
  278. }
  279. return mi.MessageOf(x)
  280. }
  281. // Deprecated: Use UpdateTrackedSubscriptionResponse.ProtoReflect.Descriptor instead.
  282. func (*UpdateTrackedSubscriptionResponse) Descriptor() ([]byte, []int) {
  283. return file_app_subscription_subscriptionmanager_command_command_proto_rawDescGZIP(), []int{7}
  284. }
  285. type GetTrackedSubscriptionStatusRequest struct {
  286. state protoimpl.MessageState `protogen:"open.v1"`
  287. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  288. unknownFields protoimpl.UnknownFields
  289. sizeCache protoimpl.SizeCache
  290. }
  291. func (x *GetTrackedSubscriptionStatusRequest) Reset() {
  292. *x = GetTrackedSubscriptionStatusRequest{}
  293. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[8]
  294. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  295. ms.StoreMessageInfo(mi)
  296. }
  297. func (x *GetTrackedSubscriptionStatusRequest) String() string {
  298. return protoimpl.X.MessageStringOf(x)
  299. }
  300. func (*GetTrackedSubscriptionStatusRequest) ProtoMessage() {}
  301. func (x *GetTrackedSubscriptionStatusRequest) ProtoReflect() protoreflect.Message {
  302. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[8]
  303. if x != nil {
  304. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  305. if ms.LoadMessageInfo() == nil {
  306. ms.StoreMessageInfo(mi)
  307. }
  308. return ms
  309. }
  310. return mi.MessageOf(x)
  311. }
  312. // Deprecated: Use GetTrackedSubscriptionStatusRequest.ProtoReflect.Descriptor instead.
  313. func (*GetTrackedSubscriptionStatusRequest) Descriptor() ([]byte, []int) {
  314. return file_app_subscription_subscriptionmanager_command_command_proto_rawDescGZIP(), []int{8}
  315. }
  316. func (x *GetTrackedSubscriptionStatusRequest) GetName() string {
  317. if x != nil {
  318. return x.Name
  319. }
  320. return ""
  321. }
  322. type GetTrackedSubscriptionStatusResponse struct {
  323. state protoimpl.MessageState `protogen:"open.v1"`
  324. Status *subscription.TrackedSubscriptionStatus `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
  325. unknownFields protoimpl.UnknownFields
  326. sizeCache protoimpl.SizeCache
  327. }
  328. func (x *GetTrackedSubscriptionStatusResponse) Reset() {
  329. *x = GetTrackedSubscriptionStatusResponse{}
  330. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[9]
  331. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  332. ms.StoreMessageInfo(mi)
  333. }
  334. func (x *GetTrackedSubscriptionStatusResponse) String() string {
  335. return protoimpl.X.MessageStringOf(x)
  336. }
  337. func (*GetTrackedSubscriptionStatusResponse) ProtoMessage() {}
  338. func (x *GetTrackedSubscriptionStatusResponse) ProtoReflect() protoreflect.Message {
  339. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[9]
  340. if x != nil {
  341. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  342. if ms.LoadMessageInfo() == nil {
  343. ms.StoreMessageInfo(mi)
  344. }
  345. return ms
  346. }
  347. return mi.MessageOf(x)
  348. }
  349. // Deprecated: Use GetTrackedSubscriptionStatusResponse.ProtoReflect.Descriptor instead.
  350. func (*GetTrackedSubscriptionStatusResponse) Descriptor() ([]byte, []int) {
  351. return file_app_subscription_subscriptionmanager_command_command_proto_rawDescGZIP(), []int{9}
  352. }
  353. func (x *GetTrackedSubscriptionStatusResponse) GetStatus() *subscription.TrackedSubscriptionStatus {
  354. if x != nil {
  355. return x.Status
  356. }
  357. return nil
  358. }
  359. type Config struct {
  360. state protoimpl.MessageState `protogen:"open.v1"`
  361. unknownFields protoimpl.UnknownFields
  362. sizeCache protoimpl.SizeCache
  363. }
  364. func (x *Config) Reset() {
  365. *x = Config{}
  366. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[10]
  367. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  368. ms.StoreMessageInfo(mi)
  369. }
  370. func (x *Config) String() string {
  371. return protoimpl.X.MessageStringOf(x)
  372. }
  373. func (*Config) ProtoMessage() {}
  374. func (x *Config) ProtoReflect() protoreflect.Message {
  375. mi := &file_app_subscription_subscriptionmanager_command_command_proto_msgTypes[10]
  376. if x != nil {
  377. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  378. if ms.LoadMessageInfo() == nil {
  379. ms.StoreMessageInfo(mi)
  380. }
  381. return ms
  382. }
  383. return mi.MessageOf(x)
  384. }
  385. // Deprecated: Use Config.ProtoReflect.Descriptor instead.
  386. func (*Config) Descriptor() ([]byte, []int) {
  387. return file_app_subscription_subscriptionmanager_command_command_proto_rawDescGZIP(), []int{10}
  388. }
  389. var File_app_subscription_subscriptionmanager_command_command_proto protoreflect.FileDescriptor
  390. var file_app_subscription_subscriptionmanager_command_command_proto_rawDesc = string([]byte{
  391. 0x0a, 0x3a, 0x61, 0x70, 0x70, 0x2f, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
  392. 0x6f, 0x6e, 0x2f, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x6d,
  393. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2f, 0x63,
  394. 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x37, 0x76, 0x32,
  395. 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x73, 0x75, 0x62,
  396. 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72,
  397. 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2e, 0x63, 0x6f,
  398. 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x1a, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x70, 0x72,
  399. 0x6f, 0x74, 0x6f, 0x65, 0x78, 0x74, 0x2f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  400. 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1d, 0x61, 0x70, 0x70, 0x2f, 0x73, 0x75, 0x62,
  401. 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
  402. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x27, 0x61, 0x70, 0x70, 0x2f, 0x73, 0x75, 0x62, 0x73,
  403. 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
  404. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x70, 0x63, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22,
  405. 0x20, 0x0a, 0x1e, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x75,
  406. 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  407. 0x74, 0x22, 0x37, 0x0a, 0x1f, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x65, 0x64,
  408. 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70,
  409. 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x01, 0x20,
  410. 0x03, 0x28, 0x09, 0x52, 0x05, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x22, 0x62, 0x0a, 0x1d, 0x41, 0x64,
  411. 0x64, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
  412. 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x41, 0x0a, 0x06, 0x73,
  413. 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x76, 0x32,
  414. 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x73, 0x75, 0x62,
  415. 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74,
  416. 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x22, 0x20,
  417. 0x0a, 0x1e, 0x41, 0x64, 0x64, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73,
  418. 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  419. 0x22, 0x36, 0x0a, 0x20, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x65,
  420. 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71,
  421. 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01,
  422. 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x23, 0x0a, 0x21, 0x52, 0x65, 0x6d, 0x6f,
  423. 0x76, 0x65, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
  424. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x36, 0x0a,
  425. 0x20, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x75,
  426. 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  427. 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  428. 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x23, 0x0a, 0x21, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54,
  429. 0x72, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
  430. 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x39, 0x0a, 0x23, 0x47, 0x65,
  431. 0x74, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
  432. 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  433. 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  434. 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x76, 0x0a, 0x24, 0x47, 0x65, 0x74, 0x54, 0x72, 0x61, 0x63,
  435. 0x6b, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x53,
  436. 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4e, 0x0a,
  437. 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x36, 0x2e,
  438. 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x73,
  439. 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x54, 0x72, 0x61, 0x63,
  440. 0x6b, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x53,
  441. 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x30, 0x0a,
  442. 0x06, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x3a, 0x26, 0x82, 0xb5, 0x18, 0x22, 0x0a, 0x0b, 0x67,
  443. 0x72, 0x70, 0x63, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x13, 0x73, 0x75, 0x62, 0x73,
  444. 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x32,
  445. 0xc9, 0x08, 0x0a, 0x1a, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  446. 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xce,
  447. 0x01, 0x0a, 0x17, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x75,
  448. 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x57, 0x2e, 0x76, 0x32, 0x72,
  449. 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x73, 0x75, 0x62, 0x73,
  450. 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
  451. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2e, 0x63, 0x6f, 0x6d,
  452. 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x65, 0x64,
  453. 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75,
  454. 0x65, 0x73, 0x74, 0x1a, 0x58, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65,
  455. 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
  456. 0x6e, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x6d, 0x61,
  457. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x4c, 0x69,
  458. 0x73, 0x74, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
  459. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
  460. 0xcb, 0x01, 0x0a, 0x16, 0x41, 0x64, 0x64, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x75,
  461. 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x56, 0x2e, 0x76, 0x32, 0x72,
  462. 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x73, 0x75, 0x62, 0x73,
  463. 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
  464. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2e, 0x63, 0x6f, 0x6d,
  465. 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x41, 0x64, 0x64, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53,
  466. 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65,
  467. 0x73, 0x74, 0x1a, 0x57, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e,
  468. 0x61, 0x70, 0x70, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  469. 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x6d, 0x61, 0x6e,
  470. 0x61, 0x67, 0x65, 0x72, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x41, 0x64, 0x64,
  471. 0x54, 0x72, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
  472. 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0xd4, 0x01,
  473. 0x0a, 0x19, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53,
  474. 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x59, 0x2e, 0x76, 0x32,
  475. 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x73, 0x75, 0x62,
  476. 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72,
  477. 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2e, 0x63, 0x6f,
  478. 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x54, 0x72, 0x61, 0x63,
  479. 0x6b, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52,
  480. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x5a, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63,
  481. 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
  482. 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
  483. 0x6e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64,
  484. 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x75,
  485. 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  486. 0x73, 0x65, 0x22, 0x00, 0x12, 0xdd, 0x01, 0x0a, 0x1c, 0x47, 0x65, 0x74, 0x54, 0x72, 0x61, 0x63,
  487. 0x6b, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x53,
  488. 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x5c, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f,
  489. 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
  490. 0x69, 0x6f, 0x6e, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  491. 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e,
  492. 0x47, 0x65, 0x74, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72,
  493. 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75,
  494. 0x65, 0x73, 0x74, 0x1a, 0x5d, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65,
  495. 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
  496. 0x6e, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x6d, 0x61,
  497. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x47, 0x65,
  498. 0x74, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
  499. 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  500. 0x73, 0x65, 0x22, 0x00, 0x12, 0xd4, 0x01, 0x0a, 0x19, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54,
  501. 0x72, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
  502. 0x6f, 0x6e, 0x12, 0x59, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e,
  503. 0x61, 0x70, 0x70, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  504. 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x6d, 0x61, 0x6e,
  505. 0x61, 0x67, 0x65, 0x72, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x55, 0x70, 0x64,
  506. 0x61, 0x74, 0x65, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72,
  507. 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x5a, 0x2e,
  508. 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x73,
  509. 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x73, 0x75, 0x62, 0x73,
  510. 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2e,
  511. 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x72,
  512. 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
  513. 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0xc2, 0x01, 0x0a, 0x37,
  514. 0x63, 0x6f, 0x6d, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x73,
  515. 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x73, 0x75, 0x62, 0x73,
  516. 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2e,
  517. 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x50, 0x01, 0x5a, 0x4b, 0x67, 0x69, 0x74, 0x68, 0x75,
  518. 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x76, 0x32, 0x66, 0x6c, 0x79, 0x2f, 0x76, 0x32, 0x72, 0x61,
  519. 0x79, 0x2d, 0x63, 0x6f, 0x72, 0x65, 0x2f, 0x76, 0x35, 0x2f, 0x61, 0x70, 0x70, 0x2f, 0x73, 0x75,
  520. 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x73, 0x75, 0x62, 0x73, 0x63,
  521. 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x63,
  522. 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0xaa, 0x02, 0x37, 0x56, 0x32, 0x52, 0x61, 0x79, 0x2e, 0x43,
  523. 0x6f, 0x72, 0x65, 0x2e, 0x41, 0x70, 0x70, 0x2e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
  524. 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
  525. 0x6e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64,
  526. 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  527. })
  528. var (
  529. file_app_subscription_subscriptionmanager_command_command_proto_rawDescOnce sync.Once
  530. file_app_subscription_subscriptionmanager_command_command_proto_rawDescData []byte
  531. )
  532. func file_app_subscription_subscriptionmanager_command_command_proto_rawDescGZIP() []byte {
  533. file_app_subscription_subscriptionmanager_command_command_proto_rawDescOnce.Do(func() {
  534. file_app_subscription_subscriptionmanager_command_command_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_app_subscription_subscriptionmanager_command_command_proto_rawDesc), len(file_app_subscription_subscriptionmanager_command_command_proto_rawDesc)))
  535. })
  536. return file_app_subscription_subscriptionmanager_command_command_proto_rawDescData
  537. }
  538. var file_app_subscription_subscriptionmanager_command_command_proto_msgTypes = make([]protoimpl.MessageInfo, 11)
  539. var file_app_subscription_subscriptionmanager_command_command_proto_goTypes = []any{
  540. (*ListTrackedSubscriptionRequest)(nil), // 0: v2ray.core.app.subscription.subscriptionmanager.command.ListTrackedSubscriptionRequest
  541. (*ListTrackedSubscriptionResponse)(nil), // 1: v2ray.core.app.subscription.subscriptionmanager.command.ListTrackedSubscriptionResponse
  542. (*AddTrackedSubscriptionRequest)(nil), // 2: v2ray.core.app.subscription.subscriptionmanager.command.AddTrackedSubscriptionRequest
  543. (*AddTrackedSubscriptionResponse)(nil), // 3: v2ray.core.app.subscription.subscriptionmanager.command.AddTrackedSubscriptionResponse
  544. (*RemoveTrackedSubscriptionRequest)(nil), // 4: v2ray.core.app.subscription.subscriptionmanager.command.RemoveTrackedSubscriptionRequest
  545. (*RemoveTrackedSubscriptionResponse)(nil), // 5: v2ray.core.app.subscription.subscriptionmanager.command.RemoveTrackedSubscriptionResponse
  546. (*UpdateTrackedSubscriptionRequest)(nil), // 6: v2ray.core.app.subscription.subscriptionmanager.command.UpdateTrackedSubscriptionRequest
  547. (*UpdateTrackedSubscriptionResponse)(nil), // 7: v2ray.core.app.subscription.subscriptionmanager.command.UpdateTrackedSubscriptionResponse
  548. (*GetTrackedSubscriptionStatusRequest)(nil), // 8: v2ray.core.app.subscription.subscriptionmanager.command.GetTrackedSubscriptionStatusRequest
  549. (*GetTrackedSubscriptionStatusResponse)(nil), // 9: v2ray.core.app.subscription.subscriptionmanager.command.GetTrackedSubscriptionStatusResponse
  550. (*Config)(nil), // 10: v2ray.core.app.subscription.subscriptionmanager.command.Config
  551. (*subscription.ImportSource)(nil), // 11: v2ray.core.app.subscription.ImportSource
  552. (*subscription.TrackedSubscriptionStatus)(nil), // 12: v2ray.core.app.subscription.TrackedSubscriptionStatus
  553. }
  554. var file_app_subscription_subscriptionmanager_command_command_proto_depIdxs = []int32{
  555. 11, // 0: v2ray.core.app.subscription.subscriptionmanager.command.AddTrackedSubscriptionRequest.source:type_name -> v2ray.core.app.subscription.ImportSource
  556. 12, // 1: v2ray.core.app.subscription.subscriptionmanager.command.GetTrackedSubscriptionStatusResponse.status:type_name -> v2ray.core.app.subscription.TrackedSubscriptionStatus
  557. 0, // 2: v2ray.core.app.subscription.subscriptionmanager.command.SubscriptionManagerService.ListTrackedSubscription:input_type -> v2ray.core.app.subscription.subscriptionmanager.command.ListTrackedSubscriptionRequest
  558. 2, // 3: v2ray.core.app.subscription.subscriptionmanager.command.SubscriptionManagerService.AddTrackedSubscription:input_type -> v2ray.core.app.subscription.subscriptionmanager.command.AddTrackedSubscriptionRequest
  559. 4, // 4: v2ray.core.app.subscription.subscriptionmanager.command.SubscriptionManagerService.RemoveTrackedSubscription:input_type -> v2ray.core.app.subscription.subscriptionmanager.command.RemoveTrackedSubscriptionRequest
  560. 8, // 5: v2ray.core.app.subscription.subscriptionmanager.command.SubscriptionManagerService.GetTrackedSubscriptionStatus:input_type -> v2ray.core.app.subscription.subscriptionmanager.command.GetTrackedSubscriptionStatusRequest
  561. 6, // 6: v2ray.core.app.subscription.subscriptionmanager.command.SubscriptionManagerService.UpdateTrackedSubscription:input_type -> v2ray.core.app.subscription.subscriptionmanager.command.UpdateTrackedSubscriptionRequest
  562. 1, // 7: v2ray.core.app.subscription.subscriptionmanager.command.SubscriptionManagerService.ListTrackedSubscription:output_type -> v2ray.core.app.subscription.subscriptionmanager.command.ListTrackedSubscriptionResponse
  563. 3, // 8: v2ray.core.app.subscription.subscriptionmanager.command.SubscriptionManagerService.AddTrackedSubscription:output_type -> v2ray.core.app.subscription.subscriptionmanager.command.AddTrackedSubscriptionResponse
  564. 5, // 9: v2ray.core.app.subscription.subscriptionmanager.command.SubscriptionManagerService.RemoveTrackedSubscription:output_type -> v2ray.core.app.subscription.subscriptionmanager.command.RemoveTrackedSubscriptionResponse
  565. 9, // 10: v2ray.core.app.subscription.subscriptionmanager.command.SubscriptionManagerService.GetTrackedSubscriptionStatus:output_type -> v2ray.core.app.subscription.subscriptionmanager.command.GetTrackedSubscriptionStatusResponse
  566. 7, // 11: v2ray.core.app.subscription.subscriptionmanager.command.SubscriptionManagerService.UpdateTrackedSubscription:output_type -> v2ray.core.app.subscription.subscriptionmanager.command.UpdateTrackedSubscriptionResponse
  567. 7, // [7:12] is the sub-list for method output_type
  568. 2, // [2:7] is the sub-list for method input_type
  569. 2, // [2:2] is the sub-list for extension type_name
  570. 2, // [2:2] is the sub-list for extension extendee
  571. 0, // [0:2] is the sub-list for field type_name
  572. }
  573. func init() { file_app_subscription_subscriptionmanager_command_command_proto_init() }
  574. func file_app_subscription_subscriptionmanager_command_command_proto_init() {
  575. if File_app_subscription_subscriptionmanager_command_command_proto != nil {
  576. return
  577. }
  578. type x struct{}
  579. out := protoimpl.TypeBuilder{
  580. File: protoimpl.DescBuilder{
  581. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  582. RawDescriptor: unsafe.Slice(unsafe.StringData(file_app_subscription_subscriptionmanager_command_command_proto_rawDesc), len(file_app_subscription_subscriptionmanager_command_command_proto_rawDesc)),
  583. NumEnums: 0,
  584. NumMessages: 11,
  585. NumExtensions: 0,
  586. NumServices: 1,
  587. },
  588. GoTypes: file_app_subscription_subscriptionmanager_command_command_proto_goTypes,
  589. DependencyIndexes: file_app_subscription_subscriptionmanager_command_command_proto_depIdxs,
  590. MessageInfos: file_app_subscription_subscriptionmanager_command_command_proto_msgTypes,
  591. }.Build()
  592. File_app_subscription_subscriptionmanager_command_command_proto = out.File
  593. file_app_subscription_subscriptionmanager_command_command_proto_goTypes = nil
  594. file_app_subscription_subscriptionmanager_command_command_proto_depIdxs = nil
  595. }