config.pb.go 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420
  1. package internet
  2. import (
  3. fmt "fmt"
  4. proto "github.com/golang/protobuf/proto"
  5. math "math"
  6. serial "v2ray.com/core/common/serial"
  7. )
  8. // Reference imports to suppress errors if they are not otherwise used.
  9. var _ = proto.Marshal
  10. var _ = fmt.Errorf
  11. var _ = math.Inf
  12. // This is a compile-time assertion to ensure that this generated file
  13. // is compatible with the proto package it is being compiled against.
  14. // A compilation error at this line likely means your copy of the
  15. // proto package needs to be updated.
  16. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  17. type TransportProtocol int32
  18. const (
  19. TransportProtocol_TCP TransportProtocol = 0
  20. TransportProtocol_UDP TransportProtocol = 1
  21. TransportProtocol_MKCP TransportProtocol = 2
  22. TransportProtocol_WebSocket TransportProtocol = 3
  23. TransportProtocol_HTTP TransportProtocol = 4
  24. TransportProtocol_DomainSocket TransportProtocol = 5
  25. )
  26. var TransportProtocol_name = map[int32]string{
  27. 0: "TCP",
  28. 1: "UDP",
  29. 2: "MKCP",
  30. 3: "WebSocket",
  31. 4: "HTTP",
  32. 5: "DomainSocket",
  33. }
  34. var TransportProtocol_value = map[string]int32{
  35. "TCP": 0,
  36. "UDP": 1,
  37. "MKCP": 2,
  38. "WebSocket": 3,
  39. "HTTP": 4,
  40. "DomainSocket": 5,
  41. }
  42. func (x TransportProtocol) String() string {
  43. return proto.EnumName(TransportProtocol_name, int32(x))
  44. }
  45. func (TransportProtocol) EnumDescriptor() ([]byte, []int) {
  46. return fileDescriptor_91dbc815c3d97a05, []int{0}
  47. }
  48. type SocketConfig_TCPFastOpenState int32
  49. const (
  50. // AsIs is to leave the current TFO state as is, unmodified.
  51. SocketConfig_AsIs SocketConfig_TCPFastOpenState = 0
  52. // Enable is for enabling TFO explictly.
  53. SocketConfig_Enable SocketConfig_TCPFastOpenState = 1
  54. // Disable is for disabling TFO explictly.
  55. SocketConfig_Disable SocketConfig_TCPFastOpenState = 2
  56. )
  57. var SocketConfig_TCPFastOpenState_name = map[int32]string{
  58. 0: "AsIs",
  59. 1: "Enable",
  60. 2: "Disable",
  61. }
  62. var SocketConfig_TCPFastOpenState_value = map[string]int32{
  63. "AsIs": 0,
  64. "Enable": 1,
  65. "Disable": 2,
  66. }
  67. func (x SocketConfig_TCPFastOpenState) String() string {
  68. return proto.EnumName(SocketConfig_TCPFastOpenState_name, int32(x))
  69. }
  70. func (SocketConfig_TCPFastOpenState) EnumDescriptor() ([]byte, []int) {
  71. return fileDescriptor_91dbc815c3d97a05, []int{3, 0}
  72. }
  73. type SocketConfig_TProxyMode int32
  74. const (
  75. // TProxy is off.
  76. SocketConfig_Off SocketConfig_TProxyMode = 0
  77. // TProxy mode.
  78. SocketConfig_TProxy SocketConfig_TProxyMode = 1
  79. // Redirect mode.
  80. SocketConfig_Redirect SocketConfig_TProxyMode = 2
  81. )
  82. var SocketConfig_TProxyMode_name = map[int32]string{
  83. 0: "Off",
  84. 1: "TProxy",
  85. 2: "Redirect",
  86. }
  87. var SocketConfig_TProxyMode_value = map[string]int32{
  88. "Off": 0,
  89. "TProxy": 1,
  90. "Redirect": 2,
  91. }
  92. func (x SocketConfig_TProxyMode) String() string {
  93. return proto.EnumName(SocketConfig_TProxyMode_name, int32(x))
  94. }
  95. func (SocketConfig_TProxyMode) EnumDescriptor() ([]byte, []int) {
  96. return fileDescriptor_91dbc815c3d97a05, []int{3, 1}
  97. }
  98. type TransportConfig struct {
  99. // Type of network that this settings supports.
  100. // Deprecated. Use the string form below.
  101. Protocol TransportProtocol `protobuf:"varint,1,opt,name=protocol,proto3,enum=v2ray.core.transport.internet.TransportProtocol" json:"protocol,omitempty"`
  102. // Type of network that this settings supports.
  103. ProtocolName string `protobuf:"bytes,3,opt,name=protocol_name,json=protocolName,proto3" json:"protocol_name,omitempty"`
  104. // Specific settings. Must be of the transports.
  105. Settings *serial.TypedMessage `protobuf:"bytes,2,opt,name=settings,proto3" json:"settings,omitempty"`
  106. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  107. XXX_unrecognized []byte `json:"-"`
  108. XXX_sizecache int32 `json:"-"`
  109. }
  110. func (m *TransportConfig) Reset() { *m = TransportConfig{} }
  111. func (m *TransportConfig) String() string { return proto.CompactTextString(m) }
  112. func (*TransportConfig) ProtoMessage() {}
  113. func (*TransportConfig) Descriptor() ([]byte, []int) {
  114. return fileDescriptor_91dbc815c3d97a05, []int{0}
  115. }
  116. func (m *TransportConfig) XXX_Unmarshal(b []byte) error {
  117. return xxx_messageInfo_TransportConfig.Unmarshal(m, b)
  118. }
  119. func (m *TransportConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  120. return xxx_messageInfo_TransportConfig.Marshal(b, m, deterministic)
  121. }
  122. func (m *TransportConfig) XXX_Merge(src proto.Message) {
  123. xxx_messageInfo_TransportConfig.Merge(m, src)
  124. }
  125. func (m *TransportConfig) XXX_Size() int {
  126. return xxx_messageInfo_TransportConfig.Size(m)
  127. }
  128. func (m *TransportConfig) XXX_DiscardUnknown() {
  129. xxx_messageInfo_TransportConfig.DiscardUnknown(m)
  130. }
  131. var xxx_messageInfo_TransportConfig proto.InternalMessageInfo
  132. func (m *TransportConfig) GetProtocol() TransportProtocol {
  133. if m != nil {
  134. return m.Protocol
  135. }
  136. return TransportProtocol_TCP
  137. }
  138. func (m *TransportConfig) GetProtocolName() string {
  139. if m != nil {
  140. return m.ProtocolName
  141. }
  142. return ""
  143. }
  144. func (m *TransportConfig) GetSettings() *serial.TypedMessage {
  145. if m != nil {
  146. return m.Settings
  147. }
  148. return nil
  149. }
  150. type StreamConfig struct {
  151. // Effective network. Deprecated. Use the string form below.
  152. Protocol TransportProtocol `protobuf:"varint,1,opt,name=protocol,proto3,enum=v2ray.core.transport.internet.TransportProtocol" json:"protocol,omitempty"` // Deprecated: Do not use.
  153. // Effective network.
  154. ProtocolName string `protobuf:"bytes,5,opt,name=protocol_name,json=protocolName,proto3" json:"protocol_name,omitempty"`
  155. TransportSettings []*TransportConfig `protobuf:"bytes,2,rep,name=transport_settings,json=transportSettings,proto3" json:"transport_settings,omitempty"`
  156. // Type of security. Must be a message name of the settings proto.
  157. SecurityType string `protobuf:"bytes,3,opt,name=security_type,json=securityType,proto3" json:"security_type,omitempty"`
  158. // Settings for transport security. For now the only choice is TLS.
  159. SecuritySettings []*serial.TypedMessage `protobuf:"bytes,4,rep,name=security_settings,json=securitySettings,proto3" json:"security_settings,omitempty"`
  160. SocketSettings *SocketConfig `protobuf:"bytes,6,opt,name=socket_settings,json=socketSettings,proto3" json:"socket_settings,omitempty"`
  161. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  162. XXX_unrecognized []byte `json:"-"`
  163. XXX_sizecache int32 `json:"-"`
  164. }
  165. func (m *StreamConfig) Reset() { *m = StreamConfig{} }
  166. func (m *StreamConfig) String() string { return proto.CompactTextString(m) }
  167. func (*StreamConfig) ProtoMessage() {}
  168. func (*StreamConfig) Descriptor() ([]byte, []int) {
  169. return fileDescriptor_91dbc815c3d97a05, []int{1}
  170. }
  171. func (m *StreamConfig) XXX_Unmarshal(b []byte) error {
  172. return xxx_messageInfo_StreamConfig.Unmarshal(m, b)
  173. }
  174. func (m *StreamConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  175. return xxx_messageInfo_StreamConfig.Marshal(b, m, deterministic)
  176. }
  177. func (m *StreamConfig) XXX_Merge(src proto.Message) {
  178. xxx_messageInfo_StreamConfig.Merge(m, src)
  179. }
  180. func (m *StreamConfig) XXX_Size() int {
  181. return xxx_messageInfo_StreamConfig.Size(m)
  182. }
  183. func (m *StreamConfig) XXX_DiscardUnknown() {
  184. xxx_messageInfo_StreamConfig.DiscardUnknown(m)
  185. }
  186. var xxx_messageInfo_StreamConfig proto.InternalMessageInfo
  187. // Deprecated: Do not use.
  188. func (m *StreamConfig) GetProtocol() TransportProtocol {
  189. if m != nil {
  190. return m.Protocol
  191. }
  192. return TransportProtocol_TCP
  193. }
  194. func (m *StreamConfig) GetProtocolName() string {
  195. if m != nil {
  196. return m.ProtocolName
  197. }
  198. return ""
  199. }
  200. func (m *StreamConfig) GetTransportSettings() []*TransportConfig {
  201. if m != nil {
  202. return m.TransportSettings
  203. }
  204. return nil
  205. }
  206. func (m *StreamConfig) GetSecurityType() string {
  207. if m != nil {
  208. return m.SecurityType
  209. }
  210. return ""
  211. }
  212. func (m *StreamConfig) GetSecuritySettings() []*serial.TypedMessage {
  213. if m != nil {
  214. return m.SecuritySettings
  215. }
  216. return nil
  217. }
  218. func (m *StreamConfig) GetSocketSettings() *SocketConfig {
  219. if m != nil {
  220. return m.SocketSettings
  221. }
  222. return nil
  223. }
  224. type ProxyConfig struct {
  225. Tag string `protobuf:"bytes,1,opt,name=tag,proto3" json:"tag,omitempty"`
  226. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  227. XXX_unrecognized []byte `json:"-"`
  228. XXX_sizecache int32 `json:"-"`
  229. }
  230. func (m *ProxyConfig) Reset() { *m = ProxyConfig{} }
  231. func (m *ProxyConfig) String() string { return proto.CompactTextString(m) }
  232. func (*ProxyConfig) ProtoMessage() {}
  233. func (*ProxyConfig) Descriptor() ([]byte, []int) {
  234. return fileDescriptor_91dbc815c3d97a05, []int{2}
  235. }
  236. func (m *ProxyConfig) XXX_Unmarshal(b []byte) error {
  237. return xxx_messageInfo_ProxyConfig.Unmarshal(m, b)
  238. }
  239. func (m *ProxyConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  240. return xxx_messageInfo_ProxyConfig.Marshal(b, m, deterministic)
  241. }
  242. func (m *ProxyConfig) XXX_Merge(src proto.Message) {
  243. xxx_messageInfo_ProxyConfig.Merge(m, src)
  244. }
  245. func (m *ProxyConfig) XXX_Size() int {
  246. return xxx_messageInfo_ProxyConfig.Size(m)
  247. }
  248. func (m *ProxyConfig) XXX_DiscardUnknown() {
  249. xxx_messageInfo_ProxyConfig.DiscardUnknown(m)
  250. }
  251. var xxx_messageInfo_ProxyConfig proto.InternalMessageInfo
  252. func (m *ProxyConfig) GetTag() string {
  253. if m != nil {
  254. return m.Tag
  255. }
  256. return ""
  257. }
  258. // SocketConfig is options to be applied on network sockets.
  259. type SocketConfig struct {
  260. // Mark of the connection. If non-zero, the value will be set to SO_MARK.
  261. Mark int32 `protobuf:"varint,1,opt,name=mark,proto3" json:"mark,omitempty"`
  262. // TFO is the state of TFO settings.
  263. Tfo SocketConfig_TCPFastOpenState `protobuf:"varint,2,opt,name=tfo,proto3,enum=v2ray.core.transport.internet.SocketConfig_TCPFastOpenState" json:"tfo,omitempty"`
  264. // TProxy is for enabling TProxy socket option.
  265. Tproxy SocketConfig_TProxyMode `protobuf:"varint,3,opt,name=tproxy,proto3,enum=v2ray.core.transport.internet.SocketConfig_TProxyMode" json:"tproxy,omitempty"`
  266. // ReceiveOriginalDestAddress is for enabling IP_RECVORIGDSTADDR socket option.
  267. ReceiveOriginalDestAddress bool `protobuf:"varint,4,opt,name=receive_original_dest_address,json=receiveOriginalDestAddress,proto3" json:"receive_original_dest_address,omitempty"`
  268. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  269. XXX_unrecognized []byte `json:"-"`
  270. XXX_sizecache int32 `json:"-"`
  271. }
  272. func (m *SocketConfig) Reset() { *m = SocketConfig{} }
  273. func (m *SocketConfig) String() string { return proto.CompactTextString(m) }
  274. func (*SocketConfig) ProtoMessage() {}
  275. func (*SocketConfig) Descriptor() ([]byte, []int) {
  276. return fileDescriptor_91dbc815c3d97a05, []int{3}
  277. }
  278. func (m *SocketConfig) XXX_Unmarshal(b []byte) error {
  279. return xxx_messageInfo_SocketConfig.Unmarshal(m, b)
  280. }
  281. func (m *SocketConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  282. return xxx_messageInfo_SocketConfig.Marshal(b, m, deterministic)
  283. }
  284. func (m *SocketConfig) XXX_Merge(src proto.Message) {
  285. xxx_messageInfo_SocketConfig.Merge(m, src)
  286. }
  287. func (m *SocketConfig) XXX_Size() int {
  288. return xxx_messageInfo_SocketConfig.Size(m)
  289. }
  290. func (m *SocketConfig) XXX_DiscardUnknown() {
  291. xxx_messageInfo_SocketConfig.DiscardUnknown(m)
  292. }
  293. var xxx_messageInfo_SocketConfig proto.InternalMessageInfo
  294. func (m *SocketConfig) GetMark() int32 {
  295. if m != nil {
  296. return m.Mark
  297. }
  298. return 0
  299. }
  300. func (m *SocketConfig) GetTfo() SocketConfig_TCPFastOpenState {
  301. if m != nil {
  302. return m.Tfo
  303. }
  304. return SocketConfig_AsIs
  305. }
  306. func (m *SocketConfig) GetTproxy() SocketConfig_TProxyMode {
  307. if m != nil {
  308. return m.Tproxy
  309. }
  310. return SocketConfig_Off
  311. }
  312. func (m *SocketConfig) GetReceiveOriginalDestAddress() bool {
  313. if m != nil {
  314. return m.ReceiveOriginalDestAddress
  315. }
  316. return false
  317. }
  318. func init() {
  319. proto.RegisterType((*TransportConfig)(nil), "v2ray.core.transport.internet.TransportConfig")
  320. proto.RegisterType((*StreamConfig)(nil), "v2ray.core.transport.internet.StreamConfig")
  321. proto.RegisterType((*ProxyConfig)(nil), "v2ray.core.transport.internet.ProxyConfig")
  322. proto.RegisterType((*SocketConfig)(nil), "v2ray.core.transport.internet.SocketConfig")
  323. proto.RegisterEnum("v2ray.core.transport.internet.TransportProtocol", TransportProtocol_name, TransportProtocol_value)
  324. proto.RegisterEnum("v2ray.core.transport.internet.SocketConfig_TCPFastOpenState", SocketConfig_TCPFastOpenState_name, SocketConfig_TCPFastOpenState_value)
  325. proto.RegisterEnum("v2ray.core.transport.internet.SocketConfig_TProxyMode", SocketConfig_TProxyMode_name, SocketConfig_TProxyMode_value)
  326. }
  327. func init() {
  328. proto.RegisterFile("v2ray.com/core/transport/internet/config.proto", fileDescriptor_91dbc815c3d97a05)
  329. }
  330. var fileDescriptor_91dbc815c3d97a05 = []byte{
  331. // 607 bytes of a gzipped FileDescriptorProto
  332. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x53, 0xdd, 0x6e, 0xd3, 0x4c,
  333. 0x10, 0xad, 0xed, 0x34, 0x4d, 0x27, 0x69, 0xea, 0xee, 0x55, 0x54, 0xa9, 0xfa, 0xfa, 0x05, 0x09,
  334. 0x45, 0x20, 0xad, 0x2b, 0x23, 0xb8, 0xe2, 0xa6, 0x4d, 0x40, 0x54, 0xd0, 0xc6, 0x72, 0x0c, 0x48,
  335. 0x95, 0x90, 0xb5, 0x75, 0x26, 0x91, 0xd5, 0xd8, 0x1b, 0xed, 0x2e, 0x15, 0x79, 0x25, 0xae, 0x79,
  336. 0x08, 0x5e, 0x86, 0x77, 0x40, 0xbb, 0xfe, 0x21, 0x2a, 0x28, 0xb4, 0xe2, 0x6e, 0x3c, 0x73, 0xe6,
  337. 0xcc, 0x39, 0x33, 0x5e, 0xa0, 0xb7, 0xbe, 0x60, 0x2b, 0x9a, 0xf0, 0xcc, 0x4b, 0xb8, 0x40, 0x4f,
  338. 0x09, 0x96, 0xcb, 0x25, 0x17, 0xca, 0x4b, 0x73, 0x85, 0x22, 0x47, 0xe5, 0x25, 0x3c, 0x9f, 0xa5,
  339. 0x73, 0xba, 0x14, 0x5c, 0x71, 0x72, 0x54, 0xe1, 0x05, 0xd2, 0x1a, 0x4b, 0x2b, 0xec, 0xe1, 0xc9,
  340. 0x1d, 0xba, 0x84, 0x67, 0x19, 0xcf, 0x3d, 0x89, 0x22, 0x65, 0x0b, 0x4f, 0xad, 0x96, 0x38, 0x8d,
  341. 0x33, 0x94, 0x92, 0xcd, 0xb1, 0x20, 0xec, 0x7f, 0xb7, 0x60, 0x3f, 0xaa, 0x88, 0x86, 0x66, 0x14,
  342. 0x79, 0x07, 0x2d, 0x53, 0x4c, 0xf8, 0xa2, 0x67, 0x1d, 0x5b, 0x83, 0xae, 0x7f, 0x42, 0x37, 0xce,
  343. 0xa5, 0x35, 0x43, 0x50, 0xf6, 0x85, 0x35, 0x03, 0x79, 0x04, 0x7b, 0x55, 0x1c, 0xe7, 0x2c, 0xc3,
  344. 0x9e, 0x73, 0x6c, 0x0d, 0x76, 0xc3, 0x4e, 0x95, 0xbc, 0x64, 0x19, 0x92, 0x33, 0x68, 0x49, 0x54,
  345. 0x2a, 0xcd, 0xe7, 0xb2, 0x67, 0x1f, 0x5b, 0x83, 0xb6, 0xff, 0x78, 0x7d, 0x64, 0xe1, 0x83, 0x16,
  346. 0x3e, 0x68, 0xa4, 0x7d, 0x5c, 0x14, 0x36, 0xc2, 0xba, 0xaf, 0xff, 0xcd, 0x81, 0xce, 0x44, 0x09,
  347. 0x64, 0x59, 0xe9, 0x23, 0xf8, 0x77, 0x1f, 0x67, 0x76, 0xcf, 0xda, 0xe4, 0x65, 0xfb, 0x0f, 0x5e,
  348. 0x3e, 0x01, 0xa9, 0xa9, 0xe3, 0x35, 0x57, 0xce, 0xa0, 0xed, 0xd3, 0xfb, 0x0a, 0x28, 0x2c, 0x84,
  349. 0x07, 0x35, 0x66, 0x52, 0x12, 0x69, 0x0d, 0x12, 0x93, 0xcf, 0x22, 0x55, 0xab, 0x58, 0x5f, 0xb4,
  350. 0xda, 0x67, 0x95, 0xd4, 0xdb, 0x21, 0x13, 0x38, 0xa8, 0x41, 0xb5, 0x84, 0x86, 0x91, 0x70, 0xdf,
  351. 0xc5, 0xba, 0x15, 0x41, 0x3d, 0x39, 0x82, 0x7d, 0xc9, 0x93, 0x1b, 0x5c, 0x73, 0xd5, 0x34, 0xb7,
  352. 0x7a, 0xfa, 0x17, 0x57, 0x13, 0xd3, 0x55, 0x5a, 0xea, 0x16, 0x1c, 0x15, 0x6b, 0xff, 0x3f, 0x68,
  353. 0x07, 0x82, 0x7f, 0x59, 0x95, 0x47, 0x73, 0xc1, 0x51, 0x6c, 0x6e, 0xee, 0xb5, 0x1b, 0xea, 0xb0,
  354. 0xff, 0xc3, 0x86, 0xce, 0x3a, 0x03, 0x21, 0xd0, 0xc8, 0x98, 0xb8, 0x31, 0x98, 0xed, 0xd0, 0xc4,
  355. 0xe4, 0x12, 0x1c, 0x35, 0xe3, 0xe6, 0xdf, 0xe9, 0xfa, 0x2f, 0x1f, 0xa0, 0x87, 0x46, 0xc3, 0xe0,
  356. 0x35, 0x93, 0x6a, 0xbc, 0xc4, 0x7c, 0xa2, 0x98, 0xc2, 0x50, 0x13, 0x91, 0x4b, 0x68, 0xaa, 0xa5,
  357. 0x96, 0x65, 0xd6, 0xdb, 0xf5, 0x5f, 0x3c, 0x88, 0xd2, 0x18, 0xba, 0xe0, 0x53, 0x0c, 0x4b, 0x16,
  358. 0x72, 0x0a, 0x47, 0x02, 0x13, 0x4c, 0x6f, 0x31, 0xe6, 0x22, 0x9d, 0xa7, 0x39, 0x5b, 0xc4, 0x53,
  359. 0x94, 0x2a, 0x66, 0xd3, 0xa9, 0x40, 0xa9, 0x8f, 0x63, 0x0d, 0x5a, 0xe1, 0x61, 0x09, 0x1a, 0x97,
  360. 0x98, 0x11, 0x4a, 0x75, 0x5a, 0x20, 0xfa, 0xcf, 0xc1, 0xbd, 0xab, 0x95, 0xb4, 0xa0, 0x71, 0x2a,
  361. 0xcf, 0xa5, 0xbb, 0x45, 0x00, 0x9a, 0xaf, 0x72, 0x76, 0xbd, 0x40, 0xd7, 0x22, 0x6d, 0xd8, 0x19,
  362. 0xa5, 0xd2, 0x7c, 0xd8, 0x7d, 0x0f, 0xe0, 0x97, 0x1e, 0xb2, 0x03, 0xce, 0x78, 0x36, 0x2b, 0xf0,
  363. 0x45, 0xda, 0xb5, 0x48, 0x07, 0x5a, 0x21, 0x4e, 0x53, 0x81, 0x89, 0x72, 0xed, 0x27, 0x57, 0x70,
  364. 0xf0, 0xdb, 0x3b, 0xd0, 0x7d, 0xd1, 0x30, 0x70, 0xb7, 0x74, 0xf0, 0x7e, 0x14, 0xb8, 0x96, 0x1e,
  365. 0x7d, 0xf1, 0x76, 0x18, 0xb8, 0x36, 0xd9, 0x83, 0xdd, 0x8f, 0x78, 0x5d, 0x6c, 0xc0, 0x75, 0x74,
  366. 0xe1, 0x4d, 0x14, 0x05, 0x6e, 0x83, 0xb8, 0xd0, 0x19, 0xf1, 0x8c, 0xa5, 0x79, 0x59, 0xdb, 0x3e,
  367. 0x1b, 0xc3, 0xff, 0x09, 0xcf, 0x36, 0xef, 0x32, 0xb0, 0xae, 0x5a, 0x55, 0xfc, 0xd5, 0x3e, 0xfa,
  368. 0xe0, 0x87, 0x6c, 0x45, 0x87, 0x1a, 0x5b, 0xcb, 0xa2, 0xe7, 0x65, 0xfd, 0xba, 0x69, 0x9e, 0xde,
  369. 0xb3, 0x9f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xf2, 0x99, 0xd5, 0x37, 0x49, 0x05, 0x00, 0x00,
  370. }