2020-10-30 11:12:01 +00:00
|
|
|
// Code generated by protoc-gen-gogo. DO NOT EDIT.
|
|
|
|
// source: inspector.proto
|
|
|
|
|
|
|
|
package internalpb
|
|
|
|
|
|
|
|
import (
|
|
|
|
fmt "fmt"
|
|
|
|
math "math"
|
|
|
|
|
|
|
|
proto "github.com/gogo/protobuf/proto"
|
|
|
|
|
|
|
|
pb "storj.io/common/pb"
|
|
|
|
)
|
|
|
|
|
|
|
|
// 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.
|
2021-02-04 09:01:15 +00:00
|
|
|
const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package
|
2020-10-30 11:12:01 +00:00
|
|
|
|
|
|
|
type ObjectHealthRequest struct {
|
|
|
|
EncryptedPath []byte `protobuf:"bytes,1,opt,name=encrypted_path,json=encryptedPath,proto3" json:"encrypted_path,omitempty"`
|
|
|
|
Bucket []byte `protobuf:"bytes,2,opt,name=bucket,proto3" json:"bucket,omitempty"`
|
|
|
|
ProjectId []byte `protobuf:"bytes,3,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
|
|
|
|
StartAfterSegment int64 `protobuf:"varint,4,opt,name=start_after_segment,json=startAfterSegment,proto3" json:"start_after_segment,omitempty"`
|
|
|
|
EndBeforeSegment int64 `protobuf:"varint,5,opt,name=end_before_segment,json=endBeforeSegment,proto3" json:"end_before_segment,omitempty"`
|
|
|
|
Limit int32 `protobuf:"varint,6,opt,name=limit,proto3" json:"limit,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ObjectHealthRequest) Reset() { *m = ObjectHealthRequest{} }
|
|
|
|
func (m *ObjectHealthRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*ObjectHealthRequest) ProtoMessage() {}
|
|
|
|
func (*ObjectHealthRequest) Descriptor() ([]byte, []int) {
|
2021-06-17 08:38:36 +01:00
|
|
|
return fileDescriptor_a07d9034b2dd9d26, []int{0}
|
2020-10-30 11:12:01 +00:00
|
|
|
}
|
|
|
|
func (m *ObjectHealthRequest) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_ObjectHealthRequest.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *ObjectHealthRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_ObjectHealthRequest.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *ObjectHealthRequest) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_ObjectHealthRequest.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *ObjectHealthRequest) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_ObjectHealthRequest.Size(m)
|
|
|
|
}
|
|
|
|
func (m *ObjectHealthRequest) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_ObjectHealthRequest.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_ObjectHealthRequest proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *ObjectHealthRequest) GetEncryptedPath() []byte {
|
|
|
|
if m != nil {
|
|
|
|
return m.EncryptedPath
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ObjectHealthRequest) GetBucket() []byte {
|
|
|
|
if m != nil {
|
|
|
|
return m.Bucket
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ObjectHealthRequest) GetProjectId() []byte {
|
|
|
|
if m != nil {
|
|
|
|
return m.ProjectId
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ObjectHealthRequest) GetStartAfterSegment() int64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.StartAfterSegment
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ObjectHealthRequest) GetEndBeforeSegment() int64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.EndBeforeSegment
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ObjectHealthRequest) GetLimit() int32 {
|
|
|
|
if m != nil {
|
|
|
|
return m.Limit
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
type ObjectHealthResponse struct {
|
|
|
|
Segments []*SegmentHealth `protobuf:"bytes,1,rep,name=segments,proto3" json:"segments,omitempty"`
|
|
|
|
Redundancy *pb.RedundancyScheme `protobuf:"bytes,2,opt,name=redundancy,proto3" json:"redundancy,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ObjectHealthResponse) Reset() { *m = ObjectHealthResponse{} }
|
|
|
|
func (m *ObjectHealthResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*ObjectHealthResponse) ProtoMessage() {}
|
|
|
|
func (*ObjectHealthResponse) Descriptor() ([]byte, []int) {
|
2021-06-17 08:38:36 +01:00
|
|
|
return fileDescriptor_a07d9034b2dd9d26, []int{1}
|
2020-10-30 11:12:01 +00:00
|
|
|
}
|
|
|
|
func (m *ObjectHealthResponse) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_ObjectHealthResponse.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *ObjectHealthResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_ObjectHealthResponse.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *ObjectHealthResponse) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_ObjectHealthResponse.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *ObjectHealthResponse) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_ObjectHealthResponse.Size(m)
|
|
|
|
}
|
|
|
|
func (m *ObjectHealthResponse) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_ObjectHealthResponse.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_ObjectHealthResponse proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *ObjectHealthResponse) GetSegments() []*SegmentHealth {
|
|
|
|
if m != nil {
|
|
|
|
return m.Segments
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ObjectHealthResponse) GetRedundancy() *pb.RedundancyScheme {
|
|
|
|
if m != nil {
|
|
|
|
return m.Redundancy
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type SegmentHealthRequest struct {
|
|
|
|
Bucket []byte `protobuf:"bytes,1,opt,name=bucket,proto3" json:"bucket,omitempty"`
|
|
|
|
EncryptedPath []byte `protobuf:"bytes,2,opt,name=encrypted_path,json=encryptedPath,proto3" json:"encrypted_path,omitempty"`
|
|
|
|
SegmentIndex int64 `protobuf:"varint,3,opt,name=segment_index,json=segmentIndex,proto3" json:"segment_index,omitempty"`
|
|
|
|
ProjectId []byte `protobuf:"bytes,4,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *SegmentHealthRequest) Reset() { *m = SegmentHealthRequest{} }
|
|
|
|
func (m *SegmentHealthRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*SegmentHealthRequest) ProtoMessage() {}
|
|
|
|
func (*SegmentHealthRequest) Descriptor() ([]byte, []int) {
|
2021-06-17 08:38:36 +01:00
|
|
|
return fileDescriptor_a07d9034b2dd9d26, []int{2}
|
2020-10-30 11:12:01 +00:00
|
|
|
}
|
|
|
|
func (m *SegmentHealthRequest) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_SegmentHealthRequest.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *SegmentHealthRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_SegmentHealthRequest.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *SegmentHealthRequest) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_SegmentHealthRequest.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *SegmentHealthRequest) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_SegmentHealthRequest.Size(m)
|
|
|
|
}
|
|
|
|
func (m *SegmentHealthRequest) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_SegmentHealthRequest.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_SegmentHealthRequest proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *SegmentHealthRequest) GetBucket() []byte {
|
|
|
|
if m != nil {
|
|
|
|
return m.Bucket
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *SegmentHealthRequest) GetEncryptedPath() []byte {
|
|
|
|
if m != nil {
|
|
|
|
return m.EncryptedPath
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *SegmentHealthRequest) GetSegmentIndex() int64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.SegmentIndex
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *SegmentHealthRequest) GetProjectId() []byte {
|
|
|
|
if m != nil {
|
|
|
|
return m.ProjectId
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type SegmentHealthResponse struct {
|
|
|
|
Health *SegmentHealth `protobuf:"bytes,1,opt,name=health,proto3" json:"health,omitempty"`
|
|
|
|
Redundancy *pb.RedundancyScheme `protobuf:"bytes,2,opt,name=redundancy,proto3" json:"redundancy,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *SegmentHealthResponse) Reset() { *m = SegmentHealthResponse{} }
|
|
|
|
func (m *SegmentHealthResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*SegmentHealthResponse) ProtoMessage() {}
|
|
|
|
func (*SegmentHealthResponse) Descriptor() ([]byte, []int) {
|
2021-06-17 08:38:36 +01:00
|
|
|
return fileDescriptor_a07d9034b2dd9d26, []int{3}
|
2020-10-30 11:12:01 +00:00
|
|
|
}
|
|
|
|
func (m *SegmentHealthResponse) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_SegmentHealthResponse.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *SegmentHealthResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_SegmentHealthResponse.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *SegmentHealthResponse) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_SegmentHealthResponse.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *SegmentHealthResponse) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_SegmentHealthResponse.Size(m)
|
|
|
|
}
|
|
|
|
func (m *SegmentHealthResponse) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_SegmentHealthResponse.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_SegmentHealthResponse proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *SegmentHealthResponse) GetHealth() *SegmentHealth {
|
|
|
|
if m != nil {
|
|
|
|
return m.Health
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *SegmentHealthResponse) GetRedundancy() *pb.RedundancyScheme {
|
|
|
|
if m != nil {
|
|
|
|
return m.Redundancy
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type SegmentHealth struct {
|
|
|
|
HealthyIds []NodeID `protobuf:"bytes,1,rep,name=healthy_ids,json=healthyIds,proto3,customtype=NodeID" json:"healthy_ids,omitempty"`
|
|
|
|
UnhealthyIds []NodeID `protobuf:"bytes,2,rep,name=unhealthy_ids,json=unhealthyIds,proto3,customtype=NodeID" json:"unhealthy_ids,omitempty"`
|
|
|
|
OfflineIds []NodeID `protobuf:"bytes,3,rep,name=offline_ids,json=offlineIds,proto3,customtype=NodeID" json:"offline_ids,omitempty"`
|
|
|
|
Segment []byte `protobuf:"bytes,4,opt,name=segment,proto3" json:"segment,omitempty"`
|
|
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
|
XXX_unrecognized []byte `json:"-"`
|
|
|
|
XXX_sizecache int32 `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *SegmentHealth) Reset() { *m = SegmentHealth{} }
|
|
|
|
func (m *SegmentHealth) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*SegmentHealth) ProtoMessage() {}
|
|
|
|
func (*SegmentHealth) Descriptor() ([]byte, []int) {
|
2021-06-17 08:38:36 +01:00
|
|
|
return fileDescriptor_a07d9034b2dd9d26, []int{4}
|
2020-10-30 11:12:01 +00:00
|
|
|
}
|
|
|
|
func (m *SegmentHealth) XXX_Unmarshal(b []byte) error {
|
|
|
|
return xxx_messageInfo_SegmentHealth.Unmarshal(m, b)
|
|
|
|
}
|
|
|
|
func (m *SegmentHealth) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
|
return xxx_messageInfo_SegmentHealth.Marshal(b, m, deterministic)
|
|
|
|
}
|
|
|
|
func (m *SegmentHealth) XXX_Merge(src proto.Message) {
|
|
|
|
xxx_messageInfo_SegmentHealth.Merge(m, src)
|
|
|
|
}
|
|
|
|
func (m *SegmentHealth) XXX_Size() int {
|
|
|
|
return xxx_messageInfo_SegmentHealth.Size(m)
|
|
|
|
}
|
|
|
|
func (m *SegmentHealth) XXX_DiscardUnknown() {
|
|
|
|
xxx_messageInfo_SegmentHealth.DiscardUnknown(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
var xxx_messageInfo_SegmentHealth proto.InternalMessageInfo
|
|
|
|
|
|
|
|
func (m *SegmentHealth) GetSegment() []byte {
|
|
|
|
if m != nil {
|
|
|
|
return m.Segment
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2020-10-30 15:31:08 +00:00
|
|
|
proto.RegisterType((*ObjectHealthRequest)(nil), "satellite.inspector.ObjectHealthRequest")
|
|
|
|
proto.RegisterType((*ObjectHealthResponse)(nil), "satellite.inspector.ObjectHealthResponse")
|
|
|
|
proto.RegisterType((*SegmentHealthRequest)(nil), "satellite.inspector.SegmentHealthRequest")
|
|
|
|
proto.RegisterType((*SegmentHealthResponse)(nil), "satellite.inspector.SegmentHealthResponse")
|
|
|
|
proto.RegisterType((*SegmentHealth)(nil), "satellite.inspector.SegmentHealth")
|
2020-10-30 11:12:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() { proto.RegisterFile("inspector.proto", fileDescriptor_a07d9034b2dd9d26) }
|
|
|
|
|
|
|
|
var fileDescriptor_a07d9034b2dd9d26 = []byte{
|
2021-06-17 08:38:36 +01:00
|
|
|
// 529 bytes of a gzipped FileDescriptorProto
|
|
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x54, 0x4d, 0x8f, 0xd3, 0x30,
|
|
|
|
0x10, 0xc5, 0xdb, 0x6d, 0x81, 0x69, 0x4a, 0xc1, 0x2d, 0x28, 0x2a, 0x42, 0x54, 0x59, 0xad, 0xd4,
|
|
|
|
0x65, 0x51, 0x2a, 0x95, 0x1b, 0x48, 0x48, 0x54, 0x1c, 0xe8, 0x05, 0x50, 0xf6, 0xc6, 0x25, 0x4a,
|
|
|
|
0xe2, 0x69, 0x93, 0x25, 0xb5, 0x83, 0xed, 0x4a, 0xf4, 0x5f, 0x20, 0x71, 0xe2, 0x7f, 0xf0, 0x6b,
|
|
|
|
0x38, 0x70, 0xe0, 0xc2, 0xdf, 0x40, 0x75, 0xdc, 0x6c, 0xbf, 0x0e, 0x95, 0xb8, 0x79, 0xe6, 0xbd,
|
|
|
|
0x79, 0x9e, 0xbe, 0xe7, 0x06, 0xda, 0x19, 0x57, 0x05, 0x26, 0x5a, 0x48, 0xbf, 0x90, 0x42, 0x0b,
|
|
|
|
0xda, 0x51, 0x91, 0xc6, 0x3c, 0xcf, 0x34, 0xfa, 0x15, 0xd4, 0x83, 0x99, 0x98, 0x89, 0x92, 0xd0,
|
|
|
|
0x03, 0x2e, 0x18, 0xda, 0x73, 0xbb, 0x10, 0x19, 0xd7, 0x28, 0x59, 0x5c, 0x36, 0xbc, 0xbf, 0x04,
|
|
|
|
0x3a, 0x1f, 0xe2, 0x6b, 0x4c, 0xf4, 0x3b, 0x8c, 0x72, 0x9d, 0x06, 0xf8, 0x65, 0x81, 0x4a, 0xd3,
|
|
|
|
0x73, 0xb8, 0x87, 0x3c, 0x91, 0xcb, 0x42, 0x23, 0x0b, 0x8b, 0x48, 0xa7, 0x2e, 0xe9, 0x93, 0x81,
|
|
|
|
0x13, 0xb4, 0xaa, 0xee, 0xc7, 0x48, 0xa7, 0xf4, 0x11, 0x34, 0xe2, 0x45, 0xf2, 0x19, 0xb5, 0x7b,
|
|
|
|
0x62, 0x60, 0x5b, 0xd1, 0x27, 0x00, 0x85, 0x14, 0x2b, 0xd9, 0x30, 0x63, 0x6e, 0xcd, 0x60, 0x77,
|
|
|
|
0x6d, 0x67, 0xc2, 0xa8, 0x0f, 0x1d, 0xa5, 0x23, 0xa9, 0xc3, 0x68, 0xaa, 0x51, 0x86, 0x0a, 0x67,
|
|
|
|
0x73, 0xe4, 0xda, 0x3d, 0xed, 0x93, 0x41, 0x2d, 0x78, 0x60, 0xa0, 0x37, 0x2b, 0xe4, 0xaa, 0x04,
|
|
|
|
0xe8, 0x73, 0xa0, 0xc8, 0x59, 0x18, 0xe3, 0x54, 0x48, 0xac, 0xe8, 0x75, 0x43, 0xbf, 0x8f, 0x9c,
|
|
|
|
0x8d, 0x0d, 0xb0, 0x66, 0x77, 0xa1, 0x9e, 0x67, 0xf3, 0x4c, 0xbb, 0x8d, 0x3e, 0x19, 0xd4, 0x83,
|
|
|
|
0xb2, 0xf0, 0xbe, 0x13, 0xe8, 0x6e, 0xff, 0x52, 0x55, 0x08, 0xae, 0x90, 0xbe, 0x86, 0x3b, 0x56,
|
|
|
|
0x51, 0xb9, 0xa4, 0x5f, 0x1b, 0x34, 0x47, 0x9e, 0x7f, 0xc0, 0x53, 0xdf, 0xca, 0xdb, 0xe9, 0x6a,
|
|
|
|
0x86, 0xbe, 0x02, 0x90, 0xc8, 0x16, 0x9c, 0x45, 0x3c, 0x59, 0x1a, 0x1f, 0x9a, 0xa3, 0xc7, 0xfe,
|
|
|
|
0x8d, 0xd1, 0x41, 0x05, 0x5e, 0x25, 0x29, 0xce, 0x31, 0xd8, 0xa0, 0x7b, 0x3f, 0x08, 0x74, 0xb7,
|
|
|
|
0x85, 0x6d, 0x00, 0x37, 0xce, 0x92, 0x2d, 0x67, 0xf7, 0x83, 0x39, 0x39, 0x14, 0xcc, 0x19, 0xb4,
|
|
|
|
0xec, 0x82, 0x61, 0xc6, 0x19, 0x7e, 0x35, 0x19, 0xd4, 0x02, 0xc7, 0x36, 0x27, 0xab, 0xde, 0x4e,
|
|
|
|
0x4a, 0xa7, 0x3b, 0x29, 0x79, 0xdf, 0x08, 0x3c, 0xdc, 0xd9, 0xcd, 0x5a, 0xf6, 0x12, 0x1a, 0xa9,
|
|
|
|
0xe9, 0x98, 0xe5, 0x8e, 0x33, 0xcc, 0x4e, 0xfc, 0x9f, 0x5d, 0x3f, 0x09, 0xb4, 0xb6, 0x64, 0xe9,
|
|
|
|
0x25, 0x34, 0x4b, 0xe1, 0x65, 0x98, 0xb1, 0x32, 0x40, 0x67, 0x0c, 0xbf, 0x7e, 0x3f, 0x6d, 0xbc,
|
|
|
|
0x17, 0x0c, 0x27, 0x6f, 0x03, 0xb0, 0xf0, 0x84, 0x29, 0x3a, 0x84, 0xd6, 0x82, 0x6f, 0xd2, 0x4f,
|
|
|
|
0xf6, 0xe8, 0x4e, 0x45, 0x58, 0x0d, 0x5c, 0x42, 0x53, 0x4c, 0xa7, 0x79, 0xc6, 0xd1, 0xd0, 0x6b,
|
|
|
|
0xfb, 0xea, 0x16, 0x5e, 0x91, 0x5d, 0xb8, 0xbd, 0xf9, 0x92, 0x9d, 0x60, 0x5d, 0x8e, 0xfe, 0x10,
|
|
|
|
0x68, 0x97, 0xfb, 0x4e, 0xd6, 0xee, 0x50, 0x04, 0x67, 0xf3, 0x39, 0xd2, 0xc1, 0x41, 0x0f, 0x0f,
|
|
|
|
0xfc, 0x37, 0x7b, 0x17, 0x47, 0x30, 0xcb, 0xa0, 0xbc, 0x5b, 0x34, 0xdd, 0x35, 0xec, 0xe2, 0x88,
|
|
|
|
0xac, 0xec, 0x45, 0xcf, 0x8e, 0xa1, 0xae, 0x6f, 0x1a, 0x9f, 0x7f, 0x3a, 0x53, 0x5a, 0xc8, 0x6b,
|
|
|
|
0x3f, 0x13, 0x43, 0x73, 0x18, 0x56, 0xd3, 0x43, 0x13, 0x2e, 0x8f, 0xf2, 0x22, 0x8e, 0x1b, 0xe6,
|
|
|
|
0xc3, 0xf3, 0xe2, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x7d, 0x7e, 0x66, 0x26, 0xc9, 0x04, 0x00,
|
|
|
|
0x00,
|
2020-10-30 11:12:01 +00:00
|
|
|
}
|