config.pb.go 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469
  1. package proxyman
  2. import proto "github.com/golang/protobuf/proto"
  3. import fmt "fmt"
  4. import math "math"
  5. import v2ray_core_common_net "v2ray.com/core/common/net"
  6. import v2ray_core_common_net1 "v2ray.com/core/common/net"
  7. import v2ray_core_transport_internet "v2ray.com/core/transport/internet"
  8. import v2ray_core_internet_domainsocket "v2ray.com/core/transport/internet/domainsocket"
  9. import v2ray_core_common_serial "v2ray.com/core/common/serial"
  10. // Reference imports to suppress errors if they are not otherwise used.
  11. var _ = proto.Marshal
  12. var _ = fmt.Errorf
  13. var _ = math.Inf
  14. // This is a compile-time assertion to ensure that this generated file
  15. // is compatible with the proto package it is being compiled against.
  16. // A compilation error at this line likely means your copy of the
  17. // proto package needs to be updated.
  18. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  19. type KnownProtocols int32
  20. const (
  21. KnownProtocols_HTTP KnownProtocols = 0
  22. KnownProtocols_TLS KnownProtocols = 1
  23. )
  24. var KnownProtocols_name = map[int32]string{
  25. 0: "HTTP",
  26. 1: "TLS",
  27. }
  28. var KnownProtocols_value = map[string]int32{
  29. "HTTP": 0,
  30. "TLS": 1,
  31. }
  32. func (x KnownProtocols) String() string {
  33. return proto.EnumName(KnownProtocols_name, int32(x))
  34. }
  35. func (KnownProtocols) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
  36. type AllocationStrategy_Type int32
  37. const (
  38. // Always allocate all connection handlers.
  39. AllocationStrategy_Always AllocationStrategy_Type = 0
  40. // Randomly allocate specific range of handlers.
  41. AllocationStrategy_Random AllocationStrategy_Type = 1
  42. // External. Not supported yet.
  43. AllocationStrategy_External AllocationStrategy_Type = 2
  44. )
  45. var AllocationStrategy_Type_name = map[int32]string{
  46. 0: "Always",
  47. 1: "Random",
  48. 2: "External",
  49. }
  50. var AllocationStrategy_Type_value = map[string]int32{
  51. "Always": 0,
  52. "Random": 1,
  53. "External": 2,
  54. }
  55. func (x AllocationStrategy_Type) String() string {
  56. return proto.EnumName(AllocationStrategy_Type_name, int32(x))
  57. }
  58. func (AllocationStrategy_Type) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{1, 0} }
  59. type InboundConfig struct {
  60. }
  61. func (m *InboundConfig) Reset() { *m = InboundConfig{} }
  62. func (m *InboundConfig) String() string { return proto.CompactTextString(m) }
  63. func (*InboundConfig) ProtoMessage() {}
  64. func (*InboundConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
  65. type AllocationStrategy struct {
  66. Type AllocationStrategy_Type `protobuf:"varint,1,opt,name=type,enum=v2ray.core.app.proxyman.AllocationStrategy_Type" json:"type,omitempty"`
  67. // Number of handlers (ports) running in parallel.
  68. // Default value is 3 if unset.
  69. Concurrency *AllocationStrategy_AllocationStrategyConcurrency `protobuf:"bytes,2,opt,name=concurrency" json:"concurrency,omitempty"`
  70. // Number of minutes before a handler is regenerated.
  71. // Default value is 5 if unset.
  72. Refresh *AllocationStrategy_AllocationStrategyRefresh `protobuf:"bytes,3,opt,name=refresh" json:"refresh,omitempty"`
  73. }
  74. func (m *AllocationStrategy) Reset() { *m = AllocationStrategy{} }
  75. func (m *AllocationStrategy) String() string { return proto.CompactTextString(m) }
  76. func (*AllocationStrategy) ProtoMessage() {}
  77. func (*AllocationStrategy) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
  78. func (m *AllocationStrategy) GetType() AllocationStrategy_Type {
  79. if m != nil {
  80. return m.Type
  81. }
  82. return AllocationStrategy_Always
  83. }
  84. func (m *AllocationStrategy) GetConcurrency() *AllocationStrategy_AllocationStrategyConcurrency {
  85. if m != nil {
  86. return m.Concurrency
  87. }
  88. return nil
  89. }
  90. func (m *AllocationStrategy) GetRefresh() *AllocationStrategy_AllocationStrategyRefresh {
  91. if m != nil {
  92. return m.Refresh
  93. }
  94. return nil
  95. }
  96. type AllocationStrategy_AllocationStrategyConcurrency struct {
  97. Value uint32 `protobuf:"varint,1,opt,name=value" json:"value,omitempty"`
  98. }
  99. func (m *AllocationStrategy_AllocationStrategyConcurrency) Reset() {
  100. *m = AllocationStrategy_AllocationStrategyConcurrency{}
  101. }
  102. func (m *AllocationStrategy_AllocationStrategyConcurrency) String() string {
  103. return proto.CompactTextString(m)
  104. }
  105. func (*AllocationStrategy_AllocationStrategyConcurrency) ProtoMessage() {}
  106. func (*AllocationStrategy_AllocationStrategyConcurrency) Descriptor() ([]byte, []int) {
  107. return fileDescriptor0, []int{1, 0}
  108. }
  109. func (m *AllocationStrategy_AllocationStrategyConcurrency) GetValue() uint32 {
  110. if m != nil {
  111. return m.Value
  112. }
  113. return 0
  114. }
  115. type AllocationStrategy_AllocationStrategyRefresh struct {
  116. Value uint32 `protobuf:"varint,1,opt,name=value" json:"value,omitempty"`
  117. }
  118. func (m *AllocationStrategy_AllocationStrategyRefresh) Reset() {
  119. *m = AllocationStrategy_AllocationStrategyRefresh{}
  120. }
  121. func (m *AllocationStrategy_AllocationStrategyRefresh) String() string {
  122. return proto.CompactTextString(m)
  123. }
  124. func (*AllocationStrategy_AllocationStrategyRefresh) ProtoMessage() {}
  125. func (*AllocationStrategy_AllocationStrategyRefresh) Descriptor() ([]byte, []int) {
  126. return fileDescriptor0, []int{1, 1}
  127. }
  128. func (m *AllocationStrategy_AllocationStrategyRefresh) GetValue() uint32 {
  129. if m != nil {
  130. return m.Value
  131. }
  132. return 0
  133. }
  134. type ReceiverConfig struct {
  135. PortRange *v2ray_core_common_net1.PortRange `protobuf:"bytes,1,opt,name=port_range,json=portRange" json:"port_range,omitempty"`
  136. Listen *v2ray_core_common_net.IPOrDomain `protobuf:"bytes,2,opt,name=listen" json:"listen,omitempty"`
  137. AllocationStrategy *AllocationStrategy `protobuf:"bytes,3,opt,name=allocation_strategy,json=allocationStrategy" json:"allocation_strategy,omitempty"`
  138. StreamSettings *v2ray_core_transport_internet.StreamConfig `protobuf:"bytes,4,opt,name=stream_settings,json=streamSettings" json:"stream_settings,omitempty"`
  139. ReceiveOriginalDestination bool `protobuf:"varint,5,opt,name=receive_original_destination,json=receiveOriginalDestination" json:"receive_original_destination,omitempty"`
  140. DomainOverride []KnownProtocols `protobuf:"varint,7,rep,packed,name=domain_override,json=domainOverride,enum=v2ray.core.app.proxyman.KnownProtocols" json:"domain_override,omitempty"`
  141. }
  142. func (m *ReceiverConfig) Reset() { *m = ReceiverConfig{} }
  143. func (m *ReceiverConfig) String() string { return proto.CompactTextString(m) }
  144. func (*ReceiverConfig) ProtoMessage() {}
  145. func (*ReceiverConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
  146. func (m *ReceiverConfig) GetPortRange() *v2ray_core_common_net1.PortRange {
  147. if m != nil {
  148. return m.PortRange
  149. }
  150. return nil
  151. }
  152. func (m *ReceiverConfig) GetListen() *v2ray_core_common_net.IPOrDomain {
  153. if m != nil {
  154. return m.Listen
  155. }
  156. return nil
  157. }
  158. func (m *ReceiverConfig) GetAllocationStrategy() *AllocationStrategy {
  159. if m != nil {
  160. return m.AllocationStrategy
  161. }
  162. return nil
  163. }
  164. func (m *ReceiverConfig) GetStreamSettings() *v2ray_core_transport_internet.StreamConfig {
  165. if m != nil {
  166. return m.StreamSettings
  167. }
  168. return nil
  169. }
  170. func (m *ReceiverConfig) GetReceiveOriginalDestination() bool {
  171. if m != nil {
  172. return m.ReceiveOriginalDestination
  173. }
  174. return false
  175. }
  176. func (m *ReceiverConfig) GetDomainOverride() []KnownProtocols {
  177. if m != nil {
  178. return m.DomainOverride
  179. }
  180. return nil
  181. }
  182. type UnixReceiverConfig struct {
  183. DomainSockSettings *v2ray_core_internet_domainsocket.DomainSocketSettings `protobuf:"bytes,2,opt,name=domainSockSettings" json:"domainSockSettings,omitempty"`
  184. StreamSettings *v2ray_core_transport_internet.StreamConfig `protobuf:"bytes,4,opt,name=stream_settings,json=streamSettings" json:"stream_settings,omitempty"`
  185. DomainOverride []KnownProtocols `protobuf:"varint,7,rep,packed,name=domain_override,json=domainOverride,enum=v2ray.core.app.proxyman.KnownProtocols" json:"domain_override,omitempty"`
  186. }
  187. func (m *UnixReceiverConfig) Reset() { *m = UnixReceiverConfig{} }
  188. func (m *UnixReceiverConfig) String() string { return proto.CompactTextString(m) }
  189. func (*UnixReceiverConfig) ProtoMessage() {}
  190. func (*UnixReceiverConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
  191. func (m *UnixReceiverConfig) GetDomainSockSettings() *v2ray_core_internet_domainsocket.DomainSocketSettings {
  192. if m != nil {
  193. return m.DomainSockSettings
  194. }
  195. return nil
  196. }
  197. func (m *UnixReceiverConfig) GetStreamSettings() *v2ray_core_transport_internet.StreamConfig {
  198. if m != nil {
  199. return m.StreamSettings
  200. }
  201. return nil
  202. }
  203. func (m *UnixReceiverConfig) GetDomainOverride() []KnownProtocols {
  204. if m != nil {
  205. return m.DomainOverride
  206. }
  207. return nil
  208. }
  209. type InboundHandlerConfig struct {
  210. Tag string `protobuf:"bytes,1,opt,name=tag" json:"tag,omitempty"`
  211. ReceiverSettings *v2ray_core_common_serial.TypedMessage `protobuf:"bytes,2,opt,name=receiver_settings,json=receiverSettings" json:"receiver_settings,omitempty"`
  212. ProxySettings *v2ray_core_common_serial.TypedMessage `protobuf:"bytes,3,opt,name=proxy_settings,json=proxySettings" json:"proxy_settings,omitempty"`
  213. }
  214. func (m *InboundHandlerConfig) Reset() { *m = InboundHandlerConfig{} }
  215. func (m *InboundHandlerConfig) String() string { return proto.CompactTextString(m) }
  216. func (*InboundHandlerConfig) ProtoMessage() {}
  217. func (*InboundHandlerConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
  218. func (m *InboundHandlerConfig) GetTag() string {
  219. if m != nil {
  220. return m.Tag
  221. }
  222. return ""
  223. }
  224. func (m *InboundHandlerConfig) GetReceiverSettings() *v2ray_core_common_serial.TypedMessage {
  225. if m != nil {
  226. return m.ReceiverSettings
  227. }
  228. return nil
  229. }
  230. func (m *InboundHandlerConfig) GetProxySettings() *v2ray_core_common_serial.TypedMessage {
  231. if m != nil {
  232. return m.ProxySettings
  233. }
  234. return nil
  235. }
  236. type OutboundConfig struct {
  237. }
  238. func (m *OutboundConfig) Reset() { *m = OutboundConfig{} }
  239. func (m *OutboundConfig) String() string { return proto.CompactTextString(m) }
  240. func (*OutboundConfig) ProtoMessage() {}
  241. func (*OutboundConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
  242. type SenderConfig struct {
  243. // Send traffic through the given IP. Only IP is allowed.
  244. Via *v2ray_core_common_net.IPOrDomain `protobuf:"bytes,1,opt,name=via" json:"via,omitempty"`
  245. StreamSettings *v2ray_core_transport_internet.StreamConfig `protobuf:"bytes,2,opt,name=stream_settings,json=streamSettings" json:"stream_settings,omitempty"`
  246. ProxySettings *v2ray_core_transport_internet.ProxyConfig `protobuf:"bytes,3,opt,name=proxy_settings,json=proxySettings" json:"proxy_settings,omitempty"`
  247. MultiplexSettings *MultiplexingConfig `protobuf:"bytes,4,opt,name=multiplex_settings,json=multiplexSettings" json:"multiplex_settings,omitempty"`
  248. }
  249. func (m *SenderConfig) Reset() { *m = SenderConfig{} }
  250. func (m *SenderConfig) String() string { return proto.CompactTextString(m) }
  251. func (*SenderConfig) ProtoMessage() {}
  252. func (*SenderConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
  253. func (m *SenderConfig) GetVia() *v2ray_core_common_net.IPOrDomain {
  254. if m != nil {
  255. return m.Via
  256. }
  257. return nil
  258. }
  259. func (m *SenderConfig) GetStreamSettings() *v2ray_core_transport_internet.StreamConfig {
  260. if m != nil {
  261. return m.StreamSettings
  262. }
  263. return nil
  264. }
  265. func (m *SenderConfig) GetProxySettings() *v2ray_core_transport_internet.ProxyConfig {
  266. if m != nil {
  267. return m.ProxySettings
  268. }
  269. return nil
  270. }
  271. func (m *SenderConfig) GetMultiplexSettings() *MultiplexingConfig {
  272. if m != nil {
  273. return m.MultiplexSettings
  274. }
  275. return nil
  276. }
  277. type UnixSenderConfig struct {
  278. DomainSockSettings *v2ray_core_internet_domainsocket.DomainSocketSettings `protobuf:"bytes,1,opt,name=domainSockSettings" json:"domainSockSettings,omitempty"`
  279. StreamSettings *v2ray_core_transport_internet.StreamConfig `protobuf:"bytes,2,opt,name=stream_settings,json=streamSettings" json:"stream_settings,omitempty"`
  280. ProxySettings *v2ray_core_transport_internet.ProxyConfig `protobuf:"bytes,3,opt,name=proxy_settings,json=proxySettings" json:"proxy_settings,omitempty"`
  281. MultiplexSettings *MultiplexingConfig `protobuf:"bytes,4,opt,name=multiplex_settings,json=multiplexSettings" json:"multiplex_settings,omitempty"`
  282. }
  283. func (m *UnixSenderConfig) Reset() { *m = UnixSenderConfig{} }
  284. func (m *UnixSenderConfig) String() string { return proto.CompactTextString(m) }
  285. func (*UnixSenderConfig) ProtoMessage() {}
  286. func (*UnixSenderConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
  287. func (m *UnixSenderConfig) GetDomainSockSettings() *v2ray_core_internet_domainsocket.DomainSocketSettings {
  288. if m != nil {
  289. return m.DomainSockSettings
  290. }
  291. return nil
  292. }
  293. func (m *UnixSenderConfig) GetStreamSettings() *v2ray_core_transport_internet.StreamConfig {
  294. if m != nil {
  295. return m.StreamSettings
  296. }
  297. return nil
  298. }
  299. func (m *UnixSenderConfig) GetProxySettings() *v2ray_core_transport_internet.ProxyConfig {
  300. if m != nil {
  301. return m.ProxySettings
  302. }
  303. return nil
  304. }
  305. func (m *UnixSenderConfig) GetMultiplexSettings() *MultiplexingConfig {
  306. if m != nil {
  307. return m.MultiplexSettings
  308. }
  309. return nil
  310. }
  311. type MultiplexingConfig struct {
  312. // Whether or not Mux is enabled.
  313. Enabled bool `protobuf:"varint,1,opt,name=enabled" json:"enabled,omitempty"`
  314. // Max number of concurrent connections that one Mux connection can handle.
  315. Concurrency uint32 `protobuf:"varint,2,opt,name=concurrency" json:"concurrency,omitempty"`
  316. }
  317. func (m *MultiplexingConfig) Reset() { *m = MultiplexingConfig{} }
  318. func (m *MultiplexingConfig) String() string { return proto.CompactTextString(m) }
  319. func (*MultiplexingConfig) ProtoMessage() {}
  320. func (*MultiplexingConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} }
  321. func (m *MultiplexingConfig) GetEnabled() bool {
  322. if m != nil {
  323. return m.Enabled
  324. }
  325. return false
  326. }
  327. func (m *MultiplexingConfig) GetConcurrency() uint32 {
  328. if m != nil {
  329. return m.Concurrency
  330. }
  331. return 0
  332. }
  333. func init() {
  334. proto.RegisterType((*InboundConfig)(nil), "v2ray.core.app.proxyman.InboundConfig")
  335. proto.RegisterType((*AllocationStrategy)(nil), "v2ray.core.app.proxyman.AllocationStrategy")
  336. proto.RegisterType((*AllocationStrategy_AllocationStrategyConcurrency)(nil), "v2ray.core.app.proxyman.AllocationStrategy.AllocationStrategyConcurrency")
  337. proto.RegisterType((*AllocationStrategy_AllocationStrategyRefresh)(nil), "v2ray.core.app.proxyman.AllocationStrategy.AllocationStrategyRefresh")
  338. proto.RegisterType((*ReceiverConfig)(nil), "v2ray.core.app.proxyman.ReceiverConfig")
  339. proto.RegisterType((*UnixReceiverConfig)(nil), "v2ray.core.app.proxyman.UnixReceiverConfig")
  340. proto.RegisterType((*InboundHandlerConfig)(nil), "v2ray.core.app.proxyman.InboundHandlerConfig")
  341. proto.RegisterType((*OutboundConfig)(nil), "v2ray.core.app.proxyman.OutboundConfig")
  342. proto.RegisterType((*SenderConfig)(nil), "v2ray.core.app.proxyman.SenderConfig")
  343. proto.RegisterType((*UnixSenderConfig)(nil), "v2ray.core.app.proxyman.UnixSenderConfig")
  344. proto.RegisterType((*MultiplexingConfig)(nil), "v2ray.core.app.proxyman.MultiplexingConfig")
  345. proto.RegisterEnum("v2ray.core.app.proxyman.KnownProtocols", KnownProtocols_name, KnownProtocols_value)
  346. proto.RegisterEnum("v2ray.core.app.proxyman.AllocationStrategy_Type", AllocationStrategy_Type_name, AllocationStrategy_Type_value)
  347. }
  348. func init() { proto.RegisterFile("v2ray.com/core/app/proxyman/config.proto", fileDescriptor0) }
  349. var fileDescriptor0 = []byte{
  350. // 866 bytes of a gzipped FileDescriptorProto
  351. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x56, 0xdd, 0x6e, 0x1b, 0x45,
  352. 0x14, 0xee, 0x7a, 0x1d, 0xdb, 0x3d, 0x69, 0x9c, 0xed, 0x50, 0xa9, 0xc6, 0x80, 0x64, 0x0c, 0xa2,
  353. 0x56, 0x41, 0xeb, 0xe2, 0x0a, 0x24, 0xc4, 0x05, 0x84, 0xa4, 0x52, 0x13, 0x88, 0x62, 0xc6, 0x86,
  354. 0x8b, 0x0a, 0xc9, 0x9a, 0xec, 0x4e, 0xcc, 0x28, 0xbb, 0x33, 0xab, 0x99, 0xb1, 0x9b, 0x7d, 0x25,
  355. 0x9e, 0x81, 0x0b, 0x2e, 0xb9, 0xe0, 0x09, 0x78, 0x19, 0xd0, 0xee, 0xcc, 0x6e, 0xfc, 0xdb, 0x12,
  356. 0x55, 0xe1, 0xa6, 0x77, 0xb3, 0xf6, 0xf7, 0x7d, 0x73, 0xce, 0x77, 0x7e, 0x34, 0xd0, 0x9b, 0x0f,
  357. 0x24, 0x49, 0xfd, 0x40, 0xc4, 0xfd, 0x40, 0x48, 0xda, 0x27, 0x49, 0xd2, 0x4f, 0xa4, 0xb8, 0x4a,
  358. 0x63, 0xc2, 0xfb, 0x81, 0xe0, 0x17, 0x6c, 0xea, 0x27, 0x52, 0x68, 0x81, 0x1e, 0x16, 0x48, 0x49,
  359. 0x7d, 0x92, 0x24, 0x7e, 0x81, 0x6a, 0x3f, 0x5a, 0x91, 0x08, 0x44, 0x1c, 0x0b, 0xde, 0xe7, 0x54,
  360. 0xf7, 0x49, 0x18, 0x4a, 0xaa, 0x94, 0x51, 0x68, 0x7f, 0xbc, 0x1d, 0x98, 0x08, 0xa9, 0x2d, 0xca,
  361. 0x5f, 0x41, 0x69, 0x49, 0xb8, 0xca, 0xfe, 0xef, 0x33, 0xae, 0xa9, 0xcc, 0xd0, 0x8b, 0x71, 0xb5,
  362. 0xbf, 0x7e, 0x3d, 0x3e, 0x14, 0x31, 0x61, 0x5c, 0x89, 0xe0, 0x72, 0x95, 0xfc, 0x64, 0x73, 0x48,
  363. 0x8a, 0x4a, 0x46, 0xa2, 0xbe, 0x4e, 0x13, 0x1a, 0x4e, 0x62, 0xaa, 0x14, 0x99, 0x52, 0xc3, 0xe8,
  364. 0xee, 0xc3, 0xde, 0x31, 0x3f, 0x17, 0x33, 0x1e, 0x1e, 0xe6, 0x42, 0xdd, 0x3f, 0x5c, 0x40, 0x07,
  365. 0x51, 0x24, 0x02, 0xa2, 0x99, 0xe0, 0x23, 0x2d, 0x89, 0xa6, 0xd3, 0x14, 0x1d, 0x41, 0x35, 0xa3,
  366. 0xb7, 0x9c, 0x8e, 0xd3, 0x6b, 0x0e, 0x9e, 0xf8, 0x5b, 0xdc, 0xf3, 0xd7, 0xa9, 0xfe, 0x38, 0x4d,
  367. 0x28, 0xce, 0xd9, 0xe8, 0x12, 0x76, 0x03, 0xc1, 0x83, 0x99, 0x94, 0x94, 0x07, 0x69, 0xab, 0xd2,
  368. 0x71, 0x7a, 0xbb, 0x83, 0xe3, 0x9b, 0x88, 0xad, 0xff, 0x74, 0x78, 0x2d, 0x88, 0x17, 0xd5, 0xd1,
  369. 0x04, 0xea, 0x92, 0x5e, 0x48, 0xaa, 0x7e, 0x6d, 0xb9, 0xf9, 0x45, 0xcf, 0xde, 0xec, 0x22, 0x6c,
  370. 0xc4, 0x70, 0xa1, 0xda, 0xfe, 0x02, 0x3e, 0x78, 0x65, 0x38, 0xe8, 0x01, 0xec, 0xcc, 0x49, 0x34,
  371. 0x33, 0xae, 0xed, 0x61, 0xf3, 0xd1, 0xfe, 0x1c, 0xde, 0xdd, 0x2a, 0xbe, 0x99, 0xd2, 0xfd, 0x0c,
  372. 0xaa, 0x99, 0x8b, 0x08, 0xa0, 0x76, 0x10, 0xbd, 0x24, 0xa9, 0xf2, 0xee, 0x64, 0x67, 0x4c, 0x78,
  373. 0x28, 0x62, 0xcf, 0x41, 0xf7, 0xa0, 0xf1, 0xec, 0x2a, 0xeb, 0x0e, 0x12, 0x79, 0x95, 0xee, 0xdf,
  374. 0x2e, 0x34, 0x31, 0x0d, 0x28, 0x9b, 0x53, 0x69, 0xaa, 0x8a, 0xbe, 0x01, 0xc8, 0x7a, 0x68, 0x22,
  375. 0x09, 0x9f, 0x1a, 0xed, 0xdd, 0x41, 0x67, 0xd1, 0x0e, 0xd3, 0x29, 0x3e, 0xa7, 0xda, 0x1f, 0x0a,
  376. 0xa9, 0x71, 0x86, 0xc3, 0x77, 0x93, 0xe2, 0x88, 0xbe, 0x82, 0x5a, 0xc4, 0x94, 0xa6, 0xdc, 0x16,
  377. 0xed, 0xc3, 0x2d, 0xe4, 0xe3, 0xe1, 0x99, 0x3c, 0xca, 0xfb, 0x13, 0x5b, 0x02, 0xfa, 0x05, 0xde,
  378. 0x21, 0x65, 0xbe, 0x13, 0x65, 0x13, 0xb6, 0x35, 0xf9, 0xf4, 0x06, 0x35, 0xc1, 0x88, 0xac, 0x37,
  379. 0xe6, 0x18, 0xf6, 0x95, 0x96, 0x94, 0xc4, 0x13, 0x45, 0xb5, 0x66, 0x7c, 0xaa, 0x5a, 0xd5, 0x75,
  380. 0xe5, 0x72, 0x8a, 0xfc, 0x62, 0x8a, 0xfc, 0x51, 0xce, 0x32, 0xfe, 0xe0, 0xa6, 0xd1, 0x18, 0x59,
  381. 0x09, 0xf4, 0x2d, 0xbc, 0x2f, 0x8d, 0x83, 0x13, 0x21, 0xd9, 0x94, 0x71, 0x12, 0x4d, 0x42, 0xaa,
  382. 0x34, 0xe3, 0xf9, 0xed, 0xad, 0x9d, 0x8e, 0xd3, 0x6b, 0xe0, 0xb6, 0xc5, 0x9c, 0x59, 0xc8, 0xd1,
  383. 0x35, 0x02, 0x0d, 0x61, 0xdf, 0xcc, 0xe9, 0x44, 0xcc, 0xa9, 0x94, 0x2c, 0xa4, 0xad, 0x7a, 0xc7,
  384. 0xed, 0x35, 0x07, 0x8f, 0xb6, 0x66, 0xfc, 0x3d, 0x17, 0x2f, 0xf9, 0x30, 0x1b, 0xcb, 0x40, 0x44,
  385. 0x0a, 0x37, 0x0d, 0xff, 0xcc, 0xd2, 0x4f, 0xaa, 0x8d, 0x9a, 0x57, 0xef, 0xfe, 0x5e, 0x01, 0xf4,
  386. 0x13, 0x67, 0x57, 0x2b, 0x05, 0xbe, 0x00, 0x64, 0xe0, 0x23, 0x11, 0x5c, 0x16, 0x69, 0xd8, 0x5a,
  387. 0x7d, 0xb9, 0x78, 0x63, 0x99, 0xff, 0xe2, 0x16, 0xf1, 0x8f, 0x4a, 0x2e, 0xd5, 0x05, 0x1b, 0x6f,
  388. 0x50, 0xbc, 0x25, 0xbb, 0x6f, 0xc3, 0x2c, 0xc7, 0xab, 0x9c, 0x54, 0x1b, 0xae, 0x57, 0x3d, 0xa9,
  389. 0x36, 0x76, 0xbc, 0x9a, 0xb5, 0xef, 0x2f, 0x07, 0x1e, 0xd8, 0x85, 0xf7, 0x9c, 0xf0, 0x30, 0x2a,
  390. 0x0d, 0xf4, 0xc0, 0xd5, 0x64, 0x9a, 0x8f, 0xc6, 0x5d, 0x9c, 0x1d, 0xd1, 0x08, 0xee, 0xdb, 0xfa,
  391. 0xca, 0xeb, 0x64, 0x8d, 0xa3, 0x9f, 0x6c, 0xe8, 0x7e, 0xb3, 0x64, 0xf3, 0x6d, 0x17, 0x9e, 0x9a,
  392. 0x1d, 0x8b, 0xbd, 0x42, 0xa0, 0xcc, 0xf4, 0x14, 0x9a, 0x79, 0x0a, 0xd7, 0x8a, 0xee, 0x8d, 0x14,
  393. 0xf7, 0x72, 0x76, 0x21, 0xd7, 0xf5, 0xa0, 0x79, 0x36, 0xd3, 0x8b, 0xfb, 0xfb, 0xcf, 0x0a, 0xdc,
  394. 0x1b, 0x51, 0x1e, 0x96, 0x89, 0x3d, 0x05, 0x77, 0xce, 0x88, 0x9d, 0xf9, 0xff, 0x30, 0xb6, 0x19,
  395. 0x7a, 0x53, 0x99, 0x2b, 0x6f, 0x5e, 0xe6, 0x1f, 0xb7, 0x24, 0xff, 0xf8, 0x35, 0xa2, 0xc3, 0x8c,
  396. 0x64, 0x35, 0x97, 0x0d, 0x40, 0x2f, 0x00, 0xc5, 0xb3, 0x48, 0xb3, 0x24, 0xa2, 0x57, 0xaf, 0x6c,
  397. 0xc9, 0xa5, 0xe6, 0x39, 0x2d, 0x28, 0x8c, 0x4f, 0xad, 0xee, 0xfd, 0x52, 0xa6, 0x34, 0xf7, 0x9f,
  398. 0x0a, 0x78, 0xd9, 0xa8, 0x2d, 0xd9, 0xb9, 0x79, 0xd0, 0x9c, 0xff, 0x63, 0xd0, 0xde, 0xbe, 0x0a,
  399. 0x0c, 0x01, 0xad, 0x03, 0x51, 0x0b, 0xea, 0x94, 0x93, 0xf3, 0x88, 0x86, 0xb9, 0xef, 0x0d, 0x5c,
  400. 0x7c, 0xa2, 0xce, 0xfa, 0xfb, 0x62, 0x6f, 0xe9, 0x51, 0xf0, 0xf8, 0x23, 0x68, 0x2e, 0x6f, 0x0e,
  401. 0xd4, 0x80, 0xea, 0xf3, 0xf1, 0x78, 0xe8, 0xdd, 0x41, 0x75, 0x70, 0xc7, 0x3f, 0x8c, 0x3c, 0xe7,
  402. 0xbb, 0x43, 0x78, 0x2f, 0x10, 0xf1, 0xb6, 0xd8, 0x87, 0xce, 0x8b, 0x46, 0x71, 0xfe, 0xad, 0xf2,
  403. 0xf0, 0xe7, 0x01, 0x26, 0xa9, 0x7f, 0x98, 0xa1, 0x0e, 0x92, 0xc4, 0x38, 0x15, 0x13, 0x7e, 0x5e,
  404. 0xcb, 0x1f, 0x58, 0x4f, 0xff, 0x0d, 0x00, 0x00, 0xff, 0xff, 0x97, 0xb5, 0xcf, 0xbd, 0x93, 0x0a,
  405. 0x00, 0x00,
  406. }