1// Code generated by protoc-gen-go. DO NOT EDIT.
2// source: envoy/admin/v3/server_info.proto
3
4package envoy_admin_v3
5
6import (
7	fmt "fmt"
8	_ "github.com/cncf/udpa/go/udpa/annotations"
9	_ "github.com/envoyproxy/go-control-plane/envoy/annotations"
10	proto "github.com/golang/protobuf/proto"
11	duration "github.com/golang/protobuf/ptypes/duration"
12	math "math"
13)
14
15// Reference imports to suppress errors if they are not otherwise used.
16var _ = proto.Marshal
17var _ = fmt.Errorf
18var _ = math.Inf
19
20// This is a compile-time assertion to ensure that this generated file
21// is compatible with the proto package it is being compiled against.
22// A compilation error at this line likely means your copy of the
23// proto package needs to be updated.
24const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
25
26type ServerInfo_State int32
27
28const (
29	ServerInfo_LIVE             ServerInfo_State = 0
30	ServerInfo_DRAINING         ServerInfo_State = 1
31	ServerInfo_PRE_INITIALIZING ServerInfo_State = 2
32	ServerInfo_INITIALIZING     ServerInfo_State = 3
33)
34
35var ServerInfo_State_name = map[int32]string{
36	0: "LIVE",
37	1: "DRAINING",
38	2: "PRE_INITIALIZING",
39	3: "INITIALIZING",
40}
41
42var ServerInfo_State_value = map[string]int32{
43	"LIVE":             0,
44	"DRAINING":         1,
45	"PRE_INITIALIZING": 2,
46	"INITIALIZING":     3,
47}
48
49func (x ServerInfo_State) String() string {
50	return proto.EnumName(ServerInfo_State_name, int32(x))
51}
52
53func (ServerInfo_State) EnumDescriptor() ([]byte, []int) {
54	return fileDescriptor_8736ae14312a45ee, []int{0, 0}
55}
56
57type CommandLineOptions_IpVersion int32
58
59const (
60	CommandLineOptions_v4 CommandLineOptions_IpVersion = 0
61	CommandLineOptions_v6 CommandLineOptions_IpVersion = 1
62)
63
64var CommandLineOptions_IpVersion_name = map[int32]string{
65	0: "v4",
66	1: "v6",
67}
68
69var CommandLineOptions_IpVersion_value = map[string]int32{
70	"v4": 0,
71	"v6": 1,
72}
73
74func (x CommandLineOptions_IpVersion) String() string {
75	return proto.EnumName(CommandLineOptions_IpVersion_name, int32(x))
76}
77
78func (CommandLineOptions_IpVersion) EnumDescriptor() ([]byte, []int) {
79	return fileDescriptor_8736ae14312a45ee, []int{1, 0}
80}
81
82type CommandLineOptions_Mode int32
83
84const (
85	CommandLineOptions_Serve    CommandLineOptions_Mode = 0
86	CommandLineOptions_Validate CommandLineOptions_Mode = 1
87	CommandLineOptions_InitOnly CommandLineOptions_Mode = 2
88)
89
90var CommandLineOptions_Mode_name = map[int32]string{
91	0: "Serve",
92	1: "Validate",
93	2: "InitOnly",
94}
95
96var CommandLineOptions_Mode_value = map[string]int32{
97	"Serve":    0,
98	"Validate": 1,
99	"InitOnly": 2,
100}
101
102func (x CommandLineOptions_Mode) String() string {
103	return proto.EnumName(CommandLineOptions_Mode_name, int32(x))
104}
105
106func (CommandLineOptions_Mode) EnumDescriptor() ([]byte, []int) {
107	return fileDescriptor_8736ae14312a45ee, []int{1, 1}
108}
109
110type ServerInfo struct {
111	Version              string              `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
112	State                ServerInfo_State    `protobuf:"varint,2,opt,name=state,proto3,enum=envoy.admin.v3.ServerInfo_State" json:"state,omitempty"`
113	UptimeCurrentEpoch   *duration.Duration  `protobuf:"bytes,3,opt,name=uptime_current_epoch,json=uptimeCurrentEpoch,proto3" json:"uptime_current_epoch,omitempty"`
114	UptimeAllEpochs      *duration.Duration  `protobuf:"bytes,4,opt,name=uptime_all_epochs,json=uptimeAllEpochs,proto3" json:"uptime_all_epochs,omitempty"`
115	HotRestartVersion    string              `protobuf:"bytes,5,opt,name=hot_restart_version,json=hotRestartVersion,proto3" json:"hot_restart_version,omitempty"`
116	CommandLineOptions   *CommandLineOptions `protobuf:"bytes,6,opt,name=command_line_options,json=commandLineOptions,proto3" json:"command_line_options,omitempty"`
117	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
118	XXX_unrecognized     []byte              `json:"-"`
119	XXX_sizecache        int32               `json:"-"`
120}
121
122func (m *ServerInfo) Reset()         { *m = ServerInfo{} }
123func (m *ServerInfo) String() string { return proto.CompactTextString(m) }
124func (*ServerInfo) ProtoMessage()    {}
125func (*ServerInfo) Descriptor() ([]byte, []int) {
126	return fileDescriptor_8736ae14312a45ee, []int{0}
127}
128
129func (m *ServerInfo) XXX_Unmarshal(b []byte) error {
130	return xxx_messageInfo_ServerInfo.Unmarshal(m, b)
131}
132func (m *ServerInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
133	return xxx_messageInfo_ServerInfo.Marshal(b, m, deterministic)
134}
135func (m *ServerInfo) XXX_Merge(src proto.Message) {
136	xxx_messageInfo_ServerInfo.Merge(m, src)
137}
138func (m *ServerInfo) XXX_Size() int {
139	return xxx_messageInfo_ServerInfo.Size(m)
140}
141func (m *ServerInfo) XXX_DiscardUnknown() {
142	xxx_messageInfo_ServerInfo.DiscardUnknown(m)
143}
144
145var xxx_messageInfo_ServerInfo proto.InternalMessageInfo
146
147func (m *ServerInfo) GetVersion() string {
148	if m != nil {
149		return m.Version
150	}
151	return ""
152}
153
154func (m *ServerInfo) GetState() ServerInfo_State {
155	if m != nil {
156		return m.State
157	}
158	return ServerInfo_LIVE
159}
160
161func (m *ServerInfo) GetUptimeCurrentEpoch() *duration.Duration {
162	if m != nil {
163		return m.UptimeCurrentEpoch
164	}
165	return nil
166}
167
168func (m *ServerInfo) GetUptimeAllEpochs() *duration.Duration {
169	if m != nil {
170		return m.UptimeAllEpochs
171	}
172	return nil
173}
174
175func (m *ServerInfo) GetHotRestartVersion() string {
176	if m != nil {
177		return m.HotRestartVersion
178	}
179	return ""
180}
181
182func (m *ServerInfo) GetCommandLineOptions() *CommandLineOptions {
183	if m != nil {
184		return m.CommandLineOptions
185	}
186	return nil
187}
188
189type CommandLineOptions struct {
190	BaseId                             uint64                       `protobuf:"varint,1,opt,name=base_id,json=baseId,proto3" json:"base_id,omitempty"`
191	Concurrency                        uint32                       `protobuf:"varint,2,opt,name=concurrency,proto3" json:"concurrency,omitempty"`
192	ConfigPath                         string                       `protobuf:"bytes,3,opt,name=config_path,json=configPath,proto3" json:"config_path,omitempty"`
193	ConfigYaml                         string                       `protobuf:"bytes,4,opt,name=config_yaml,json=configYaml,proto3" json:"config_yaml,omitempty"`
194	AllowUnknownStaticFields           bool                         `protobuf:"varint,5,opt,name=allow_unknown_static_fields,json=allowUnknownStaticFields,proto3" json:"allow_unknown_static_fields,omitempty"`
195	RejectUnknownDynamicFields         bool                         `protobuf:"varint,26,opt,name=reject_unknown_dynamic_fields,json=rejectUnknownDynamicFields,proto3" json:"reject_unknown_dynamic_fields,omitempty"`
196	AdminAddressPath                   string                       `protobuf:"bytes,6,opt,name=admin_address_path,json=adminAddressPath,proto3" json:"admin_address_path,omitempty"`
197	LocalAddressIpVersion              CommandLineOptions_IpVersion `protobuf:"varint,7,opt,name=local_address_ip_version,json=localAddressIpVersion,proto3,enum=envoy.admin.v3.CommandLineOptions_IpVersion" json:"local_address_ip_version,omitempty"`
198	LogLevel                           string                       `protobuf:"bytes,8,opt,name=log_level,json=logLevel,proto3" json:"log_level,omitempty"`
199	ComponentLogLevel                  string                       `protobuf:"bytes,9,opt,name=component_log_level,json=componentLogLevel,proto3" json:"component_log_level,omitempty"`
200	LogFormat                          string                       `protobuf:"bytes,10,opt,name=log_format,json=logFormat,proto3" json:"log_format,omitempty"`
201	LogFormatEscaped                   bool                         `protobuf:"varint,27,opt,name=log_format_escaped,json=logFormatEscaped,proto3" json:"log_format_escaped,omitempty"`
202	LogPath                            string                       `protobuf:"bytes,11,opt,name=log_path,json=logPath,proto3" json:"log_path,omitempty"`
203	ServiceCluster                     string                       `protobuf:"bytes,13,opt,name=service_cluster,json=serviceCluster,proto3" json:"service_cluster,omitempty"`
204	ServiceNode                        string                       `protobuf:"bytes,14,opt,name=service_node,json=serviceNode,proto3" json:"service_node,omitempty"`
205	ServiceZone                        string                       `protobuf:"bytes,15,opt,name=service_zone,json=serviceZone,proto3" json:"service_zone,omitempty"`
206	FileFlushInterval                  *duration.Duration           `protobuf:"bytes,16,opt,name=file_flush_interval,json=fileFlushInterval,proto3" json:"file_flush_interval,omitempty"`
207	DrainTime                          *duration.Duration           `protobuf:"bytes,17,opt,name=drain_time,json=drainTime,proto3" json:"drain_time,omitempty"`
208	ParentShutdownTime                 *duration.Duration           `protobuf:"bytes,18,opt,name=parent_shutdown_time,json=parentShutdownTime,proto3" json:"parent_shutdown_time,omitempty"`
209	Mode                               CommandLineOptions_Mode      `protobuf:"varint,19,opt,name=mode,proto3,enum=envoy.admin.v3.CommandLineOptions_Mode" json:"mode,omitempty"`
210	HiddenEnvoyDeprecatedMaxStats      uint64                       `protobuf:"varint,20,opt,name=hidden_envoy_deprecated_max_stats,json=hiddenEnvoyDeprecatedMaxStats,proto3" json:"hidden_envoy_deprecated_max_stats,omitempty"`                    // Deprecated: Do not use.
211	HiddenEnvoyDeprecatedMaxObjNameLen uint64                       `protobuf:"varint,21,opt,name=hidden_envoy_deprecated_max_obj_name_len,json=hiddenEnvoyDeprecatedMaxObjNameLen,proto3" json:"hidden_envoy_deprecated_max_obj_name_len,omitempty"` // Deprecated: Do not use.
212	DisableHotRestart                  bool                         `protobuf:"varint,22,opt,name=disable_hot_restart,json=disableHotRestart,proto3" json:"disable_hot_restart,omitempty"`
213	EnableMutexTracing                 bool                         `protobuf:"varint,23,opt,name=enable_mutex_tracing,json=enableMutexTracing,proto3" json:"enable_mutex_tracing,omitempty"`
214	RestartEpoch                       uint32                       `protobuf:"varint,24,opt,name=restart_epoch,json=restartEpoch,proto3" json:"restart_epoch,omitempty"`
215	CpusetThreads                      bool                         `protobuf:"varint,25,opt,name=cpuset_threads,json=cpusetThreads,proto3" json:"cpuset_threads,omitempty"`
216	DisabledExtensions                 []string                     `protobuf:"bytes,28,rep,name=disabled_extensions,json=disabledExtensions,proto3" json:"disabled_extensions,omitempty"`
217	XXX_NoUnkeyedLiteral               struct{}                     `json:"-"`
218	XXX_unrecognized                   []byte                       `json:"-"`
219	XXX_sizecache                      int32                        `json:"-"`
220}
221
222func (m *CommandLineOptions) Reset()         { *m = CommandLineOptions{} }
223func (m *CommandLineOptions) String() string { return proto.CompactTextString(m) }
224func (*CommandLineOptions) ProtoMessage()    {}
225func (*CommandLineOptions) Descriptor() ([]byte, []int) {
226	return fileDescriptor_8736ae14312a45ee, []int{1}
227}
228
229func (m *CommandLineOptions) XXX_Unmarshal(b []byte) error {
230	return xxx_messageInfo_CommandLineOptions.Unmarshal(m, b)
231}
232func (m *CommandLineOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
233	return xxx_messageInfo_CommandLineOptions.Marshal(b, m, deterministic)
234}
235func (m *CommandLineOptions) XXX_Merge(src proto.Message) {
236	xxx_messageInfo_CommandLineOptions.Merge(m, src)
237}
238func (m *CommandLineOptions) XXX_Size() int {
239	return xxx_messageInfo_CommandLineOptions.Size(m)
240}
241func (m *CommandLineOptions) XXX_DiscardUnknown() {
242	xxx_messageInfo_CommandLineOptions.DiscardUnknown(m)
243}
244
245var xxx_messageInfo_CommandLineOptions proto.InternalMessageInfo
246
247func (m *CommandLineOptions) GetBaseId() uint64 {
248	if m != nil {
249		return m.BaseId
250	}
251	return 0
252}
253
254func (m *CommandLineOptions) GetConcurrency() uint32 {
255	if m != nil {
256		return m.Concurrency
257	}
258	return 0
259}
260
261func (m *CommandLineOptions) GetConfigPath() string {
262	if m != nil {
263		return m.ConfigPath
264	}
265	return ""
266}
267
268func (m *CommandLineOptions) GetConfigYaml() string {
269	if m != nil {
270		return m.ConfigYaml
271	}
272	return ""
273}
274
275func (m *CommandLineOptions) GetAllowUnknownStaticFields() bool {
276	if m != nil {
277		return m.AllowUnknownStaticFields
278	}
279	return false
280}
281
282func (m *CommandLineOptions) GetRejectUnknownDynamicFields() bool {
283	if m != nil {
284		return m.RejectUnknownDynamicFields
285	}
286	return false
287}
288
289func (m *CommandLineOptions) GetAdminAddressPath() string {
290	if m != nil {
291		return m.AdminAddressPath
292	}
293	return ""
294}
295
296func (m *CommandLineOptions) GetLocalAddressIpVersion() CommandLineOptions_IpVersion {
297	if m != nil {
298		return m.LocalAddressIpVersion
299	}
300	return CommandLineOptions_v4
301}
302
303func (m *CommandLineOptions) GetLogLevel() string {
304	if m != nil {
305		return m.LogLevel
306	}
307	return ""
308}
309
310func (m *CommandLineOptions) GetComponentLogLevel() string {
311	if m != nil {
312		return m.ComponentLogLevel
313	}
314	return ""
315}
316
317func (m *CommandLineOptions) GetLogFormat() string {
318	if m != nil {
319		return m.LogFormat
320	}
321	return ""
322}
323
324func (m *CommandLineOptions) GetLogFormatEscaped() bool {
325	if m != nil {
326		return m.LogFormatEscaped
327	}
328	return false
329}
330
331func (m *CommandLineOptions) GetLogPath() string {
332	if m != nil {
333		return m.LogPath
334	}
335	return ""
336}
337
338func (m *CommandLineOptions) GetServiceCluster() string {
339	if m != nil {
340		return m.ServiceCluster
341	}
342	return ""
343}
344
345func (m *CommandLineOptions) GetServiceNode() string {
346	if m != nil {
347		return m.ServiceNode
348	}
349	return ""
350}
351
352func (m *CommandLineOptions) GetServiceZone() string {
353	if m != nil {
354		return m.ServiceZone
355	}
356	return ""
357}
358
359func (m *CommandLineOptions) GetFileFlushInterval() *duration.Duration {
360	if m != nil {
361		return m.FileFlushInterval
362	}
363	return nil
364}
365
366func (m *CommandLineOptions) GetDrainTime() *duration.Duration {
367	if m != nil {
368		return m.DrainTime
369	}
370	return nil
371}
372
373func (m *CommandLineOptions) GetParentShutdownTime() *duration.Duration {
374	if m != nil {
375		return m.ParentShutdownTime
376	}
377	return nil
378}
379
380func (m *CommandLineOptions) GetMode() CommandLineOptions_Mode {
381	if m != nil {
382		return m.Mode
383	}
384	return CommandLineOptions_Serve
385}
386
387// Deprecated: Do not use.
388func (m *CommandLineOptions) GetHiddenEnvoyDeprecatedMaxStats() uint64 {
389	if m != nil {
390		return m.HiddenEnvoyDeprecatedMaxStats
391	}
392	return 0
393}
394
395// Deprecated: Do not use.
396func (m *CommandLineOptions) GetHiddenEnvoyDeprecatedMaxObjNameLen() uint64 {
397	if m != nil {
398		return m.HiddenEnvoyDeprecatedMaxObjNameLen
399	}
400	return 0
401}
402
403func (m *CommandLineOptions) GetDisableHotRestart() bool {
404	if m != nil {
405		return m.DisableHotRestart
406	}
407	return false
408}
409
410func (m *CommandLineOptions) GetEnableMutexTracing() bool {
411	if m != nil {
412		return m.EnableMutexTracing
413	}
414	return false
415}
416
417func (m *CommandLineOptions) GetRestartEpoch() uint32 {
418	if m != nil {
419		return m.RestartEpoch
420	}
421	return 0
422}
423
424func (m *CommandLineOptions) GetCpusetThreads() bool {
425	if m != nil {
426		return m.CpusetThreads
427	}
428	return false
429}
430
431func (m *CommandLineOptions) GetDisabledExtensions() []string {
432	if m != nil {
433		return m.DisabledExtensions
434	}
435	return nil
436}
437
438func init() {
439	proto.RegisterEnum("envoy.admin.v3.ServerInfo_State", ServerInfo_State_name, ServerInfo_State_value)
440	proto.RegisterEnum("envoy.admin.v3.CommandLineOptions_IpVersion", CommandLineOptions_IpVersion_name, CommandLineOptions_IpVersion_value)
441	proto.RegisterEnum("envoy.admin.v3.CommandLineOptions_Mode", CommandLineOptions_Mode_name, CommandLineOptions_Mode_value)
442	proto.RegisterType((*ServerInfo)(nil), "envoy.admin.v3.ServerInfo")
443	proto.RegisterType((*CommandLineOptions)(nil), "envoy.admin.v3.CommandLineOptions")
444}
445
446func init() { proto.RegisterFile("envoy/admin/v3/server_info.proto", fileDescriptor_8736ae14312a45ee) }
447
448var fileDescriptor_8736ae14312a45ee = []byte{
449	// 1097 bytes of a gzipped FileDescriptorProto
450	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x55, 0x5b, 0x6e, 0x1b, 0x37,
451	0x1b, 0x8d, 0x6c, 0xd9, 0x91, 0xe8, 0xdb, 0x98, 0x71, 0xfe, 0x4c, 0xec, 0xd8, 0xbf, 0xac, 0x20,
452	0x8d, 0x1e, 0x12, 0xa9, 0xb5, 0x8b, 0xa0, 0x48, 0xd1, 0x07, 0x5f, 0xe4, 0x74, 0x5a, 0xf9, 0x82,
453	0xb1, 0x6b, 0xa0, 0x79, 0x28, 0x41, 0x0d, 0x29, 0x89, 0x2e, 0x87, 0x1c, 0xcc, 0x50, 0x8a, 0xd5,
454	0x15, 0x74, 0x0d, 0x5d, 0x49, 0x37, 0xd0, 0x0d, 0x74, 0x15, 0x7d, 0x6a, 0x81, 0xae, 0xa0, 0xe0,
455	0xc7, 0xd1, 0xc5, 0x76, 0x5b, 0xf7, 0x49, 0x98, 0xef, 0x3b, 0xe7, 0x88, 0xe4, 0x77, 0x78, 0x88,
456	0x2a, 0x5c, 0x0d, 0xf4, 0xb0, 0x41, 0x59, 0x2c, 0x54, 0x63, 0xb0, 0xdb, 0xc8, 0x78, 0x3a, 0xe0,
457	0x29, 0x11, 0xaa, 0xa3, 0xeb, 0x49, 0xaa, 0x8d, 0xc6, 0xcb, 0x80, 0xa8, 0x03, 0xa2, 0x3e, 0xd8,
458	0x5d, 0xdf, 0xea, 0x6a, 0xdd, 0x95, 0xbc, 0x01, 0xdd, 0x76, 0xbf, 0xd3, 0x60, 0xfd, 0x94, 0x1a,
459	0xa1, 0x95, 0xc3, 0xaf, 0x6f, 0xf7, 0x59, 0x42, 0x1b, 0x54, 0x29, 0x6d, 0xa0, 0x9c, 0x35, 0x06,
460	0x3c, 0xcd, 0x84, 0x56, 0x42, 0x75, 0x73, 0xc8, 0xf3, 0xfc, 0x4f, 0xa7, 0x30, 0x8c, 0x27, 0x29,
461	0x8f, 0xa6, 0x74, 0xaa, 0xbf, 0xcd, 0x22, 0x74, 0x0e, 0xab, 0x09, 0x54, 0x47, 0x63, 0x1f, 0x3d,
462	0xcc, 0x75, 0xfc, 0x42, 0xa5, 0x50, 0x2b, 0x87, 0xa3, 0x4f, 0xfc, 0x06, 0xcd, 0x65, 0x86, 0x1a,
463	0xee, 0xcf, 0x54, 0x0a, 0xb5, 0xe5, 0x9d, 0x4a, 0xfd, 0xe6, 0x82, 0xeb, 0x13, 0x91, 0xfa, 0xb9,
464	0xc5, 0x85, 0x0e, 0x8e, 0xbf, 0x46, 0x6b, 0xfd, 0xc4, 0x88, 0x98, 0x93, 0xa8, 0x9f, 0xa6, 0x5c,
465	0x19, 0xc2, 0x13, 0x1d, 0xf5, 0xfc, 0xd9, 0x4a, 0xa1, 0xb6, 0xb0, 0xf3, 0xb4, 0xee, 0xf6, 0x59,
466	0x1f, 0xed, 0xb3, 0x7e, 0x98, 0xef, 0x33, 0xc4, 0x8e, 0x76, 0xe0, 0x58, 0x4d, 0x4b, 0xc2, 0x4d,
467	0xb4, 0x9a, 0x8b, 0x51, 0x29, 0x9d, 0x50, 0xe6, 0x17, 0xef, 0x53, 0x5a, 0x71, 0x9c, 0x3d, 0x29,
468	0x41, 0x25, 0xc3, 0x75, 0xf4, 0xa8, 0xa7, 0x0d, 0x49, 0x79, 0x66, 0x68, 0x6a, 0xc8, 0x68, 0xc7,
469	0x73, 0xb0, 0xe3, 0xd5, 0x9e, 0x36, 0xa1, 0xeb, 0x5c, 0xe6, 0x7b, 0xbf, 0x40, 0x6b, 0x91, 0x8e,
470	0x63, 0xaa, 0x18, 0x91, 0x42, 0x71, 0xa2, 0x13, 0x38, 0x4e, 0x7f, 0x1e, 0xfe, 0xb9, 0x7a, 0xfb,
471	0x28, 0x0e, 0x1c, 0xb6, 0x25, 0x14, 0x3f, 0x75, 0xc8, 0x10, 0x47, 0x77, 0x6a, 0xd5, 0x77, 0x68,
472	0x0e, 0x4e, 0x0a, 0x97, 0x50, 0xb1, 0x15, 0x5c, 0x36, 0xbd, 0x07, 0x78, 0x11, 0x95, 0x0e, 0xc3,
473	0xbd, 0xe0, 0x24, 0x38, 0x79, 0xe7, 0x15, 0xf0, 0x1a, 0xf2, 0xce, 0xc2, 0x26, 0x09, 0x4e, 0x82,
474	0x8b, 0x60, 0xaf, 0x15, 0xbc, 0xb7, 0xd5, 0x19, 0xec, 0xa1, 0xc5, 0x1b, 0x95, 0xd9, 0xb7, 0x2f,
475	0x7e, 0xfa, 0xe5, 0xc7, 0xad, 0x0a, 0xda, 0xba, 0xb1, 0x8c, 0x1d, 0x2a, 0x93, 0x1e, 0x9d, 0x1a,
476	0x4b, 0xf5, 0x8f, 0x05, 0x84, 0xef, 0x2e, 0x0d, 0x3f, 0x41, 0x0f, 0xdb, 0x34, 0xe3, 0x44, 0x30,
477	0x18, 0x79, 0x31, 0x9c, 0xb7, 0x9f, 0x01, 0xc3, 0x15, 0xb4, 0x10, 0x69, 0xe5, 0xa6, 0x16, 0x0d,
478	0x61, 0xee, 0x4b, 0xe1, 0x74, 0x09, 0xff, 0x1f, 0x10, 0x1d, 0xd1, 0x25, 0x09, 0x35, 0x6e, 0xa4,
479	0xe5, 0x10, 0xb9, 0xd2, 0x19, 0x35, 0xbd, 0x29, 0xc0, 0x90, 0xc6, 0x12, 0x26, 0x35, 0x06, 0x7c,
480	0x4b, 0x63, 0x89, 0xbf, 0x40, 0x1b, 0x54, 0x4a, 0xfd, 0x81, 0xf4, 0xd5, 0xf7, 0x4a, 0x7f, 0x50,
481	0xc4, 0x9a, 0x46, 0x44, 0xa4, 0x23, 0xb8, 0x64, 0x19, 0x4c, 0xa4, 0x14, 0xfa, 0x00, 0xf9, 0xc6,
482	0x21, 0xce, 0x01, 0x70, 0x04, 0x7d, 0xbc, 0x87, 0x36, 0x53, 0x7e, 0xc5, 0x23, 0x33, 0xe6, 0xb3,
483	0xa1, 0xa2, 0xf1, 0x44, 0x60, 0x1d, 0x04, 0xd6, 0x1d, 0x28, 0x57, 0x38, 0x74, 0x90, 0x5c, 0xe2,
484	0x15, 0xc2, 0x70, 0x62, 0x84, 0x32, 0x96, 0xf2, 0x2c, 0x73, 0x5b, 0x99, 0x87, 0x95, 0x7a, 0xd0,
485	0xd9, 0x73, 0x0d, 0xd8, 0x10, 0x47, 0xbe, 0xd4, 0x11, 0x95, 0x63, 0xb4, 0x48, 0xc6, 0xf6, 0x79,
486	0x08, 0x17, 0xe3, 0xd5, 0xfd, 0x6e, 0xa8, 0x07, 0x49, 0xee, 0xac, 0xf0, 0x31, 0xa8, 0xe5, 0xff,
487	0x30, 0x2e, 0xe3, 0x0d, 0x54, 0x96, 0xba, 0x4b, 0x24, 0x1f, 0x70, 0xe9, 0x97, 0x60, 0x2d, 0x25,
488	0xa9, 0xbb, 0x2d, 0xfb, 0x6d, 0xdd, 0x1b, 0xe9, 0x38, 0xd1, 0xca, 0x5e, 0xa6, 0x09, 0xac, 0xec,
489	0xdc, 0x3b, 0x6e, 0xb5, 0x46, 0xf8, 0x4d, 0x84, 0x2c, 0xaa, 0xa3, 0xd3, 0x98, 0x1a, 0x1f, 0x01,
490	0xcc, 0xca, 0x1f, 0x41, 0xc1, 0x1e, 0xc0, 0xa4, 0x4d, 0x78, 0x16, 0xd1, 0x84, 0x33, 0x7f, 0x03,
491	0x0e, 0xce, 0x1b, 0xc3, 0x9a, 0xae, 0x8e, 0x9f, 0x22, 0xbb, 0x10, 0x77, 0x48, 0x0b, 0x2e, 0x21,
492	0xa4, 0x76, 0xc3, 0x7e, 0x89, 0x56, 0x6c, 0xae, 0x89, 0x88, 0x93, 0x48, 0xf6, 0x33, 0xc3, 0x53,
493	0x7f, 0x09, 0x10, 0xcb, 0x79, 0xf9, 0xc0, 0x55, 0xf1, 0x36, 0x5a, 0x1c, 0x01, 0x95, 0x66, 0xdc,
494	0x5f, 0x06, 0xd4, 0x42, 0x5e, 0x3b, 0xd1, 0x8c, 0x4f, 0x43, 0x7e, 0xd0, 0x8a, 0xfb, 0x2b, 0x37,
495	0x20, 0xef, 0xb5, 0xe2, 0x38, 0x40, 0x8f, 0x3a, 0x42, 0x72, 0xd2, 0x91, 0xfd, 0xac, 0x47, 0x84,
496	0x32, 0x3c, 0x1d, 0x50, 0xe9, 0x7b, 0xf7, 0xa5, 0xc1, 0xaa, 0x65, 0x1d, 0x59, 0x52, 0x90, 0x73,
497	0xf0, 0x67, 0x08, 0xb1, 0x94, 0x0a, 0x45, 0x6c, 0x4c, 0xf8, 0xab, 0xf7, 0x29, 0x94, 0x01, 0x7c,
498	0x21, 0x62, 0x48, 0xb7, 0x84, 0x42, 0xaa, 0x65, 0xbd, 0xbe, 0x61, 0xd6, 0x81, 0xa0, 0x81, 0xef,
499	0x4d, 0x37, 0x47, 0x3b, 0xcf, 0x59, 0x20, 0xf6, 0x39, 0x2a, 0xc6, 0xf6, 0x3c, 0x1e, 0x81, 0x91,
500	0x5e, 0xfe, 0x07, 0x23, 0x1d, 0x6b, 0xc6, 0x43, 0x20, 0xe1, 0x10, 0x6d, 0xf7, 0x04, 0x63, 0x5c,
501	0x11, 0xa0, 0x91, 0x51, 0xd4, 0x73, 0x46, 0x62, 0x7a, 0x0d, 0xf7, 0x2a, 0xf3, 0xd7, 0xec, 0x05,
502	0xdf, 0x2f, 0xfd, 0xfc, 0xfb, 0x9f, 0xbf, 0xce, 0x15, 0xfc, 0x42, 0xb8, 0xe9, 0x28, 0x4d, 0xcb,
503	0x38, 0x1c, 0x13, 0x8e, 0xe9, 0xb5, 0xbd, 0x65, 0x19, 0xfe, 0x0e, 0xd5, 0xfe, 0x4d, 0x53, 0xb7,
504	0xaf, 0x88, 0xa2, 0x31, 0x27, 0x92, 0x2b, 0xff, 0xf1, 0x2d, 0xe9, 0xea, 0x3f, 0x49, 0x9f, 0xb6,
505	0xaf, 0x4e, 0x68, 0xcc, 0x5b, 0x5c, 0x59, 0x27, 0x33, 0x91, 0xd1, 0xb6, 0xe4, 0x64, 0x2a, 0x8f,
506	0xfd, 0xff, 0x81, 0xf7, 0x56, 0xf3, 0xd6, 0x97, 0xe3, 0x38, 0xc6, 0x1f, 0xa3, 0x35, 0xae, 0x00,
507	0x1e, 0xf7, 0x0d, 0xbf, 0x26, 0x26, 0xa5, 0x91, 0x50, 0x5d, 0xff, 0x09, 0x10, 0xb0, 0xeb, 0x1d,
508	0xdb, 0xd6, 0x85, 0xeb, 0xe0, 0xe7, 0x68, 0x69, 0x94, 0xf2, 0xee, 0xd9, 0xf1, 0x21, 0xc5, 0x16,
509	0xf3, 0xa2, 0x7b, 0x55, 0x5e, 0xa0, 0xe5, 0x28, 0xe9, 0x67, 0xdc, 0x10, 0xd3, 0x4b, 0x39, 0x65,
510	0x99, 0xff, 0x14, 0x04, 0x97, 0x5c, 0xf5, 0xc2, 0x15, 0x71, 0x63, 0xbc, 0x5a, 0x46, 0xf8, 0xb5,
511	0xe1, 0x2a, 0x83, 0x47, 0xe0, 0x59, 0x65, 0xb6, 0x56, 0x0e, 0xf1, 0xa8, 0xd5, 0x1c, 0x77, 0xaa,
512	0x1b, 0xa8, 0x3c, 0xb9, 0xd2, 0xf3, 0x68, 0x66, 0xf0, 0xa9, 0xf7, 0x00, 0x7e, 0xdf, 0x78, 0x85,
513	0xea, 0x6b, 0x54, 0xb4, 0xd3, 0xc3, 0x65, 0x34, 0x07, 0x19, 0xed, 0xd2, 0xff, 0x92, 0x4a, 0xc1,
514	0xa8, 0xe1, 0x5e, 0xc1, 0x7e, 0x05, 0x4a, 0x98, 0x53, 0x25, 0x87, 0xde, 0xcc, 0xdb, 0xd7, 0x36,
515	0xe3, 0x6b, 0xe8, 0xa3, 0xbf, 0xcb, 0xf8, 0xbb, 0xc6, 0xf8, 0xaa, 0x58, 0x5a, 0xf4, 0x96, 0xf6,
516	0x3f, 0x41, 0xcf, 0x84, 0x76, 0x36, 0x4a, 0x52, 0x7d, 0x3d, 0xbc, 0xe5, 0xa8, 0xfd, 0x95, 0xc9,
517	0xeb, 0x70, 0x66, 0x1d, 0x7a, 0x56, 0x68, 0xcf, 0x83, 0x55, 0x77, 0xff, 0x0a, 0x00, 0x00, 0xff,
518	0xff, 0x4d, 0x81, 0x0c, 0x1c, 0xb2, 0x08, 0x00, 0x00,
519}
520