config.pb.go 16 KB

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