1// Code generated by protoc-gen-go. DO NOT EDIT.
2// source: envoy/admin/v2alpha/server_info.proto
3
4package envoy_admin_v2alpha
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_ed0f406f9d75bf97, []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_ed0f406f9d75bf97, []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_ed0f406f9d75bf97, []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.v2alpha.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_ed0f406f9d75bf97, []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.v2alpha.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.v2alpha.CommandLineOptions_Mode" json:"mode,omitempty"`
210	MaxStats                   uint64                       `protobuf:"varint,20,opt,name=max_stats,json=maxStats,proto3" json:"max_stats,omitempty"`                    // Deprecated: Do not use.
211	MaxObjNameLen              uint64                       `protobuf:"varint,21,opt,name=max_obj_name_len,json=maxObjNameLen,proto3" json:"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_ed0f406f9d75bf97, []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) GetMaxStats() uint64 {
389	if m != nil {
390		return m.MaxStats
391	}
392	return 0
393}
394
395// Deprecated: Do not use.
396func (m *CommandLineOptions) GetMaxObjNameLen() uint64 {
397	if m != nil {
398		return m.MaxObjNameLen
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.v2alpha.ServerInfo_State", ServerInfo_State_name, ServerInfo_State_value)
440	proto.RegisterEnum("envoy.admin.v2alpha.CommandLineOptions_IpVersion", CommandLineOptions_IpVersion_name, CommandLineOptions_IpVersion_value)
441	proto.RegisterEnum("envoy.admin.v2alpha.CommandLineOptions_Mode", CommandLineOptions_Mode_name, CommandLineOptions_Mode_value)
442	proto.RegisterType((*ServerInfo)(nil), "envoy.admin.v2alpha.ServerInfo")
443	proto.RegisterType((*CommandLineOptions)(nil), "envoy.admin.v2alpha.CommandLineOptions")
444}
445
446func init() {
447	proto.RegisterFile("envoy/admin/v2alpha/server_info.proto", fileDescriptor_ed0f406f9d75bf97)
448}
449
450var fileDescriptor_ed0f406f9d75bf97 = []byte{
451	// 1052 bytes of a gzipped FileDescriptorProto
452	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x95, 0xdd, 0x6e, 0x1b, 0x45,
453	0x14, 0xc7, 0xeb, 0xc4, 0x71, 0xed, 0x49, 0x9c, 0x6c, 0x26, 0x29, 0x9d, 0x26, 0x14, 0xd2, 0x54,
454	0x51, 0x73, 0x51, 0xd6, 0x34, 0x20, 0x84, 0x84, 0x40, 0xe4, 0xc3, 0x29, 0x0b, 0x6e, 0x12, 0x6d,
455	0x42, 0xa4, 0xf6, 0x66, 0x34, 0xde, 0x1d, 0xdb, 0x1b, 0x66, 0x67, 0x56, 0x3b, 0xb3, 0xae, 0xcd,
456	0x15, 0x8f, 0x85, 0x78, 0x02, 0x24, 0xae, 0xe0, 0x41, 0x10, 0xe2, 0x09, 0xd0, 0x9c, 0x59, 0xdb,
457	0x09, 0x8d, 0x94, 0x5e, 0x59, 0x73, 0xce, 0xef, 0xfc, 0x3d, 0xe7, 0x63, 0xce, 0xa2, 0x1d, 0x2e,
458	0x87, 0x6a, 0xdc, 0x62, 0x71, 0x9a, 0xc8, 0xd6, 0x70, 0x8f, 0x89, 0x6c, 0xc0, 0x5a, 0x9a, 0xe7,
459	0x43, 0x9e, 0xd3, 0x44, 0xf6, 0x94, 0x9f, 0xe5, 0xca, 0x28, 0xbc, 0x06, 0x98, 0x0f, 0x98, 0x5f,
460	0x62, 0x1b, 0x1f, 0xf5, 0x95, 0xea, 0x0b, 0xde, 0x02, 0xa4, 0x5b, 0xf4, 0x5a, 0x71, 0x91, 0x33,
461	0x93, 0x28, 0xe9, 0x82, 0x36, 0x9e, 0x96, 0xda, 0x52, 0x2a, 0x03, 0x76, 0xdd, 0x8a, 0x79, 0x96,
462	0xf3, 0xe8, 0x3a, 0xf4, 0xb8, 0x88, 0x33, 0x76, 0x83, 0xd1, 0x86, 0x99, 0x42, 0x3b, 0xf7, 0xf6,
463	0x1f, 0xf3, 0x08, 0x9d, 0xc3, 0x75, 0x02, 0xd9, 0x53, 0x98, 0xa0, 0xfb, 0x43, 0x9e, 0xeb, 0x44,
464	0x49, 0x52, 0xd9, 0xaa, 0xec, 0x36, 0xc2, 0xc9, 0x11, 0x7f, 0x85, 0x16, 0x6c, 0x20, 0x27, 0x73,
465	0x5b, 0x95, 0xdd, 0xe5, 0xbd, 0x1d, 0xff, 0x96, 0x1b, 0xfb, 0x33, 0x25, 0xff, 0xdc, 0xc2, 0xa1,
466	0x8b, 0xc1, 0x3f, 0xa0, 0xf5, 0x22, 0x33, 0x49, 0xca, 0x69, 0x54, 0xe4, 0x39, 0x97, 0x86, 0xf2,
467	0x4c, 0x45, 0x03, 0x32, 0xbf, 0x55, 0xd9, 0x5d, 0xdc, 0x7b, 0xe4, 0xbb, 0x44, 0xfd, 0x49, 0xa2,
468	0xfe, 0x51, 0x99, 0x68, 0x88, 0x5d, 0xd8, 0xa1, 0x8b, 0x6a, 0xdb, 0x20, 0xdc, 0x46, 0xab, 0xa5,
469	0x18, 0x13, 0xc2, 0x09, 0x69, 0x52, 0xbd, 0x4b, 0x69, 0xc5, 0xc5, 0xec, 0x0b, 0x01, 0x2a, 0x1a,
470	0xfb, 0x68, 0x6d, 0xa0, 0x0c, 0xcd, 0xb9, 0x36, 0x2c, 0x37, 0x74, 0x92, 0xf6, 0x02, 0xa4, 0xbd,
471	0x3a, 0x50, 0x26, 0x74, 0x9e, 0xcb, 0xb2, 0x00, 0xaf, 0xd1, 0x7a, 0xa4, 0xd2, 0x94, 0xc9, 0x98,
472	0x8a, 0x44, 0x72, 0xaa, 0x32, 0x28, 0x27, 0xa9, 0xc1, 0x3f, 0x3f, 0xbb, 0xb5, 0x1e, 0x87, 0x2e,
473	0xa0, 0x93, 0x48, 0x7e, 0xea, 0xf0, 0x10, 0x47, 0xef, 0xd8, 0xb6, 0x5f, 0xa2, 0x05, 0x28, 0x17,
474	0xae, 0xa3, 0x6a, 0x27, 0xb8, 0x6c, 0x7b, 0xf7, 0xf0, 0x12, 0xaa, 0x1f, 0x85, 0xfb, 0xc1, 0x49,
475	0x70, 0xf2, 0xd2, 0xab, 0xe0, 0x75, 0xe4, 0x9d, 0x85, 0x6d, 0x1a, 0x9c, 0x04, 0x17, 0xc1, 0x7e,
476	0x27, 0x78, 0x63, 0xad, 0x73, 0xd8, 0x43, 0x4b, 0x37, 0x2c, 0xf3, 0xdb, 0xff, 0x20, 0x84, 0xdf,
477	0xfd, 0x4f, 0xfc, 0x10, 0xdd, 0xef, 0x32, 0xcd, 0x69, 0x12, 0x43, 0x57, 0xab, 0x61, 0xcd, 0x1e,
478	0x83, 0x18, 0x6f, 0xa1, 0xc5, 0x48, 0x49, 0xd7, 0x93, 0x68, 0x0c, 0xad, 0x6d, 0x86, 0xd7, 0x4d,
479	0xf8, 0x63, 0x20, 0x7a, 0x49, 0x9f, 0x66, 0xcc, 0xb8, 0x86, 0x35, 0x42, 0xe4, 0x4c, 0x67, 0xcc,
480	0x0c, 0xae, 0x01, 0x63, 0x96, 0x0a, 0xe8, 0xc3, 0x14, 0x78, 0xcd, 0x52, 0x81, 0xbf, 0x46, 0x9b,
481	0x4c, 0x08, 0xf5, 0x96, 0x16, 0xf2, 0x27, 0xa9, 0xde, 0x4a, 0x6a, 0x47, 0x22, 0x89, 0x68, 0x2f,
482	0xe1, 0x22, 0xd6, 0x50, 0xef, 0x7a, 0x48, 0x00, 0xf9, 0xd1, 0x11, 0xe7, 0x00, 0x1c, 0x83, 0x1f,
483	0xef, 0xa3, 0xc7, 0x39, 0xbf, 0xe2, 0x91, 0x99, 0xc6, 0xc7, 0x63, 0xc9, 0xd2, 0x99, 0xc0, 0x06,
484	0x08, 0x6c, 0x38, 0xa8, 0x54, 0x38, 0x72, 0x48, 0x29, 0xf1, 0x1c, 0x61, 0x68, 0x0b, 0x65, 0x71,
485	0x9c, 0x73, 0xad, 0x5d, 0x2a, 0x35, 0xb8, 0xa9, 0x07, 0x9e, 0x7d, 0xe7, 0x80, 0x84, 0xae, 0x10,
486	0x11, 0x2a, 0x62, 0x62, 0x4a, 0x27, 0xd9, 0x74, 0x38, 0xee, 0xc3, 0xec, 0xbf, 0x78, 0xcf, 0x5e,
487	0xfb, 0x41, 0x56, 0x0e, 0x4f, 0xf8, 0x00, 0x24, 0xcb, 0xbf, 0x99, 0x9a, 0xf1, 0x26, 0x6a, 0x08,
488	0xd5, 0xa7, 0x82, 0x0f, 0xb9, 0x20, 0x75, 0xb8, 0x50, 0x5d, 0xa8, 0x7e, 0xc7, 0x9e, 0xed, 0x80,
489	0x46, 0x2a, 0xcd, 0x94, 0xb4, 0xef, 0x65, 0x86, 0x35, 0xdc, 0x80, 0x4e, 0x5d, 0x9d, 0x09, 0xff,
490	0x18, 0x21, 0x4b, 0xf5, 0x54, 0x9e, 0x32, 0x43, 0x10, 0x60, 0x56, 0xfe, 0x18, 0x0c, 0xb6, 0x0a,
491	0x33, 0x37, 0xe5, 0x3a, 0x62, 0x19, 0x8f, 0xc9, 0x26, 0x54, 0xcf, 0x9b, 0x62, 0x6d, 0x67, 0xc7,
492	0x8f, 0x90, 0xbd, 0x88, 0xab, 0xd4, 0xa2, 0xdb, 0x04, 0x42, 0xb9, 0x8e, 0x3f, 0x43, 0x2b, 0x76,
493	0x81, 0x25, 0x11, 0xa7, 0x91, 0x28, 0xb4, 0xe1, 0x39, 0x69, 0x02, 0xb1, 0x5c, 0x9a, 0x0f, 0x9d,
494	0x15, 0x3f, 0x41, 0x4b, 0x13, 0x50, 0xaa, 0x98, 0x93, 0x65, 0xa0, 0x16, 0x4b, 0xdb, 0x89, 0x8a,
495	0xf9, 0x75, 0xe4, 0x67, 0x25, 0x39, 0x59, 0xb9, 0x81, 0xbc, 0x51, 0x92, 0xe3, 0x00, 0xad, 0xf5,
496	0x12, 0xc1, 0x69, 0x4f, 0x14, 0x7a, 0x40, 0x13, 0x69, 0x78, 0x3e, 0x64, 0x82, 0x78, 0x77, 0x3d,
497	0xf8, 0x55, 0x1b, 0x75, 0x6c, 0x83, 0x82, 0x32, 0x06, 0x7f, 0x89, 0x50, 0x9c, 0xb3, 0x44, 0x52,
498	0xbb, 0x09, 0xc8, 0xea, 0x5d, 0x0a, 0x0d, 0x80, 0x2f, 0x92, 0x14, 0x16, 0x58, 0xc6, 0x60, 0x71,
499	0xe9, 0x41, 0x61, 0x62, 0x3b, 0x86, 0xa0, 0x81, 0xef, 0x5c, 0x60, 0x2e, 0xec, 0xbc, 0x8c, 0x02,
500	0xb1, 0x6f, 0x51, 0x35, 0xb5, 0xf5, 0x58, 0x83, 0x69, 0x7a, 0xfe, 0xbe, 0xd3, 0xf4, 0x4a, 0xc5,
501	0x3c, 0x84, 0x48, 0xbc, 0x83, 0x1a, 0x29, 0x1b, 0xc1, 0x4b, 0xd2, 0x64, 0xdd, 0x3e, 0xe9, 0x83,
502	0xfa, 0xaf, 0x7f, 0xff, 0xfb, 0xd7, 0x42, 0x85, 0x54, 0xc2, 0x7a, 0xca, 0x46, 0xf6, 0x09, 0x69,
503	0xfc, 0x02, 0x79, 0x16, 0x53, 0xdd, 0x2b, 0x2a, 0x59, 0xca, 0xa9, 0xe0, 0x92, 0x3c, 0xf8, 0x1f,
504	0xdd, 0x4c, 0xd9, 0xe8, 0xb4, 0x7b, 0x75, 0xc2, 0x52, 0xde, 0xe1, 0xd2, 0x0e, 0x5d, 0x9c, 0x68,
505	0xd6, 0x15, 0x9c, 0x5e, 0xdb, 0x8e, 0xe4, 0x03, 0x18, 0x93, 0xd5, 0xd2, 0xf5, 0xdd, 0x74, 0x39,
506	0xe2, 0x4f, 0xd1, 0x3a, 0x97, 0x80, 0xa7, 0x85, 0xe1, 0x23, 0x6a, 0x72, 0x16, 0x25, 0xb2, 0x4f,
507	0x1e, 0x42, 0x00, 0x76, 0xbe, 0x57, 0xd6, 0x75, 0xe1, 0x3c, 0xf8, 0x29, 0x6a, 0x4e, 0x76, 0xae,
508	0xfb, 0x08, 0x10, 0xd8, 0x3a, 0x4b, 0xa5, 0xd1, 0xed, 0xf8, 0x1d, 0xb4, 0x1c, 0x65, 0x85, 0xe6,
509	0x86, 0x9a, 0x41, 0xce, 0x59, 0xac, 0xc9, 0x23, 0x10, 0x6c, 0x3a, 0xeb, 0x85, 0x33, 0xe2, 0xd6,
510	0xf4, 0xb6, 0x31, 0xe5, 0x23, 0xc3, 0xa5, 0x86, 0x95, 0xfc, 0xe1, 0xd6, 0xfc, 0x6e, 0x23, 0xc4,
511	0x13, 0x57, 0x7b, 0xea, 0xd9, 0xde, 0x44, 0x8d, 0xd9, 0xeb, 0xab, 0xa1, 0xb9, 0xe1, 0xe7, 0xde,
512	0x3d, 0xf8, 0xfd, 0xc2, 0xab, 0x6c, 0x7f, 0x82, 0xaa, 0xb6, 0xc6, 0xb8, 0x81, 0x16, 0xe0, 0x43,
513	0xe6, 0xd6, 0xf0, 0x25, 0x13, 0x49, 0xcc, 0x0c, 0xf7, 0x2a, 0xf6, 0x14, 0xc8, 0xc4, 0x9c, 0x4a,
514	0x31, 0xf6, 0xe6, 0xbe, 0xaf, 0xd6, 0x97, 0xbc, 0xe6, 0xc1, 0x37, 0xbf, 0xfd, 0xf2, 0xfb, 0x9f,
515	0xb5, 0x39, 0xaf, 0x82, 0x9e, 0x24, 0xca, 0xb5, 0x32, 0xcb, 0xd5, 0x68, 0x7c, 0x5b, 0x57, 0x0f,
516	0x56, 0x66, 0x1f, 0xc8, 0x33, 0x3b, 0x2a, 0x67, 0x95, 0x6e, 0x0d, 0x66, 0xe6, 0xb3, 0xff, 0x02,
517	0x00, 0x00, 0xff, 0xff, 0xd0, 0x09, 0xf7, 0x5d, 0x29, 0x08, 0x00, 0x00,
518}
519