config.pb.go 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  1. package core
  2. import proto "github.com/golang/protobuf/proto"
  3. import fmt "fmt"
  4. import math "math"
  5. import v2ray_core_common_serial "v2ray.com/core/common/serial"
  6. import v2ray_core_common_net "v2ray.com/core/common/net"
  7. import v2ray_core_common_net1 "v2ray.com/core/common/net"
  8. import v2ray_core_common_log "v2ray.com/core/common/log"
  9. import v2ray_core_transport_internet "v2ray.com/core/transport/internet"
  10. import v2ray_core_transport "v2ray.com/core/transport"
  11. // Reference imports to suppress errors if they are not otherwise used.
  12. var _ = proto.Marshal
  13. var _ = fmt.Errorf
  14. var _ = math.Inf
  15. // This is a compile-time assertion to ensure that this generated file
  16. // is compatible with the proto package it is being compiled against.
  17. // A compilation error at this line likely means your copy of the
  18. // proto package needs to be updated.
  19. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  20. // Configuration serialization format.
  21. type ConfigFormat int32
  22. const (
  23. ConfigFormat_Protobuf ConfigFormat = 0
  24. ConfigFormat_JSON ConfigFormat = 1
  25. )
  26. var ConfigFormat_name = map[int32]string{
  27. 0: "Protobuf",
  28. 1: "JSON",
  29. }
  30. var ConfigFormat_value = map[string]int32{
  31. "Protobuf": 0,
  32. "JSON": 1,
  33. }
  34. func (x ConfigFormat) String() string {
  35. return proto.EnumName(ConfigFormat_name, int32(x))
  36. }
  37. func (ConfigFormat) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
  38. type AllocationStrategy_Type int32
  39. const (
  40. // Always allocate all connection handlers.
  41. AllocationStrategy_Always AllocationStrategy_Type = 0
  42. // Randomly allocate specific range of handlers.
  43. AllocationStrategy_Random AllocationStrategy_Type = 1
  44. // External. Not supported yet.
  45. AllocationStrategy_External AllocationStrategy_Type = 2
  46. )
  47. var AllocationStrategy_Type_name = map[int32]string{
  48. 0: "Always",
  49. 1: "Random",
  50. 2: "External",
  51. }
  52. var AllocationStrategy_Type_value = map[string]int32{
  53. "Always": 0,
  54. "Random": 1,
  55. "External": 2,
  56. }
  57. func (x AllocationStrategy_Type) String() string {
  58. return proto.EnumName(AllocationStrategy_Type_name, int32(x))
  59. }
  60. func (AllocationStrategy_Type) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{2, 0} }
  61. type AllocationStrategyConcurrency struct {
  62. Value uint32 `protobuf:"varint,1,opt,name=value" json:"value,omitempty"`
  63. }
  64. func (m *AllocationStrategyConcurrency) Reset() { *m = AllocationStrategyConcurrency{} }
  65. func (m *AllocationStrategyConcurrency) String() string { return proto.CompactTextString(m) }
  66. func (*AllocationStrategyConcurrency) ProtoMessage() {}
  67. func (*AllocationStrategyConcurrency) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
  68. func (m *AllocationStrategyConcurrency) GetValue() uint32 {
  69. if m != nil {
  70. return m.Value
  71. }
  72. return 0
  73. }
  74. type AllocationStrategyRefresh struct {
  75. Value uint32 `protobuf:"varint,1,opt,name=value" json:"value,omitempty"`
  76. }
  77. func (m *AllocationStrategyRefresh) Reset() { *m = AllocationStrategyRefresh{} }
  78. func (m *AllocationStrategyRefresh) String() string { return proto.CompactTextString(m) }
  79. func (*AllocationStrategyRefresh) ProtoMessage() {}
  80. func (*AllocationStrategyRefresh) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
  81. func (m *AllocationStrategyRefresh) GetValue() uint32 {
  82. if m != nil {
  83. return m.Value
  84. }
  85. return 0
  86. }
  87. type AllocationStrategy struct {
  88. Type AllocationStrategy_Type `protobuf:"varint,1,opt,name=type,enum=v2ray.core.AllocationStrategy_Type" json:"type,omitempty"`
  89. // Number of handlers (ports) running in parallel.
  90. // Default value is 3 if unset.
  91. Concurrency *AllocationStrategyConcurrency `protobuf:"bytes,2,opt,name=concurrency" json:"concurrency,omitempty"`
  92. // Number of minutes before a handler is regenerated.
  93. // Default value is 5 if unset.
  94. Refresh *AllocationStrategyRefresh `protobuf:"bytes,3,opt,name=refresh" json:"refresh,omitempty"`
  95. }
  96. func (m *AllocationStrategy) Reset() { *m = AllocationStrategy{} }
  97. func (m *AllocationStrategy) String() string { return proto.CompactTextString(m) }
  98. func (*AllocationStrategy) ProtoMessage() {}
  99. func (*AllocationStrategy) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
  100. func (m *AllocationStrategy) GetType() AllocationStrategy_Type {
  101. if m != nil {
  102. return m.Type
  103. }
  104. return AllocationStrategy_Always
  105. }
  106. func (m *AllocationStrategy) GetConcurrency() *AllocationStrategyConcurrency {
  107. if m != nil {
  108. return m.Concurrency
  109. }
  110. return nil
  111. }
  112. func (m *AllocationStrategy) GetRefresh() *AllocationStrategyRefresh {
  113. if m != nil {
  114. return m.Refresh
  115. }
  116. return nil
  117. }
  118. // Config for an inbound connection handler.
  119. type InboundConnectionConfig struct {
  120. // Protocol specific settings. Must be one of the supported protocols.
  121. Settings *v2ray_core_common_serial.TypedMessage `protobuf:"bytes,1,opt,name=settings" json:"settings,omitempty"`
  122. // Range of port number to run on. Both inclusive.
  123. PortRange *v2ray_core_common_net.PortRange `protobuf:"bytes,2,opt,name=port_range,json=portRange" json:"port_range,omitempty"`
  124. // IP address to listen on. 0.0.0.0 if unset.
  125. ListenOn *v2ray_core_common_net1.IPOrDomain `protobuf:"bytes,3,opt,name=listen_on,json=listenOn" json:"listen_on,omitempty"`
  126. // Tag of this handler.
  127. Tag string `protobuf:"bytes,4,opt,name=tag" json:"tag,omitempty"`
  128. AllocationStrategy *AllocationStrategy `protobuf:"bytes,5,opt,name=allocation_strategy,json=allocationStrategy" json:"allocation_strategy,omitempty"`
  129. StreamSettings *v2ray_core_transport_internet.StreamConfig `protobuf:"bytes,6,opt,name=stream_settings,json=streamSettings" json:"stream_settings,omitempty"`
  130. AllowPassiveConnection bool `protobuf:"varint,7,opt,name=allow_passive_connection,json=allowPassiveConnection" json:"allow_passive_connection,omitempty"`
  131. }
  132. func (m *InboundConnectionConfig) Reset() { *m = InboundConnectionConfig{} }
  133. func (m *InboundConnectionConfig) String() string { return proto.CompactTextString(m) }
  134. func (*InboundConnectionConfig) ProtoMessage() {}
  135. func (*InboundConnectionConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
  136. func (m *InboundConnectionConfig) GetSettings() *v2ray_core_common_serial.TypedMessage {
  137. if m != nil {
  138. return m.Settings
  139. }
  140. return nil
  141. }
  142. func (m *InboundConnectionConfig) GetPortRange() *v2ray_core_common_net.PortRange {
  143. if m != nil {
  144. return m.PortRange
  145. }
  146. return nil
  147. }
  148. func (m *InboundConnectionConfig) GetListenOn() *v2ray_core_common_net1.IPOrDomain {
  149. if m != nil {
  150. return m.ListenOn
  151. }
  152. return nil
  153. }
  154. func (m *InboundConnectionConfig) GetTag() string {
  155. if m != nil {
  156. return m.Tag
  157. }
  158. return ""
  159. }
  160. func (m *InboundConnectionConfig) GetAllocationStrategy() *AllocationStrategy {
  161. if m != nil {
  162. return m.AllocationStrategy
  163. }
  164. return nil
  165. }
  166. func (m *InboundConnectionConfig) GetStreamSettings() *v2ray_core_transport_internet.StreamConfig {
  167. if m != nil {
  168. return m.StreamSettings
  169. }
  170. return nil
  171. }
  172. func (m *InboundConnectionConfig) GetAllowPassiveConnection() bool {
  173. if m != nil {
  174. return m.AllowPassiveConnection
  175. }
  176. return false
  177. }
  178. // Config for an outbound connection handler.
  179. type OutboundConnectionConfig struct {
  180. Settings *v2ray_core_common_serial.TypedMessage `protobuf:"bytes,1,opt,name=settings" json:"settings,omitempty"`
  181. // IP address to send data through. 0.0.0.0 if unset.
  182. SendThrough *v2ray_core_common_net1.IPOrDomain `protobuf:"bytes,2,opt,name=send_through,json=sendThrough" json:"send_through,omitempty"`
  183. StreamSettings *v2ray_core_transport_internet.StreamConfig `protobuf:"bytes,3,opt,name=stream_settings,json=streamSettings" json:"stream_settings,omitempty"`
  184. ProxySettings *v2ray_core_transport_internet.ProxyConfig `protobuf:"bytes,5,opt,name=proxy_settings,json=proxySettings" json:"proxy_settings,omitempty"`
  185. Tag string `protobuf:"bytes,4,opt,name=tag" json:"tag,omitempty"`
  186. }
  187. func (m *OutboundConnectionConfig) Reset() { *m = OutboundConnectionConfig{} }
  188. func (m *OutboundConnectionConfig) String() string { return proto.CompactTextString(m) }
  189. func (*OutboundConnectionConfig) ProtoMessage() {}
  190. func (*OutboundConnectionConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
  191. func (m *OutboundConnectionConfig) GetSettings() *v2ray_core_common_serial.TypedMessage {
  192. if m != nil {
  193. return m.Settings
  194. }
  195. return nil
  196. }
  197. func (m *OutboundConnectionConfig) GetSendThrough() *v2ray_core_common_net1.IPOrDomain {
  198. if m != nil {
  199. return m.SendThrough
  200. }
  201. return nil
  202. }
  203. func (m *OutboundConnectionConfig) GetStreamSettings() *v2ray_core_transport_internet.StreamConfig {
  204. if m != nil {
  205. return m.StreamSettings
  206. }
  207. return nil
  208. }
  209. func (m *OutboundConnectionConfig) GetProxySettings() *v2ray_core_transport_internet.ProxyConfig {
  210. if m != nil {
  211. return m.ProxySettings
  212. }
  213. return nil
  214. }
  215. func (m *OutboundConnectionConfig) GetTag() string {
  216. if m != nil {
  217. return m.Tag
  218. }
  219. return ""
  220. }
  221. type Config struct {
  222. // Inbound handler configurations. Must have at least one item.
  223. Inbound []*InboundConnectionConfig `protobuf:"bytes,1,rep,name=inbound" json:"inbound,omitempty"`
  224. // Outbound handler configurations. Must have at least one item. The first item is used as default for routing.
  225. Outbound []*OutboundConnectionConfig `protobuf:"bytes,2,rep,name=outbound" json:"outbound,omitempty"`
  226. Log *v2ray_core_common_log.Config `protobuf:"bytes,3,opt,name=log" json:"log,omitempty"`
  227. // App configuration. Must be one in the app directory.
  228. App []*v2ray_core_common_serial.TypedMessage `protobuf:"bytes,4,rep,name=app" json:"app,omitempty"`
  229. Transport *v2ray_core_transport.Config `protobuf:"bytes,5,opt,name=transport" json:"transport,omitempty"`
  230. }
  231. func (m *Config) Reset() { *m = Config{} }
  232. func (m *Config) String() string { return proto.CompactTextString(m) }
  233. func (*Config) ProtoMessage() {}
  234. func (*Config) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
  235. func (m *Config) GetInbound() []*InboundConnectionConfig {
  236. if m != nil {
  237. return m.Inbound
  238. }
  239. return nil
  240. }
  241. func (m *Config) GetOutbound() []*OutboundConnectionConfig {
  242. if m != nil {
  243. return m.Outbound
  244. }
  245. return nil
  246. }
  247. func (m *Config) GetLog() *v2ray_core_common_log.Config {
  248. if m != nil {
  249. return m.Log
  250. }
  251. return nil
  252. }
  253. func (m *Config) GetApp() []*v2ray_core_common_serial.TypedMessage {
  254. if m != nil {
  255. return m.App
  256. }
  257. return nil
  258. }
  259. func (m *Config) GetTransport() *v2ray_core_transport.Config {
  260. if m != nil {
  261. return m.Transport
  262. }
  263. return nil
  264. }
  265. func init() {
  266. proto.RegisterType((*AllocationStrategyConcurrency)(nil), "v2ray.core.AllocationStrategyConcurrency")
  267. proto.RegisterType((*AllocationStrategyRefresh)(nil), "v2ray.core.AllocationStrategyRefresh")
  268. proto.RegisterType((*AllocationStrategy)(nil), "v2ray.core.AllocationStrategy")
  269. proto.RegisterType((*InboundConnectionConfig)(nil), "v2ray.core.InboundConnectionConfig")
  270. proto.RegisterType((*OutboundConnectionConfig)(nil), "v2ray.core.OutboundConnectionConfig")
  271. proto.RegisterType((*Config)(nil), "v2ray.core.Config")
  272. proto.RegisterEnum("v2ray.core.ConfigFormat", ConfigFormat_name, ConfigFormat_value)
  273. proto.RegisterEnum("v2ray.core.AllocationStrategy_Type", AllocationStrategy_Type_name, AllocationStrategy_Type_value)
  274. }
  275. func init() { proto.RegisterFile("v2ray.com/core/config.proto", fileDescriptor0) }
  276. var fileDescriptor0 = []byte{
  277. // 745 bytes of a gzipped FileDescriptorProto
  278. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x95, 0xd1, 0x6e, 0xd3, 0x3a,
  279. 0x1c, 0xc6, 0x97, 0xb6, 0xeb, 0xda, 0x7f, 0xb7, 0x9e, 0xca, 0xe7, 0xe8, 0x9c, 0x9c, 0xc1, 0x50,
  280. 0x29, 0xdb, 0x28, 0x03, 0xa5, 0xa3, 0x08, 0x31, 0x21, 0xc1, 0xd8, 0x3a, 0x90, 0x06, 0x82, 0x16,
  281. 0x77, 0xe2, 0x82, 0x9b, 0xc8, 0x4b, 0xbd, 0x2c, 0x52, 0x62, 0x47, 0xb6, 0xbb, 0x2d, 0x8f, 0xc0,
  282. 0xab, 0x70, 0xc5, 0xab, 0xf0, 0x04, 0xbc, 0x0a, 0x72, 0x92, 0xa6, 0x1d, 0x6d, 0xb7, 0x49, 0x88,
  283. 0xbb, 0x34, 0xf9, 0x7e, 0x9f, 0x9d, 0xef, 0xfb, 0xc7, 0x85, 0x5b, 0x67, 0x6d, 0x41, 0x22, 0xcb,
  284. 0xe1, 0x41, 0xcb, 0xe1, 0x82, 0xb6, 0x1c, 0xce, 0x4e, 0x3c, 0xd7, 0x0a, 0x05, 0x57, 0x1c, 0xc1,
  285. 0xe8, 0xa1, 0xa0, 0xab, 0xdb, 0x53, 0xc2, 0x20, 0xe0, 0xac, 0x25, 0xa9, 0xf0, 0x88, 0xdf, 0x52,
  286. 0x51, 0x48, 0x07, 0x76, 0x40, 0xa5, 0x24, 0x2e, 0x4d, 0xe8, 0xd5, 0xf5, 0xd9, 0x04, 0xa3, 0xaa,
  287. 0x15, 0x72, 0xa1, 0x52, 0xd5, 0xfd, 0xf9, 0x2a, 0x32, 0x18, 0x08, 0x2a, 0x65, 0x2a, 0xdc, 0x9c,
  288. 0x2d, 0xf4, 0xb9, 0x7b, 0x69, 0xd3, 0xab, 0xd6, 0x2f, 0x3a, 0x25, 0x08, 0x93, 0x7a, 0xc1, 0x96,
  289. 0xc7, 0x14, 0x15, 0xda, 0xf8, 0x92, 0x7e, 0x63, 0xae, 0x7e, 0x52, 0xd6, 0x78, 0x0a, 0x6b, 0x7b,
  290. 0xbe, 0xcf, 0x1d, 0xa2, 0x3c, 0xce, 0xfa, 0x4a, 0x10, 0x45, 0xdd, 0xa8, 0xc3, 0x99, 0x33, 0x14,
  291. 0x82, 0x32, 0x27, 0x42, 0xff, 0xc0, 0xe2, 0x19, 0xf1, 0x87, 0xd4, 0x34, 0xea, 0x46, 0x73, 0x05,
  292. 0x27, 0x3f, 0x1a, 0x8f, 0xe1, 0xff, 0x69, 0x0c, 0xd3, 0x13, 0x41, 0xe5, 0xe9, 0x1c, 0xe4, 0x4b,
  293. 0x0e, 0xd0, 0x34, 0x83, 0x9e, 0x41, 0x41, 0xa7, 0x1c, 0x6b, 0xab, 0xed, 0x7b, 0xd6, 0xb8, 0x1b,
  294. 0x6b, 0x5a, 0x6d, 0x1d, 0x45, 0x21, 0xc5, 0x31, 0x80, 0xde, 0x41, 0xc5, 0x19, 0xef, 0xd3, 0xcc,
  295. 0xd5, 0x8d, 0x66, 0xa5, 0xfd, 0xe0, 0x6a, 0x7e, 0xe2, 0xc5, 0xf0, 0x24, 0x8d, 0x76, 0x61, 0x49,
  296. 0x24, 0xbb, 0x37, 0xf3, 0xb1, 0xd1, 0xc6, 0xd5, 0x46, 0xe9, 0xab, 0xe2, 0x11, 0xd5, 0x78, 0x04,
  297. 0x05, 0xbd, 0x37, 0x04, 0x50, 0xdc, 0xf3, 0xcf, 0x49, 0x24, 0x6b, 0x0b, 0xfa, 0x1a, 0x13, 0x36,
  298. 0xe0, 0x41, 0xcd, 0x40, 0xcb, 0x50, 0x7a, 0x7d, 0xa1, 0x7b, 0x22, 0x7e, 0x2d, 0xd7, 0xf8, 0x9e,
  299. 0x87, 0xff, 0x0e, 0xd9, 0x31, 0x1f, 0xb2, 0x41, 0x87, 0x33, 0x46, 0x1d, 0xed, 0xdd, 0x89, 0x7b,
  300. 0x41, 0xfb, 0x50, 0x92, 0x54, 0x29, 0x8f, 0xb9, 0x32, 0x0e, 0xa5, 0xd2, 0xde, 0x9c, 0xdc, 0x4b,
  301. 0x32, 0x1f, 0x56, 0x32, 0xa0, 0x71, 0x1e, 0x83, 0xf7, 0xc9, 0x7c, 0xe2, 0x8c, 0x43, 0xbb, 0x00,
  302. 0xba, 0x6a, 0x5b, 0x10, 0xe6, 0xd2, 0x34, 0x9a, 0xfa, 0x0c, 0x17, 0x46, 0x95, 0xd5, 0xe3, 0x42,
  303. 0x61, 0xad, 0xc3, 0xe5, 0x70, 0x74, 0x89, 0x5e, 0x42, 0xd9, 0xf7, 0xa4, 0xa2, 0xcc, 0xe6, 0x2c,
  304. 0x4d, 0xe4, 0xee, 0x1c, 0xfe, 0xb0, 0xd7, 0x15, 0x07, 0x3c, 0x20, 0x1e, 0xc3, 0xa5, 0x84, 0xe9,
  305. 0x32, 0x54, 0x83, 0xbc, 0x22, 0xae, 0x59, 0xa8, 0x1b, 0xcd, 0x32, 0xd6, 0x97, 0xa8, 0x0b, 0x7f,
  306. 0x93, 0x2c, 0x46, 0x5b, 0xa6, 0x39, 0x9a, 0x8b, 0xb1, 0xf7, 0x9d, 0x6b, 0xd2, 0x46, 0x64, 0x7a,
  307. 0x70, 0x8e, 0xe0, 0x2f, 0xa9, 0x04, 0x25, 0x81, 0x9d, 0xc5, 0x55, 0x8c, 0xcd, 0x1e, 0x4e, 0x9a,
  308. 0x65, 0x63, 0x6f, 0x8d, 0x3e, 0x13, 0xab, 0x1f, 0x53, 0x49, 0xda, 0xb8, 0x9a, 0x78, 0xf4, 0x47,
  309. 0xc9, 0xed, 0x80, 0xa9, 0xd7, 0x3a, 0xb7, 0x43, 0x22, 0xa5, 0x77, 0x46, 0x6d, 0x27, 0xeb, 0xc7,
  310. 0x5c, 0xaa, 0x1b, 0xcd, 0x12, 0xfe, 0x37, 0x7e, 0xde, 0x4b, 0x1e, 0x8f, 0xdb, 0x6b, 0xfc, 0xc8,
  311. 0x81, 0xd9, 0x1d, 0xaa, 0x3f, 0x57, 0xea, 0x01, 0x2c, 0x4b, 0xca, 0x06, 0xb6, 0x3a, 0x15, 0x7c,
  312. 0xe8, 0x9e, 0xa6, 0xb5, 0xde, 0xa0, 0x96, 0x8a, 0xc6, 0x8e, 0x12, 0x6a, 0x56, 0x6c, 0xf9, 0xdf,
  313. 0x8f, 0xed, 0x23, 0x54, 0x43, 0xc1, 0x2f, 0xa2, 0xb1, 0x69, 0x52, 0xec, 0xd6, 0x35, 0xa6, 0x3d,
  314. 0x0d, 0xa5, 0x9e, 0x2b, 0xb1, 0x43, 0x66, 0x39, 0x35, 0x42, 0x8d, 0x6f, 0x39, 0x28, 0xa6, 0x79,
  315. 0xbe, 0x80, 0x25, 0x2f, 0xf9, 0x7e, 0x4c, 0xa3, 0x9e, 0x6f, 0x56, 0x2e, 0x1f, 0x1c, 0x73, 0x3e,
  316. 0x2d, 0x3c, 0x62, 0xd0, 0x2b, 0x28, 0xf1, 0xb4, 0x2a, 0x33, 0x17, 0xf3, 0xeb, 0x93, 0xfc, 0xbc,
  317. 0x1a, 0x71, 0x46, 0xa1, 0x16, 0xe4, 0x7d, 0xee, 0xa6, 0xd1, 0xad, 0xcd, 0xe8, 0xc0, 0xe7, 0xae,
  318. 0x95, 0x52, 0x5a, 0x89, 0x76, 0x20, 0x4f, 0xc2, 0xd0, 0x2c, 0xc4, 0xab, 0xdd, 0xb4, 0x7c, 0x8d,
  319. 0xa0, 0xe7, 0x50, 0xce, 0x92, 0x4b, 0x63, 0xbd, 0x3d, 0x3b, 0xd6, 0x74, 0xbd, 0xb1, 0x7c, 0x6b,
  320. 0x13, 0x96, 0x93, 0x9b, 0x6f, 0xb8, 0x08, 0x88, 0xd2, 0xc7, 0x50, 0x4f, 0x9f, 0xfb, 0xc7, 0xc3,
  321. 0x93, 0xda, 0x02, 0x2a, 0x41, 0xe1, 0x6d, 0xbf, 0xfb, 0xa1, 0x66, 0xec, 0x6f, 0x43, 0xd5, 0xe1,
  322. 0xc1, 0x84, 0xeb, 0x7e, 0x25, 0xe1, 0x62, 0xf5, 0xe7, 0x82, 0xbe, 0xf5, 0x35, 0x07, 0x9f, 0xda,
  323. 0x98, 0x44, 0x56, 0x87, 0x0b, 0x7a, 0x5c, 0x8c, 0xff, 0x3f, 0x9e, 0xfc, 0x0c, 0x00, 0x00, 0xff,
  324. 0xff, 0xff, 0x44, 0xf3, 0xc8, 0x6a, 0x07, 0x00, 0x00,
  325. }