| // Code generated by protoc-gen-go. DO NOT EDIT. |
| // source: voltha_protos/common.proto |
| |
| package common |
| |
| import ( |
| fmt "fmt" |
| proto "github.com/golang/protobuf/proto" |
| math "math" |
| ) |
| |
| // Reference imports to suppress errors if they are not otherwise used. |
| var _ = proto.Marshal |
| var _ = fmt.Errorf |
| var _ = math.Inf |
| |
| // This is a compile-time assertion to ensure that this generated file |
| // is compatible with the proto package it is being compiled against. |
| // A compilation error at this line likely means your copy of the |
| // proto package needs to be updated. |
| const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package |
| |
| type TestModeKeys int32 |
| |
| const ( |
| TestModeKeys_api_test TestModeKeys = 0 |
| ) |
| |
| var TestModeKeys_name = map[int32]string{ |
| 0: "api_test", |
| } |
| |
| var TestModeKeys_value = map[string]int32{ |
| "api_test": 0, |
| } |
| |
| func (x TestModeKeys) String() string { |
| return proto.EnumName(TestModeKeys_name, int32(x)) |
| } |
| |
| func (TestModeKeys) EnumDescriptor() ([]byte, []int) { |
| return fileDescriptor_c2e3fd231961e826, []int{0} |
| } |
| |
| // Administrative State |
| type AdminState_Types int32 |
| |
| const ( |
| // The administrative state of the device is unknown |
| AdminState_UNKNOWN AdminState_Types = 0 |
| // The device is pre-provisioned into Voltha, but not contacted by it |
| AdminState_PREPROVISIONED AdminState_Types = 1 |
| // The device is enabled for activation and operation |
| AdminState_ENABLED AdminState_Types = 2 |
| // The device is disabled and shall not perform its intended forwarding |
| // functions other than being available for re-activation. |
| AdminState_DISABLED AdminState_Types = 3 |
| // The device is in the state of image download |
| AdminState_DOWNLOADING_IMAGE AdminState_Types = 4 |
| ) |
| |
| var AdminState_Types_name = map[int32]string{ |
| 0: "UNKNOWN", |
| 1: "PREPROVISIONED", |
| 2: "ENABLED", |
| 3: "DISABLED", |
| 4: "DOWNLOADING_IMAGE", |
| } |
| |
| var AdminState_Types_value = map[string]int32{ |
| "UNKNOWN": 0, |
| "PREPROVISIONED": 1, |
| "ENABLED": 2, |
| "DISABLED": 3, |
| "DOWNLOADING_IMAGE": 4, |
| } |
| |
| func (x AdminState_Types) String() string { |
| return proto.EnumName(AdminState_Types_name, int32(x)) |
| } |
| |
| func (AdminState_Types) EnumDescriptor() ([]byte, []int) { |
| return fileDescriptor_c2e3fd231961e826, []int{4, 0} |
| } |
| |
| // Operational Status |
| type OperStatus_Types int32 |
| |
| const ( |
| // The status of the device is unknown at this point |
| OperStatus_UNKNOWN OperStatus_Types = 0 |
| // The device has been discovered, but not yet activated |
| OperStatus_DISCOVERED OperStatus_Types = 1 |
| // The device is being activated (booted, rebooted, upgraded, etc.) |
| OperStatus_ACTIVATING OperStatus_Types = 2 |
| // Service impacting tests are being conducted |
| OperStatus_TESTING OperStatus_Types = 3 |
| // The device is up and active |
| OperStatus_ACTIVE OperStatus_Types = 4 |
| // The device has failed and cannot fulfill its intended role |
| OperStatus_FAILED OperStatus_Types = 5 |
| // The device is reconciling |
| OperStatus_RECONCILING OperStatus_Types = 6 |
| // The device is in reconciling failed |
| OperStatus_RECONCILING_FAILED OperStatus_Types = 7 |
| // The device has rebooted |
| OperStatus_REBOOTED OperStatus_Types = 8 |
| ) |
| |
| var OperStatus_Types_name = map[int32]string{ |
| 0: "UNKNOWN", |
| 1: "DISCOVERED", |
| 2: "ACTIVATING", |
| 3: "TESTING", |
| 4: "ACTIVE", |
| 5: "FAILED", |
| 6: "RECONCILING", |
| 7: "RECONCILING_FAILED", |
| 8: "REBOOTED", |
| } |
| |
| var OperStatus_Types_value = map[string]int32{ |
| "UNKNOWN": 0, |
| "DISCOVERED": 1, |
| "ACTIVATING": 2, |
| "TESTING": 3, |
| "ACTIVE": 4, |
| "FAILED": 5, |
| "RECONCILING": 6, |
| "RECONCILING_FAILED": 7, |
| "REBOOTED": 8, |
| } |
| |
| func (x OperStatus_Types) String() string { |
| return proto.EnumName(OperStatus_Types_name, int32(x)) |
| } |
| |
| func (OperStatus_Types) EnumDescriptor() ([]byte, []int) { |
| return fileDescriptor_c2e3fd231961e826, []int{5, 0} |
| } |
| |
| // Connectivity Status |
| type ConnectStatus_Types int32 |
| |
| const ( |
| // The device connectivity status is unknown |
| ConnectStatus_UNKNOWN ConnectStatus_Types = 0 |
| // The device cannot be reached by Voltha |
| ConnectStatus_UNREACHABLE ConnectStatus_Types = 1 |
| // There is live communication between device and Voltha |
| ConnectStatus_REACHABLE ConnectStatus_Types = 2 |
| ) |
| |
| var ConnectStatus_Types_name = map[int32]string{ |
| 0: "UNKNOWN", |
| 1: "UNREACHABLE", |
| 2: "REACHABLE", |
| } |
| |
| var ConnectStatus_Types_value = map[string]int32{ |
| "UNKNOWN": 0, |
| "UNREACHABLE": 1, |
| "REACHABLE": 2, |
| } |
| |
| func (x ConnectStatus_Types) String() string { |
| return proto.EnumName(ConnectStatus_Types_name, int32(x)) |
| } |
| |
| func (ConnectStatus_Types) EnumDescriptor() ([]byte, []int) { |
| return fileDescriptor_c2e3fd231961e826, []int{6, 0} |
| } |
| |
| type OperationResp_OperationReturnCode int32 |
| |
| const ( |
| OperationResp_OPERATION_SUCCESS OperationResp_OperationReturnCode = 0 |
| OperationResp_OPERATION_FAILURE OperationResp_OperationReturnCode = 1 |
| OperationResp_OPERATION_UNSUPPORTED OperationResp_OperationReturnCode = 2 |
| OperationResp_OPERATION_IN_PROGRESS OperationResp_OperationReturnCode = 3 |
| ) |
| |
| var OperationResp_OperationReturnCode_name = map[int32]string{ |
| 0: "OPERATION_SUCCESS", |
| 1: "OPERATION_FAILURE", |
| 2: "OPERATION_UNSUPPORTED", |
| 3: "OPERATION_IN_PROGRESS", |
| } |
| |
| var OperationResp_OperationReturnCode_value = map[string]int32{ |
| "OPERATION_SUCCESS": 0, |
| "OPERATION_FAILURE": 1, |
| "OPERATION_UNSUPPORTED": 2, |
| "OPERATION_IN_PROGRESS": 3, |
| } |
| |
| func (x OperationResp_OperationReturnCode) String() string { |
| return proto.EnumName(OperationResp_OperationReturnCode_name, int32(x)) |
| } |
| |
| func (OperationResp_OperationReturnCode) EnumDescriptor() ([]byte, []int) { |
| return fileDescriptor_c2e3fd231961e826, []int{7, 0} |
| } |
| |
| // Full path for KV store |
| type Key struct { |
| Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` |
| XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| XXX_unrecognized []byte `json:"-"` |
| XXX_sizecache int32 `json:"-"` |
| } |
| |
| func (m *Key) Reset() { *m = Key{} } |
| func (m *Key) String() string { return proto.CompactTextString(m) } |
| func (*Key) ProtoMessage() {} |
| func (*Key) Descriptor() ([]byte, []int) { |
| return fileDescriptor_c2e3fd231961e826, []int{0} |
| } |
| |
| func (m *Key) XXX_Unmarshal(b []byte) error { |
| return xxx_messageInfo_Key.Unmarshal(m, b) |
| } |
| func (m *Key) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| return xxx_messageInfo_Key.Marshal(b, m, deterministic) |
| } |
| func (m *Key) XXX_Merge(src proto.Message) { |
| xxx_messageInfo_Key.Merge(m, src) |
| } |
| func (m *Key) XXX_Size() int { |
| return xxx_messageInfo_Key.Size(m) |
| } |
| func (m *Key) XXX_DiscardUnknown() { |
| xxx_messageInfo_Key.DiscardUnknown(m) |
| } |
| |
| var xxx_messageInfo_Key proto.InternalMessageInfo |
| |
| func (m *Key) GetKey() string { |
| if m != nil { |
| return m.Key |
| } |
| return "" |
| } |
| |
| // Convey a resource identifier |
| type ID struct { |
| Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` |
| XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| XXX_unrecognized []byte `json:"-"` |
| XXX_sizecache int32 `json:"-"` |
| } |
| |
| func (m *ID) Reset() { *m = ID{} } |
| func (m *ID) String() string { return proto.CompactTextString(m) } |
| func (*ID) ProtoMessage() {} |
| func (*ID) Descriptor() ([]byte, []int) { |
| return fileDescriptor_c2e3fd231961e826, []int{1} |
| } |
| |
| func (m *ID) XXX_Unmarshal(b []byte) error { |
| return xxx_messageInfo_ID.Unmarshal(m, b) |
| } |
| func (m *ID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| return xxx_messageInfo_ID.Marshal(b, m, deterministic) |
| } |
| func (m *ID) XXX_Merge(src proto.Message) { |
| xxx_messageInfo_ID.Merge(m, src) |
| } |
| func (m *ID) XXX_Size() int { |
| return xxx_messageInfo_ID.Size(m) |
| } |
| func (m *ID) XXX_DiscardUnknown() { |
| xxx_messageInfo_ID.DiscardUnknown(m) |
| } |
| |
| var xxx_messageInfo_ID proto.InternalMessageInfo |
| |
| func (m *ID) GetId() string { |
| if m != nil { |
| return m.Id |
| } |
| return "" |
| } |
| |
| // Represents a list of IDs |
| type IDs struct { |
| Items []*ID `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"` |
| XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| XXX_unrecognized []byte `json:"-"` |
| XXX_sizecache int32 `json:"-"` |
| } |
| |
| func (m *IDs) Reset() { *m = IDs{} } |
| func (m *IDs) String() string { return proto.CompactTextString(m) } |
| func (*IDs) ProtoMessage() {} |
| func (*IDs) Descriptor() ([]byte, []int) { |
| return fileDescriptor_c2e3fd231961e826, []int{2} |
| } |
| |
| func (m *IDs) XXX_Unmarshal(b []byte) error { |
| return xxx_messageInfo_IDs.Unmarshal(m, b) |
| } |
| func (m *IDs) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| return xxx_messageInfo_IDs.Marshal(b, m, deterministic) |
| } |
| func (m *IDs) XXX_Merge(src proto.Message) { |
| xxx_messageInfo_IDs.Merge(m, src) |
| } |
| func (m *IDs) XXX_Size() int { |
| return xxx_messageInfo_IDs.Size(m) |
| } |
| func (m *IDs) XXX_DiscardUnknown() { |
| xxx_messageInfo_IDs.DiscardUnknown(m) |
| } |
| |
| var xxx_messageInfo_IDs proto.InternalMessageInfo |
| |
| func (m *IDs) GetItems() []*ID { |
| if m != nil { |
| return m.Items |
| } |
| return nil |
| } |
| |
| type Connection struct { |
| // endpoint is the endpoint sending the request |
| Endpoint string `protobuf:"bytes,1,opt,name=endpoint,proto3" json:"endpoint,omitempty"` |
| // contextInfo represents additional contextual information |
| ContextInfo string `protobuf:"bytes,2,opt,name=contextInfo,proto3" json:"contextInfo,omitempty"` |
| // keep_alive_interval is used to indicate to the remote endpoint how often it |
| // will get a keep alive notification |
| KeepAliveInterval int64 `protobuf:"varint,3,opt,name=keep_alive_interval,json=keepAliveInterval,proto3" json:"keep_alive_interval,omitempty"` |
| XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| XXX_unrecognized []byte `json:"-"` |
| XXX_sizecache int32 `json:"-"` |
| } |
| |
| func (m *Connection) Reset() { *m = Connection{} } |
| func (m *Connection) String() string { return proto.CompactTextString(m) } |
| func (*Connection) ProtoMessage() {} |
| func (*Connection) Descriptor() ([]byte, []int) { |
| return fileDescriptor_c2e3fd231961e826, []int{3} |
| } |
| |
| func (m *Connection) XXX_Unmarshal(b []byte) error { |
| return xxx_messageInfo_Connection.Unmarshal(m, b) |
| } |
| func (m *Connection) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| return xxx_messageInfo_Connection.Marshal(b, m, deterministic) |
| } |
| func (m *Connection) XXX_Merge(src proto.Message) { |
| xxx_messageInfo_Connection.Merge(m, src) |
| } |
| func (m *Connection) XXX_Size() int { |
| return xxx_messageInfo_Connection.Size(m) |
| } |
| func (m *Connection) XXX_DiscardUnknown() { |
| xxx_messageInfo_Connection.DiscardUnknown(m) |
| } |
| |
| var xxx_messageInfo_Connection proto.InternalMessageInfo |
| |
| func (m *Connection) GetEndpoint() string { |
| if m != nil { |
| return m.Endpoint |
| } |
| return "" |
| } |
| |
| func (m *Connection) GetContextInfo() string { |
| if m != nil { |
| return m.ContextInfo |
| } |
| return "" |
| } |
| |
| func (m *Connection) GetKeepAliveInterval() int64 { |
| if m != nil { |
| return m.KeepAliveInterval |
| } |
| return 0 |
| } |
| |
| type AdminState struct { |
| XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| XXX_unrecognized []byte `json:"-"` |
| XXX_sizecache int32 `json:"-"` |
| } |
| |
| func (m *AdminState) Reset() { *m = AdminState{} } |
| func (m *AdminState) String() string { return proto.CompactTextString(m) } |
| func (*AdminState) ProtoMessage() {} |
| func (*AdminState) Descriptor() ([]byte, []int) { |
| return fileDescriptor_c2e3fd231961e826, []int{4} |
| } |
| |
| func (m *AdminState) XXX_Unmarshal(b []byte) error { |
| return xxx_messageInfo_AdminState.Unmarshal(m, b) |
| } |
| func (m *AdminState) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| return xxx_messageInfo_AdminState.Marshal(b, m, deterministic) |
| } |
| func (m *AdminState) XXX_Merge(src proto.Message) { |
| xxx_messageInfo_AdminState.Merge(m, src) |
| } |
| func (m *AdminState) XXX_Size() int { |
| return xxx_messageInfo_AdminState.Size(m) |
| } |
| func (m *AdminState) XXX_DiscardUnknown() { |
| xxx_messageInfo_AdminState.DiscardUnknown(m) |
| } |
| |
| var xxx_messageInfo_AdminState proto.InternalMessageInfo |
| |
| type OperStatus struct { |
| XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| XXX_unrecognized []byte `json:"-"` |
| XXX_sizecache int32 `json:"-"` |
| } |
| |
| func (m *OperStatus) Reset() { *m = OperStatus{} } |
| func (m *OperStatus) String() string { return proto.CompactTextString(m) } |
| func (*OperStatus) ProtoMessage() {} |
| func (*OperStatus) Descriptor() ([]byte, []int) { |
| return fileDescriptor_c2e3fd231961e826, []int{5} |
| } |
| |
| func (m *OperStatus) XXX_Unmarshal(b []byte) error { |
| return xxx_messageInfo_OperStatus.Unmarshal(m, b) |
| } |
| func (m *OperStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| return xxx_messageInfo_OperStatus.Marshal(b, m, deterministic) |
| } |
| func (m *OperStatus) XXX_Merge(src proto.Message) { |
| xxx_messageInfo_OperStatus.Merge(m, src) |
| } |
| func (m *OperStatus) XXX_Size() int { |
| return xxx_messageInfo_OperStatus.Size(m) |
| } |
| func (m *OperStatus) XXX_DiscardUnknown() { |
| xxx_messageInfo_OperStatus.DiscardUnknown(m) |
| } |
| |
| var xxx_messageInfo_OperStatus proto.InternalMessageInfo |
| |
| type ConnectStatus struct { |
| XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| XXX_unrecognized []byte `json:"-"` |
| XXX_sizecache int32 `json:"-"` |
| } |
| |
| func (m *ConnectStatus) Reset() { *m = ConnectStatus{} } |
| func (m *ConnectStatus) String() string { return proto.CompactTextString(m) } |
| func (*ConnectStatus) ProtoMessage() {} |
| func (*ConnectStatus) Descriptor() ([]byte, []int) { |
| return fileDescriptor_c2e3fd231961e826, []int{6} |
| } |
| |
| func (m *ConnectStatus) XXX_Unmarshal(b []byte) error { |
| return xxx_messageInfo_ConnectStatus.Unmarshal(m, b) |
| } |
| func (m *ConnectStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| return xxx_messageInfo_ConnectStatus.Marshal(b, m, deterministic) |
| } |
| func (m *ConnectStatus) XXX_Merge(src proto.Message) { |
| xxx_messageInfo_ConnectStatus.Merge(m, src) |
| } |
| func (m *ConnectStatus) XXX_Size() int { |
| return xxx_messageInfo_ConnectStatus.Size(m) |
| } |
| func (m *ConnectStatus) XXX_DiscardUnknown() { |
| xxx_messageInfo_ConnectStatus.DiscardUnknown(m) |
| } |
| |
| var xxx_messageInfo_ConnectStatus proto.InternalMessageInfo |
| |
| type OperationResp struct { |
| // Return code |
| Code OperationResp_OperationReturnCode `protobuf:"varint,1,opt,name=code,proto3,enum=common.OperationResp_OperationReturnCode" json:"code,omitempty"` |
| // Additional Info |
| AdditionalInfo string `protobuf:"bytes,2,opt,name=additional_info,json=additionalInfo,proto3" json:"additional_info,omitempty"` |
| XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| XXX_unrecognized []byte `json:"-"` |
| XXX_sizecache int32 `json:"-"` |
| } |
| |
| func (m *OperationResp) Reset() { *m = OperationResp{} } |
| func (m *OperationResp) String() string { return proto.CompactTextString(m) } |
| func (*OperationResp) ProtoMessage() {} |
| func (*OperationResp) Descriptor() ([]byte, []int) { |
| return fileDescriptor_c2e3fd231961e826, []int{7} |
| } |
| |
| func (m *OperationResp) XXX_Unmarshal(b []byte) error { |
| return xxx_messageInfo_OperationResp.Unmarshal(m, b) |
| } |
| func (m *OperationResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| return xxx_messageInfo_OperationResp.Marshal(b, m, deterministic) |
| } |
| func (m *OperationResp) XXX_Merge(src proto.Message) { |
| xxx_messageInfo_OperationResp.Merge(m, src) |
| } |
| func (m *OperationResp) XXX_Size() int { |
| return xxx_messageInfo_OperationResp.Size(m) |
| } |
| func (m *OperationResp) XXX_DiscardUnknown() { |
| xxx_messageInfo_OperationResp.DiscardUnknown(m) |
| } |
| |
| var xxx_messageInfo_OperationResp proto.InternalMessageInfo |
| |
| func (m *OperationResp) GetCode() OperationResp_OperationReturnCode { |
| if m != nil { |
| return m.Code |
| } |
| return OperationResp_OPERATION_SUCCESS |
| } |
| |
| func (m *OperationResp) GetAdditionalInfo() string { |
| if m != nil { |
| return m.AdditionalInfo |
| } |
| return "" |
| } |
| |
| func init() { |
| proto.RegisterEnum("common.TestModeKeys", TestModeKeys_name, TestModeKeys_value) |
| proto.RegisterEnum("common.AdminState_Types", AdminState_Types_name, AdminState_Types_value) |
| proto.RegisterEnum("common.OperStatus_Types", OperStatus_Types_name, OperStatus_Types_value) |
| proto.RegisterEnum("common.ConnectStatus_Types", ConnectStatus_Types_name, ConnectStatus_Types_value) |
| proto.RegisterEnum("common.OperationResp_OperationReturnCode", OperationResp_OperationReturnCode_name, OperationResp_OperationReturnCode_value) |
| proto.RegisterType((*Key)(nil), "common.Key") |
| proto.RegisterType((*ID)(nil), "common.ID") |
| proto.RegisterType((*IDs)(nil), "common.IDs") |
| proto.RegisterType((*Connection)(nil), "common.Connection") |
| proto.RegisterType((*AdminState)(nil), "common.AdminState") |
| proto.RegisterType((*OperStatus)(nil), "common.OperStatus") |
| proto.RegisterType((*ConnectStatus)(nil), "common.ConnectStatus") |
| proto.RegisterType((*OperationResp)(nil), "common.OperationResp") |
| } |
| |
| func init() { proto.RegisterFile("voltha_protos/common.proto", fileDescriptor_c2e3fd231961e826) } |
| |
| var fileDescriptor_c2e3fd231961e826 = []byte{ |
| // 593 bytes of a gzipped FileDescriptorProto |
| 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x53, 0xdd, 0x4e, 0xdb, 0x30, |
| 0x14, 0x26, 0x09, 0x14, 0x38, 0x85, 0x12, 0xcc, 0xd8, 0x3a, 0xb4, 0x8b, 0x2a, 0x37, 0xb0, 0x49, |
| 0x6b, 0x25, 0xb6, 0x5d, 0xee, 0x22, 0x24, 0x5e, 0x67, 0x01, 0x76, 0xe5, 0xa4, 0x20, 0x71, 0x13, |
| 0x85, 0xc6, 0x83, 0x88, 0xd6, 0x8e, 0x1a, 0x53, 0xad, 0x7b, 0x8a, 0xbd, 0xc1, 0xde, 0x71, 0x4f, |
| 0x30, 0x39, 0x0d, 0x2b, 0x48, 0xbd, 0xf3, 0xf7, 0x7d, 0x27, 0xe7, 0xef, 0xcb, 0x81, 0xa3, 0x99, |
| 0x1a, 0xeb, 0xfb, 0x34, 0x29, 0xa6, 0x4a, 0xab, 0xb2, 0x37, 0x52, 0x93, 0x89, 0x92, 0xdd, 0x0a, |
| 0xa1, 0xc6, 0x02, 0x79, 0x6f, 0xc0, 0x39, 0x17, 0x73, 0xe4, 0x82, 0xf3, 0x20, 0xe6, 0x6d, 0xab, |
| 0x63, 0x9d, 0x6c, 0x73, 0xf3, 0xf4, 0x5e, 0x81, 0x4d, 0x42, 0xd4, 0x02, 0x3b, 0xcf, 0x6a, 0xda, |
| 0xce, 0x33, 0xef, 0x18, 0x1c, 0x12, 0x96, 0xa8, 0x03, 0x1b, 0xb9, 0x16, 0x93, 0xb2, 0x6d, 0x75, |
| 0x9c, 0x93, 0xe6, 0x29, 0x74, 0xeb, 0xdc, 0x24, 0xe4, 0x0b, 0xc1, 0xfb, 0x05, 0x10, 0x28, 0x29, |
| 0xc5, 0x48, 0xe7, 0x4a, 0xa2, 0x23, 0xd8, 0x12, 0x32, 0x2b, 0x54, 0x2e, 0x75, 0x9d, 0xec, 0x3f, |
| 0x46, 0x1d, 0x68, 0x8e, 0x94, 0xd4, 0xe2, 0xa7, 0x26, 0xf2, 0x87, 0x6a, 0xdb, 0x95, 0xfc, 0x9c, |
| 0x42, 0x5d, 0x38, 0x78, 0x10, 0xa2, 0x48, 0xd2, 0x71, 0x3e, 0x13, 0x49, 0x2e, 0xb5, 0x98, 0xce, |
| 0xd2, 0x71, 0xdb, 0xe9, 0x58, 0x27, 0x0e, 0xdf, 0x37, 0x92, 0x6f, 0x14, 0x52, 0x0b, 0xde, 0x3d, |
| 0x80, 0x9f, 0x4d, 0x72, 0x19, 0xe9, 0x54, 0x0b, 0xef, 0x06, 0x36, 0xe2, 0x79, 0x21, 0x4a, 0xd4, |
| 0x84, 0xcd, 0x21, 0x3d, 0xa7, 0xec, 0x9a, 0xba, 0x6b, 0x08, 0x41, 0x6b, 0xc0, 0xf1, 0x80, 0xb3, |
| 0x2b, 0x12, 0x11, 0x46, 0x71, 0xe8, 0x5a, 0x26, 0x00, 0x53, 0xff, 0xec, 0x02, 0x87, 0xae, 0x8d, |
| 0x76, 0x60, 0x2b, 0x24, 0xd1, 0x02, 0x39, 0xe8, 0x10, 0xf6, 0x43, 0x76, 0x4d, 0x2f, 0x98, 0x1f, |
| 0x12, 0xda, 0x4f, 0xc8, 0xa5, 0xdf, 0xc7, 0xee, 0xba, 0xf7, 0xc7, 0x02, 0x60, 0x85, 0x98, 0x9a, |
| 0x4a, 0x8f, 0xa5, 0xf7, 0xdb, 0x5a, 0x59, 0xab, 0x05, 0x10, 0x92, 0x28, 0x60, 0x57, 0x98, 0x57, |
| 0x75, 0x5a, 0x00, 0x7e, 0x10, 0x93, 0x2b, 0x3f, 0x26, 0xb4, 0xef, 0xda, 0x26, 0x38, 0xc6, 0x51, |
| 0x05, 0x1c, 0x04, 0xd0, 0xa8, 0x44, 0xec, 0xae, 0x9b, 0xf7, 0x37, 0x9f, 0x98, 0x0e, 0x36, 0xd0, |
| 0x1e, 0x34, 0x39, 0x0e, 0x18, 0x0d, 0xc8, 0x85, 0x09, 0x6c, 0xa0, 0xd7, 0x80, 0x9e, 0x11, 0x49, |
| 0x1d, 0xb8, 0x69, 0x1a, 0xe7, 0xf8, 0x8c, 0xb1, 0x18, 0x87, 0xee, 0x96, 0x87, 0x61, 0xb7, 0xf6, |
| 0xa1, 0xee, 0xf1, 0xf3, 0xca, 0x16, 0xf7, 0xa0, 0x39, 0xa4, 0x1c, 0xfb, 0xc1, 0x77, 0x33, 0xb1, |
| 0x6b, 0xa1, 0x5d, 0xd8, 0x5e, 0x42, 0xdb, 0xfb, 0x6b, 0xc1, 0xae, 0x19, 0x34, 0x35, 0x76, 0x72, |
| 0x51, 0x16, 0xe8, 0x2b, 0xac, 0x8f, 0x54, 0x26, 0x2a, 0x3b, 0x5b, 0xa7, 0xef, 0x9f, 0xfe, 0x80, |
| 0x17, 0x41, 0xcf, 0x91, 0x7e, 0x9c, 0xca, 0x40, 0x65, 0x82, 0x57, 0x9f, 0xa1, 0x63, 0xd8, 0x4b, |
| 0xb3, 0x2c, 0x37, 0x5a, 0x3a, 0x4e, 0xf2, 0xa5, 0xf3, 0xad, 0x25, 0x6d, 0xcc, 0xf7, 0xe6, 0x70, |
| 0xb0, 0x22, 0x8b, 0x31, 0x84, 0x0d, 0x30, 0xf7, 0x63, 0xc2, 0x68, 0x12, 0x0d, 0x83, 0x00, 0x47, |
| 0x91, 0xbb, 0xf6, 0x92, 0x36, 0x2b, 0x19, 0x72, 0x33, 0xcd, 0x5b, 0x38, 0x5c, 0xd2, 0x43, 0x1a, |
| 0x0d, 0x07, 0x03, 0xc6, 0xe3, 0xca, 0xe7, 0x17, 0x12, 0xa1, 0xc9, 0x80, 0xb3, 0x3e, 0x37, 0xc9, |
| 0x9c, 0x0f, 0xef, 0x60, 0x27, 0x16, 0xa5, 0xbe, 0x54, 0x99, 0x38, 0x17, 0xf3, 0xd2, 0x6c, 0x36, |
| 0x2d, 0xf2, 0x44, 0x8b, 0x52, 0xbb, 0x6b, 0x67, 0x18, 0x0e, 0xd4, 0xf4, 0xae, 0xab, 0x0a, 0x21, |
| 0x47, 0x6a, 0x9a, 0x75, 0x17, 0xc7, 0x76, 0xd3, 0xbd, 0xcb, 0xf5, 0xfd, 0xe3, 0xad, 0xd9, 0x47, |
| 0xef, 0x49, 0xeb, 0x2d, 0xb4, 0x8f, 0xf5, 0x21, 0xce, 0xbe, 0xf4, 0xee, 0x54, 0x7d, 0x8e, 0xb7, |
| 0x8d, 0x8a, 0xfc, 0xf4, 0x2f, 0x00, 0x00, 0xff, 0xff, 0x78, 0x80, 0xdb, 0x29, 0xad, 0x03, 0x00, |
| 0x00, |
| } |