config.pb.go 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446
  1. package policy
  2. import proto "github.com/golang/protobuf/proto"
  3. import fmt "fmt"
  4. import math "math"
  5. // Reference imports to suppress errors if they are not otherwise used.
  6. var _ = proto.Marshal
  7. var _ = fmt.Errorf
  8. var _ = math.Inf
  9. // This is a compile-time assertion to ensure that this generated file
  10. // is compatible with the proto package it is being compiled against.
  11. // A compilation error at this line likely means your copy of the
  12. // proto package needs to be updated.
  13. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  14. type Second struct {
  15. Value uint32 `protobuf:"varint,1,opt,name=value" json:"value,omitempty"`
  16. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  17. XXX_unrecognized []byte `json:"-"`
  18. XXX_sizecache int32 `json:"-"`
  19. }
  20. func (m *Second) Reset() { *m = Second{} }
  21. func (m *Second) String() string { return proto.CompactTextString(m) }
  22. func (*Second) ProtoMessage() {}
  23. func (*Second) Descriptor() ([]byte, []int) {
  24. return fileDescriptor_config_505638f2092d854e, []int{0}
  25. }
  26. func (m *Second) XXX_Unmarshal(b []byte) error {
  27. return xxx_messageInfo_Second.Unmarshal(m, b)
  28. }
  29. func (m *Second) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  30. return xxx_messageInfo_Second.Marshal(b, m, deterministic)
  31. }
  32. func (dst *Second) XXX_Merge(src proto.Message) {
  33. xxx_messageInfo_Second.Merge(dst, src)
  34. }
  35. func (m *Second) XXX_Size() int {
  36. return xxx_messageInfo_Second.Size(m)
  37. }
  38. func (m *Second) XXX_DiscardUnknown() {
  39. xxx_messageInfo_Second.DiscardUnknown(m)
  40. }
  41. var xxx_messageInfo_Second proto.InternalMessageInfo
  42. func (m *Second) GetValue() uint32 {
  43. if m != nil {
  44. return m.Value
  45. }
  46. return 0
  47. }
  48. type Policy struct {
  49. Timeout *Policy_Timeout `protobuf:"bytes,1,opt,name=timeout" json:"timeout,omitempty"`
  50. Stats *Policy_Stats `protobuf:"bytes,2,opt,name=stats" json:"stats,omitempty"`
  51. Buffer *Policy_Buffer `protobuf:"bytes,3,opt,name=buffer" json:"buffer,omitempty"`
  52. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  53. XXX_unrecognized []byte `json:"-"`
  54. XXX_sizecache int32 `json:"-"`
  55. }
  56. func (m *Policy) Reset() { *m = Policy{} }
  57. func (m *Policy) String() string { return proto.CompactTextString(m) }
  58. func (*Policy) ProtoMessage() {}
  59. func (*Policy) Descriptor() ([]byte, []int) {
  60. return fileDescriptor_config_505638f2092d854e, []int{1}
  61. }
  62. func (m *Policy) XXX_Unmarshal(b []byte) error {
  63. return xxx_messageInfo_Policy.Unmarshal(m, b)
  64. }
  65. func (m *Policy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  66. return xxx_messageInfo_Policy.Marshal(b, m, deterministic)
  67. }
  68. func (dst *Policy) XXX_Merge(src proto.Message) {
  69. xxx_messageInfo_Policy.Merge(dst, src)
  70. }
  71. func (m *Policy) XXX_Size() int {
  72. return xxx_messageInfo_Policy.Size(m)
  73. }
  74. func (m *Policy) XXX_DiscardUnknown() {
  75. xxx_messageInfo_Policy.DiscardUnknown(m)
  76. }
  77. var xxx_messageInfo_Policy proto.InternalMessageInfo
  78. func (m *Policy) GetTimeout() *Policy_Timeout {
  79. if m != nil {
  80. return m.Timeout
  81. }
  82. return nil
  83. }
  84. func (m *Policy) GetStats() *Policy_Stats {
  85. if m != nil {
  86. return m.Stats
  87. }
  88. return nil
  89. }
  90. func (m *Policy) GetBuffer() *Policy_Buffer {
  91. if m != nil {
  92. return m.Buffer
  93. }
  94. return nil
  95. }
  96. // Timeout is a message for timeout settings in various stages, in seconds.
  97. type Policy_Timeout struct {
  98. Handshake *Second `protobuf:"bytes,1,opt,name=handshake" json:"handshake,omitempty"`
  99. ConnectionIdle *Second `protobuf:"bytes,2,opt,name=connection_idle,json=connectionIdle" json:"connection_idle,omitempty"`
  100. UplinkOnly *Second `protobuf:"bytes,3,opt,name=uplink_only,json=uplinkOnly" json:"uplink_only,omitempty"`
  101. DownlinkOnly *Second `protobuf:"bytes,4,opt,name=downlink_only,json=downlinkOnly" json:"downlink_only,omitempty"`
  102. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  103. XXX_unrecognized []byte `json:"-"`
  104. XXX_sizecache int32 `json:"-"`
  105. }
  106. func (m *Policy_Timeout) Reset() { *m = Policy_Timeout{} }
  107. func (m *Policy_Timeout) String() string { return proto.CompactTextString(m) }
  108. func (*Policy_Timeout) ProtoMessage() {}
  109. func (*Policy_Timeout) Descriptor() ([]byte, []int) {
  110. return fileDescriptor_config_505638f2092d854e, []int{1, 0}
  111. }
  112. func (m *Policy_Timeout) XXX_Unmarshal(b []byte) error {
  113. return xxx_messageInfo_Policy_Timeout.Unmarshal(m, b)
  114. }
  115. func (m *Policy_Timeout) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  116. return xxx_messageInfo_Policy_Timeout.Marshal(b, m, deterministic)
  117. }
  118. func (dst *Policy_Timeout) XXX_Merge(src proto.Message) {
  119. xxx_messageInfo_Policy_Timeout.Merge(dst, src)
  120. }
  121. func (m *Policy_Timeout) XXX_Size() int {
  122. return xxx_messageInfo_Policy_Timeout.Size(m)
  123. }
  124. func (m *Policy_Timeout) XXX_DiscardUnknown() {
  125. xxx_messageInfo_Policy_Timeout.DiscardUnknown(m)
  126. }
  127. var xxx_messageInfo_Policy_Timeout proto.InternalMessageInfo
  128. func (m *Policy_Timeout) GetHandshake() *Second {
  129. if m != nil {
  130. return m.Handshake
  131. }
  132. return nil
  133. }
  134. func (m *Policy_Timeout) GetConnectionIdle() *Second {
  135. if m != nil {
  136. return m.ConnectionIdle
  137. }
  138. return nil
  139. }
  140. func (m *Policy_Timeout) GetUplinkOnly() *Second {
  141. if m != nil {
  142. return m.UplinkOnly
  143. }
  144. return nil
  145. }
  146. func (m *Policy_Timeout) GetDownlinkOnly() *Second {
  147. if m != nil {
  148. return m.DownlinkOnly
  149. }
  150. return nil
  151. }
  152. type Policy_Stats struct {
  153. UserUplink bool `protobuf:"varint,1,opt,name=user_uplink,json=userUplink" json:"user_uplink,omitempty"`
  154. UserDownlink bool `protobuf:"varint,2,opt,name=user_downlink,json=userDownlink" json:"user_downlink,omitempty"`
  155. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  156. XXX_unrecognized []byte `json:"-"`
  157. XXX_sizecache int32 `json:"-"`
  158. }
  159. func (m *Policy_Stats) Reset() { *m = Policy_Stats{} }
  160. func (m *Policy_Stats) String() string { return proto.CompactTextString(m) }
  161. func (*Policy_Stats) ProtoMessage() {}
  162. func (*Policy_Stats) Descriptor() ([]byte, []int) {
  163. return fileDescriptor_config_505638f2092d854e, []int{1, 1}
  164. }
  165. func (m *Policy_Stats) XXX_Unmarshal(b []byte) error {
  166. return xxx_messageInfo_Policy_Stats.Unmarshal(m, b)
  167. }
  168. func (m *Policy_Stats) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  169. return xxx_messageInfo_Policy_Stats.Marshal(b, m, deterministic)
  170. }
  171. func (dst *Policy_Stats) XXX_Merge(src proto.Message) {
  172. xxx_messageInfo_Policy_Stats.Merge(dst, src)
  173. }
  174. func (m *Policy_Stats) XXX_Size() int {
  175. return xxx_messageInfo_Policy_Stats.Size(m)
  176. }
  177. func (m *Policy_Stats) XXX_DiscardUnknown() {
  178. xxx_messageInfo_Policy_Stats.DiscardUnknown(m)
  179. }
  180. var xxx_messageInfo_Policy_Stats proto.InternalMessageInfo
  181. func (m *Policy_Stats) GetUserUplink() bool {
  182. if m != nil {
  183. return m.UserUplink
  184. }
  185. return false
  186. }
  187. func (m *Policy_Stats) GetUserDownlink() bool {
  188. if m != nil {
  189. return m.UserDownlink
  190. }
  191. return false
  192. }
  193. type Policy_Buffer struct {
  194. Enabled bool `protobuf:"varint,1,opt,name=enabled" json:"enabled,omitempty"`
  195. Size uint32 `protobuf:"varint,2,opt,name=size" json:"size,omitempty"`
  196. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  197. XXX_unrecognized []byte `json:"-"`
  198. XXX_sizecache int32 `json:"-"`
  199. }
  200. func (m *Policy_Buffer) Reset() { *m = Policy_Buffer{} }
  201. func (m *Policy_Buffer) String() string { return proto.CompactTextString(m) }
  202. func (*Policy_Buffer) ProtoMessage() {}
  203. func (*Policy_Buffer) Descriptor() ([]byte, []int) {
  204. return fileDescriptor_config_505638f2092d854e, []int{1, 2}
  205. }
  206. func (m *Policy_Buffer) XXX_Unmarshal(b []byte) error {
  207. return xxx_messageInfo_Policy_Buffer.Unmarshal(m, b)
  208. }
  209. func (m *Policy_Buffer) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  210. return xxx_messageInfo_Policy_Buffer.Marshal(b, m, deterministic)
  211. }
  212. func (dst *Policy_Buffer) XXX_Merge(src proto.Message) {
  213. xxx_messageInfo_Policy_Buffer.Merge(dst, src)
  214. }
  215. func (m *Policy_Buffer) XXX_Size() int {
  216. return xxx_messageInfo_Policy_Buffer.Size(m)
  217. }
  218. func (m *Policy_Buffer) XXX_DiscardUnknown() {
  219. xxx_messageInfo_Policy_Buffer.DiscardUnknown(m)
  220. }
  221. var xxx_messageInfo_Policy_Buffer proto.InternalMessageInfo
  222. func (m *Policy_Buffer) GetEnabled() bool {
  223. if m != nil {
  224. return m.Enabled
  225. }
  226. return false
  227. }
  228. func (m *Policy_Buffer) GetSize() uint32 {
  229. if m != nil {
  230. return m.Size
  231. }
  232. return 0
  233. }
  234. type SystemPolicy struct {
  235. Stats *SystemPolicy_Stats `protobuf:"bytes,1,opt,name=stats" json:"stats,omitempty"`
  236. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  237. XXX_unrecognized []byte `json:"-"`
  238. XXX_sizecache int32 `json:"-"`
  239. }
  240. func (m *SystemPolicy) Reset() { *m = SystemPolicy{} }
  241. func (m *SystemPolicy) String() string { return proto.CompactTextString(m) }
  242. func (*SystemPolicy) ProtoMessage() {}
  243. func (*SystemPolicy) Descriptor() ([]byte, []int) {
  244. return fileDescriptor_config_505638f2092d854e, []int{2}
  245. }
  246. func (m *SystemPolicy) XXX_Unmarshal(b []byte) error {
  247. return xxx_messageInfo_SystemPolicy.Unmarshal(m, b)
  248. }
  249. func (m *SystemPolicy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  250. return xxx_messageInfo_SystemPolicy.Marshal(b, m, deterministic)
  251. }
  252. func (dst *SystemPolicy) XXX_Merge(src proto.Message) {
  253. xxx_messageInfo_SystemPolicy.Merge(dst, src)
  254. }
  255. func (m *SystemPolicy) XXX_Size() int {
  256. return xxx_messageInfo_SystemPolicy.Size(m)
  257. }
  258. func (m *SystemPolicy) XXX_DiscardUnknown() {
  259. xxx_messageInfo_SystemPolicy.DiscardUnknown(m)
  260. }
  261. var xxx_messageInfo_SystemPolicy proto.InternalMessageInfo
  262. func (m *SystemPolicy) GetStats() *SystemPolicy_Stats {
  263. if m != nil {
  264. return m.Stats
  265. }
  266. return nil
  267. }
  268. type SystemPolicy_Stats struct {
  269. InboundUplink bool `protobuf:"varint,1,opt,name=inbound_uplink,json=inboundUplink" json:"inbound_uplink,omitempty"`
  270. InboundDownlink bool `protobuf:"varint,2,opt,name=inbound_downlink,json=inboundDownlink" json:"inbound_downlink,omitempty"`
  271. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  272. XXX_unrecognized []byte `json:"-"`
  273. XXX_sizecache int32 `json:"-"`
  274. }
  275. func (m *SystemPolicy_Stats) Reset() { *m = SystemPolicy_Stats{} }
  276. func (m *SystemPolicy_Stats) String() string { return proto.CompactTextString(m) }
  277. func (*SystemPolicy_Stats) ProtoMessage() {}
  278. func (*SystemPolicy_Stats) Descriptor() ([]byte, []int) {
  279. return fileDescriptor_config_505638f2092d854e, []int{2, 0}
  280. }
  281. func (m *SystemPolicy_Stats) XXX_Unmarshal(b []byte) error {
  282. return xxx_messageInfo_SystemPolicy_Stats.Unmarshal(m, b)
  283. }
  284. func (m *SystemPolicy_Stats) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  285. return xxx_messageInfo_SystemPolicy_Stats.Marshal(b, m, deterministic)
  286. }
  287. func (dst *SystemPolicy_Stats) XXX_Merge(src proto.Message) {
  288. xxx_messageInfo_SystemPolicy_Stats.Merge(dst, src)
  289. }
  290. func (m *SystemPolicy_Stats) XXX_Size() int {
  291. return xxx_messageInfo_SystemPolicy_Stats.Size(m)
  292. }
  293. func (m *SystemPolicy_Stats) XXX_DiscardUnknown() {
  294. xxx_messageInfo_SystemPolicy_Stats.DiscardUnknown(m)
  295. }
  296. var xxx_messageInfo_SystemPolicy_Stats proto.InternalMessageInfo
  297. func (m *SystemPolicy_Stats) GetInboundUplink() bool {
  298. if m != nil {
  299. return m.InboundUplink
  300. }
  301. return false
  302. }
  303. func (m *SystemPolicy_Stats) GetInboundDownlink() bool {
  304. if m != nil {
  305. return m.InboundDownlink
  306. }
  307. return false
  308. }
  309. type Config struct {
  310. Level map[uint32]*Policy `protobuf:"bytes,1,rep,name=level" json:"level,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  311. System *SystemPolicy `protobuf:"bytes,2,opt,name=system" json:"system,omitempty"`
  312. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  313. XXX_unrecognized []byte `json:"-"`
  314. XXX_sizecache int32 `json:"-"`
  315. }
  316. func (m *Config) Reset() { *m = Config{} }
  317. func (m *Config) String() string { return proto.CompactTextString(m) }
  318. func (*Config) ProtoMessage() {}
  319. func (*Config) Descriptor() ([]byte, []int) {
  320. return fileDescriptor_config_505638f2092d854e, []int{3}
  321. }
  322. func (m *Config) XXX_Unmarshal(b []byte) error {
  323. return xxx_messageInfo_Config.Unmarshal(m, b)
  324. }
  325. func (m *Config) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  326. return xxx_messageInfo_Config.Marshal(b, m, deterministic)
  327. }
  328. func (dst *Config) XXX_Merge(src proto.Message) {
  329. xxx_messageInfo_Config.Merge(dst, src)
  330. }
  331. func (m *Config) XXX_Size() int {
  332. return xxx_messageInfo_Config.Size(m)
  333. }
  334. func (m *Config) XXX_DiscardUnknown() {
  335. xxx_messageInfo_Config.DiscardUnknown(m)
  336. }
  337. var xxx_messageInfo_Config proto.InternalMessageInfo
  338. func (m *Config) GetLevel() map[uint32]*Policy {
  339. if m != nil {
  340. return m.Level
  341. }
  342. return nil
  343. }
  344. func (m *Config) GetSystem() *SystemPolicy {
  345. if m != nil {
  346. return m.System
  347. }
  348. return nil
  349. }
  350. func init() {
  351. proto.RegisterType((*Second)(nil), "v2ray.core.app.policy.Second")
  352. proto.RegisterType((*Policy)(nil), "v2ray.core.app.policy.Policy")
  353. proto.RegisterType((*Policy_Timeout)(nil), "v2ray.core.app.policy.Policy.Timeout")
  354. proto.RegisterType((*Policy_Stats)(nil), "v2ray.core.app.policy.Policy.Stats")
  355. proto.RegisterType((*Policy_Buffer)(nil), "v2ray.core.app.policy.Policy.Buffer")
  356. proto.RegisterType((*SystemPolicy)(nil), "v2ray.core.app.policy.SystemPolicy")
  357. proto.RegisterType((*SystemPolicy_Stats)(nil), "v2ray.core.app.policy.SystemPolicy.Stats")
  358. proto.RegisterType((*Config)(nil), "v2ray.core.app.policy.Config")
  359. proto.RegisterMapType((map[uint32]*Policy)(nil), "v2ray.core.app.policy.Config.LevelEntry")
  360. }
  361. func init() {
  362. proto.RegisterFile("v2ray.com/core/app/policy/config.proto", fileDescriptor_config_505638f2092d854e)
  363. }
  364. var fileDescriptor_config_505638f2092d854e = []byte{
  365. // 523 bytes of a gzipped FileDescriptorProto
  366. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x94, 0xeb, 0x6a, 0x13, 0x41,
  367. 0x14, 0xc7, 0xd9, 0x5c, 0x36, 0xf5, 0x24, 0xdb, 0x96, 0xc1, 0xc2, 0xba, 0xa0, 0x96, 0xd4, 0x4a,
  368. 0xfa, 0x65, 0x03, 0x29, 0x88, 0x5a, 0xad, 0x18, 0x2f, 0x20, 0x28, 0x96, 0x89, 0x17, 0xf4, 0x4b,
  369. 0xd8, 0xec, 0x9e, 0xd8, 0x25, 0x93, 0x99, 0x65, 0x2f, 0x91, 0xf5, 0x31, 0x7c, 0x8c, 0x3e, 0x54,
  370. 0x9f, 0x45, 0x76, 0x2e, 0xa6, 0x95, 0x26, 0xf1, 0xdb, 0xcc, 0xe1, 0xf7, 0xff, 0x33, 0xff, 0xb3,
  371. 0xe7, 0x2c, 0x3c, 0x5c, 0x0c, 0xd2, 0xa0, 0xf4, 0x43, 0x31, 0xef, 0x87, 0x22, 0xc5, 0x7e, 0x90,
  372. 0x24, 0xfd, 0x44, 0xb0, 0x38, 0x2c, 0xfb, 0xa1, 0xe0, 0xd3, 0xf8, 0x87, 0x9f, 0xa4, 0x22, 0x17,
  373. 0x64, 0xcf, 0x70, 0x29, 0xfa, 0x41, 0x92, 0xf8, 0x8a, 0xe9, 0xde, 0x03, 0x7b, 0x84, 0xa1, 0xe0,
  374. 0x11, 0xb9, 0x0d, 0xcd, 0x45, 0xc0, 0x0a, 0x74, 0xad, 0x7d, 0xab, 0xe7, 0x50, 0x75, 0xe9, 0x5e,
  375. 0x36, 0xc0, 0x3e, 0x93, 0x28, 0x79, 0x01, 0xad, 0x3c, 0x9e, 0xa3, 0x28, 0x72, 0x89, 0xb4, 0x07,
  376. 0x87, 0xfe, 0x8d, 0x9e, 0xbe, 0xe2, 0xfd, 0x4f, 0x0a, 0xa6, 0x46, 0x45, 0x9e, 0x40, 0x33, 0xcb,
  377. 0x83, 0x3c, 0x73, 0x6b, 0x52, 0x7e, 0xb0, 0x5e, 0x3e, 0xaa, 0x50, 0xaa, 0x14, 0xe4, 0x19, 0xd8,
  378. 0x93, 0x62, 0x3a, 0xc5, 0xd4, 0xad, 0x4b, 0xed, 0x83, 0xf5, 0xda, 0xa1, 0x64, 0xa9, 0xd6, 0x78,
  379. 0xbf, 0x6b, 0xd0, 0xd2, 0xaf, 0x21, 0x27, 0x70, 0xeb, 0x3c, 0xe0, 0x51, 0x76, 0x1e, 0xcc, 0x50,
  380. 0xe7, 0xb8, 0xbb, 0xc2, 0x4c, 0x35, 0x86, 0x2e, 0x79, 0xf2, 0x16, 0x76, 0x42, 0xc1, 0x39, 0x86,
  381. 0x79, 0x2c, 0xf8, 0x38, 0x8e, 0x18, 0xea, 0x2c, 0x1b, 0x2c, 0xb6, 0x97, 0xaa, 0x77, 0x11, 0x43,
  382. 0x72, 0x0a, 0xed, 0x22, 0x61, 0x31, 0x9f, 0x8d, 0x05, 0x67, 0xa5, 0xce, 0xb4, 0xc1, 0x03, 0x94,
  383. 0xe2, 0x23, 0x67, 0x25, 0x19, 0x82, 0x13, 0x89, 0x9f, 0x7c, 0xe9, 0xd0, 0xf8, 0x1f, 0x87, 0x8e,
  384. 0xd1, 0x54, 0x1e, 0xde, 0x07, 0x68, 0xca, 0x16, 0x93, 0xfb, 0xd0, 0x2e, 0x32, 0x4c, 0xc7, 0xca,
  385. 0x5f, 0xf6, 0x64, 0x8b, 0x42, 0x55, 0xfa, 0x2c, 0x2b, 0xe4, 0x00, 0x1c, 0x09, 0x18, 0xb9, 0xcc,
  386. 0xbc, 0x45, 0x3b, 0x55, 0xf1, 0xb5, 0xae, 0x79, 0x8f, 0xc0, 0x56, 0x5d, 0x27, 0x2e, 0xb4, 0x90,
  387. 0x07, 0x13, 0x86, 0x91, 0xf6, 0x32, 0x57, 0x42, 0xa0, 0x91, 0xc5, 0xbf, 0x54, 0xcf, 0x1c, 0x2a,
  388. 0xcf, 0xdd, 0x0b, 0x0b, 0x3a, 0xa3, 0x32, 0xcb, 0x71, 0xfe, 0x77, 0xcc, 0xf4, 0x94, 0xa8, 0x8f,
  389. 0x73, 0xb4, 0x2a, 0xd3, 0x15, 0xcd, 0xb5, 0x59, 0xf1, 0xbe, 0x99, 0x60, 0x87, 0xb0, 0x1d, 0xf3,
  390. 0x89, 0x28, 0x78, 0x74, 0x3d, 0x9b, 0xa3, 0xab, 0x3a, 0xde, 0x11, 0xec, 0x1a, 0xec, 0x9f, 0x84,
  391. 0x3b, 0xba, 0x6e, 0x42, 0x76, 0x2f, 0x2d, 0xb0, 0x5f, 0xc9, 0xad, 0x22, 0xa7, 0xd0, 0x64, 0xb8,
  392. 0x40, 0xe6, 0x5a, 0xfb, 0xf5, 0x5e, 0x7b, 0xd0, 0x5b, 0xf1, 0x4c, 0x45, 0xfb, 0xef, 0x2b, 0xf4,
  393. 0x0d, 0xcf, 0xd3, 0x92, 0x2a, 0x19, 0x39, 0x01, 0x3b, 0x93, 0x11, 0x36, 0x6c, 0xc3, 0xd5, 0x9c,
  394. 0x54, 0x4b, 0xbc, 0xaf, 0x00, 0x4b, 0x47, 0xb2, 0x0b, 0xf5, 0x19, 0x96, 0x7a, 0x6f, 0xab, 0x23,
  395. 0x39, 0x36, 0xbb, 0xbc, 0x7e, 0x3a, 0xb5, 0xab, 0x62, 0x9f, 0xd6, 0x1e, 0x5b, 0xc3, 0xe7, 0x70,
  396. 0x27, 0x14, 0xf3, 0x9b, 0xf1, 0x33, 0xeb, 0xbb, 0xad, 0x4e, 0x17, 0xb5, 0xbd, 0x2f, 0x03, 0x1a,
  397. 0x54, 0xe9, 0x52, 0xf4, 0x5f, 0x26, 0x89, 0x76, 0x9a, 0xd8, 0xf2, 0x5f, 0x73, 0xfc, 0x27, 0x00,
  398. 0x00, 0xff, 0xff, 0x2c, 0x2e, 0xe6, 0xcf, 0x95, 0x04, 0x00, 0x00,
  399. }