storj/pkg/pb/pointerdb.pb.go

501 lines
19 KiB
Go
Raw Normal View History

// Code generated by protoc-gen-gogo. DO NOT EDIT.
// source: pointerdb.proto
package pb
import (
2019-03-18 13:08:24 +00:00
fmt "fmt"
_ "github.com/gogo/protobuf/gogoproto"
proto "github.com/gogo/protobuf/proto"
timestamp "github.com/golang/protobuf/ptypes/timestamp"
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.GoGoProtoPackageIsVersion2 // please upgrade the proto package
type RedundancyScheme_SchemeType int32
const (
RedundancyScheme_RS RedundancyScheme_SchemeType = 0
)
var RedundancyScheme_SchemeType_name = map[int32]string{
0: "RS",
}
2019-03-18 13:08:24 +00:00
var RedundancyScheme_SchemeType_value = map[string]int32{
"RS": 0,
}
func (x RedundancyScheme_SchemeType) String() string {
return proto.EnumName(RedundancyScheme_SchemeType_name, int32(x))
}
2019-03-18 13:08:24 +00:00
func (RedundancyScheme_SchemeType) EnumDescriptor() ([]byte, []int) {
2019-03-18 13:08:24 +00:00
return fileDescriptor_75fef806d28fc810, []int{0, 0}
}
type Pointer_DataType int32
const (
Pointer_INLINE Pointer_DataType = 0
Pointer_REMOTE Pointer_DataType = 1
)
var Pointer_DataType_name = map[int32]string{
0: "INLINE",
1: "REMOTE",
}
2019-03-18 13:08:24 +00:00
var Pointer_DataType_value = map[string]int32{
"INLINE": 0,
"REMOTE": 1,
}
func (x Pointer_DataType) String() string {
return proto.EnumName(Pointer_DataType_name, int32(x))
}
2019-03-18 13:08:24 +00:00
func (Pointer_DataType) EnumDescriptor() ([]byte, []int) {
2019-03-18 13:08:24 +00:00
return fileDescriptor_75fef806d28fc810, []int{3, 0}
}
type RedundancyScheme struct {
Type RedundancyScheme_SchemeType `protobuf:"varint,1,opt,name=type,proto3,enum=pointerdb.RedundancyScheme_SchemeType" json:"type,omitempty"`
// these values apply to RS encoding
MinReq int32 `protobuf:"varint,2,opt,name=min_req,json=minReq,proto3" json:"min_req,omitempty"`
Total int32 `protobuf:"varint,3,opt,name=total,proto3" json:"total,omitempty"`
RepairThreshold int32 `protobuf:"varint,4,opt,name=repair_threshold,json=repairThreshold,proto3" json:"repair_threshold,omitempty"`
SuccessThreshold int32 `protobuf:"varint,5,opt,name=success_threshold,json=successThreshold,proto3" json:"success_threshold,omitempty"`
ErasureShareSize int32 `protobuf:"varint,6,opt,name=erasure_share_size,json=erasureShareSize,proto3" json:"erasure_share_size,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *RedundancyScheme) Reset() { *m = RedundancyScheme{} }
func (m *RedundancyScheme) String() string { return proto.CompactTextString(m) }
func (*RedundancyScheme) ProtoMessage() {}
func (*RedundancyScheme) Descriptor() ([]byte, []int) {
2019-03-18 13:08:24 +00:00
return fileDescriptor_75fef806d28fc810, []int{0}
}
func (m *RedundancyScheme) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RedundancyScheme.Unmarshal(m, b)
}
func (m *RedundancyScheme) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_RedundancyScheme.Marshal(b, m, deterministic)
}
2019-03-18 13:08:24 +00:00
func (m *RedundancyScheme) XXX_Merge(src proto.Message) {
xxx_messageInfo_RedundancyScheme.Merge(m, src)
}
func (m *RedundancyScheme) XXX_Size() int {
return xxx_messageInfo_RedundancyScheme.Size(m)
}
func (m *RedundancyScheme) XXX_DiscardUnknown() {
xxx_messageInfo_RedundancyScheme.DiscardUnknown(m)
}
var xxx_messageInfo_RedundancyScheme proto.InternalMessageInfo
func (m *RedundancyScheme) GetType() RedundancyScheme_SchemeType {
if m != nil {
return m.Type
}
return RedundancyScheme_RS
}
func (m *RedundancyScheme) GetMinReq() int32 {
if m != nil {
return m.MinReq
}
return 0
}
func (m *RedundancyScheme) GetTotal() int32 {
if m != nil {
return m.Total
}
return 0
}
func (m *RedundancyScheme) GetRepairThreshold() int32 {
if m != nil {
return m.RepairThreshold
}
return 0
}
func (m *RedundancyScheme) GetSuccessThreshold() int32 {
if m != nil {
return m.SuccessThreshold
}
return 0
}
func (m *RedundancyScheme) GetErasureShareSize() int32 {
if m != nil {
return m.ErasureShareSize
}
return 0
}
type RemotePiece struct {
PieceNum int32 `protobuf:"varint,1,opt,name=piece_num,json=pieceNum,proto3" json:"piece_num,omitempty"`
NodeId NodeID `protobuf:"bytes,2,opt,name=node_id,json=nodeId,proto3,customtype=NodeID" json:"node_id"`
Hash *PieceHash `protobuf:"bytes,3,opt,name=hash,proto3" json:"hash,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *RemotePiece) Reset() { *m = RemotePiece{} }
func (m *RemotePiece) String() string { return proto.CompactTextString(m) }
func (*RemotePiece) ProtoMessage() {}
func (*RemotePiece) Descriptor() ([]byte, []int) {
2019-03-18 13:08:24 +00:00
return fileDescriptor_75fef806d28fc810, []int{1}
}
func (m *RemotePiece) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RemotePiece.Unmarshal(m, b)
}
func (m *RemotePiece) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_RemotePiece.Marshal(b, m, deterministic)
}
2019-03-18 13:08:24 +00:00
func (m *RemotePiece) XXX_Merge(src proto.Message) {
xxx_messageInfo_RemotePiece.Merge(m, src)
}
func (m *RemotePiece) XXX_Size() int {
return xxx_messageInfo_RemotePiece.Size(m)
}
func (m *RemotePiece) XXX_DiscardUnknown() {
xxx_messageInfo_RemotePiece.DiscardUnknown(m)
}
var xxx_messageInfo_RemotePiece proto.InternalMessageInfo
func (m *RemotePiece) GetPieceNum() int32 {
if m != nil {
return m.PieceNum
}
return 0
}
func (m *RemotePiece) GetHash() *PieceHash {
if m != nil {
return m.Hash
}
return nil
}
type RemoteSegment struct {
Redundancy *RedundancyScheme `protobuf:"bytes,1,opt,name=redundancy,proto3" json:"redundancy,omitempty"`
RootPieceId PieceID `protobuf:"bytes,2,opt,name=root_piece_id,json=rootPieceId,proto3,customtype=PieceID" json:"root_piece_id"`
RemotePieces []*RemotePiece `protobuf:"bytes,3,rep,name=remote_pieces,json=remotePieces,proto3" json:"remote_pieces,omitempty"`
MerkleRoot []byte `protobuf:"bytes,4,opt,name=merkle_root,json=merkleRoot,proto3" json:"merkle_root,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *RemoteSegment) Reset() { *m = RemoteSegment{} }
func (m *RemoteSegment) String() string { return proto.CompactTextString(m) }
func (*RemoteSegment) ProtoMessage() {}
func (*RemoteSegment) Descriptor() ([]byte, []int) {
2019-03-18 13:08:24 +00:00
return fileDescriptor_75fef806d28fc810, []int{2}
}
func (m *RemoteSegment) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RemoteSegment.Unmarshal(m, b)
}
func (m *RemoteSegment) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_RemoteSegment.Marshal(b, m, deterministic)
}
2019-03-18 13:08:24 +00:00
func (m *RemoteSegment) XXX_Merge(src proto.Message) {
xxx_messageInfo_RemoteSegment.Merge(m, src)
}
func (m *RemoteSegment) XXX_Size() int {
return xxx_messageInfo_RemoteSegment.Size(m)
}
func (m *RemoteSegment) XXX_DiscardUnknown() {
xxx_messageInfo_RemoteSegment.DiscardUnknown(m)
}
var xxx_messageInfo_RemoteSegment proto.InternalMessageInfo
func (m *RemoteSegment) GetRedundancy() *RedundancyScheme {
if m != nil {
return m.Redundancy
}
return nil
}
func (m *RemoteSegment) GetRemotePieces() []*RemotePiece {
if m != nil {
return m.RemotePieces
}
return nil
}
func (m *RemoteSegment) GetMerkleRoot() []byte {
if m != nil {
return m.MerkleRoot
}
return nil
}
type Pointer struct {
Type Pointer_DataType `protobuf:"varint,1,opt,name=type,proto3,enum=pointerdb.Pointer_DataType" json:"type,omitempty"`
InlineSegment []byte `protobuf:"bytes,3,opt,name=inline_segment,json=inlineSegment,proto3" json:"inline_segment,omitempty"`
Remote *RemoteSegment `protobuf:"bytes,4,opt,name=remote,proto3" json:"remote,omitempty"`
SegmentSize int64 `protobuf:"varint,5,opt,name=segment_size,json=segmentSize,proto3" json:"segment_size,omitempty"`
CreationDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
ExpirationDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=expiration_date,json=expirationDate,proto3" json:"expiration_date,omitempty"`
Metadata []byte `protobuf:"bytes,8,opt,name=metadata,proto3" json:"metadata,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Pointer) Reset() { *m = Pointer{} }
func (m *Pointer) String() string { return proto.CompactTextString(m) }
func (*Pointer) ProtoMessage() {}
func (*Pointer) Descriptor() ([]byte, []int) {
2019-03-18 13:08:24 +00:00
return fileDescriptor_75fef806d28fc810, []int{3}
}
func (m *Pointer) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Pointer.Unmarshal(m, b)
}
func (m *Pointer) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Pointer.Marshal(b, m, deterministic)
}
2019-03-18 13:08:24 +00:00
func (m *Pointer) XXX_Merge(src proto.Message) {
xxx_messageInfo_Pointer.Merge(m, src)
}
func (m *Pointer) XXX_Size() int {
return xxx_messageInfo_Pointer.Size(m)
}
func (m *Pointer) XXX_DiscardUnknown() {
xxx_messageInfo_Pointer.DiscardUnknown(m)
}
var xxx_messageInfo_Pointer proto.InternalMessageInfo
func (m *Pointer) GetType() Pointer_DataType {
if m != nil {
return m.Type
}
return Pointer_INLINE
}
func (m *Pointer) GetInlineSegment() []byte {
if m != nil {
return m.InlineSegment
}
return nil
}
func (m *Pointer) GetRemote() *RemoteSegment {
if m != nil {
return m.Remote
}
return nil
}
func (m *Pointer) GetSegmentSize() int64 {
if m != nil {
return m.SegmentSize
}
return 0
}
func (m *Pointer) GetCreationDate() *timestamp.Timestamp {
if m != nil {
return m.CreationDate
}
return nil
}
func (m *Pointer) GetExpirationDate() *timestamp.Timestamp {
if m != nil {
return m.ExpirationDate
}
return nil
}
func (m *Pointer) GetMetadata() []byte {
if m != nil {
return m.Metadata
}
return nil
}
// ListResponse is a response message for the List rpc call
type ListResponse struct {
Items []*ListResponse_Item `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"`
More bool `protobuf:"varint,2,opt,name=more,proto3" json:"more,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ListResponse) Reset() { *m = ListResponse{} }
func (m *ListResponse) String() string { return proto.CompactTextString(m) }
func (*ListResponse) ProtoMessage() {}
func (*ListResponse) Descriptor() ([]byte, []int) {
2019-03-30 11:21:49 +00:00
return fileDescriptor_75fef806d28fc810, []int{4}
}
func (m *ListResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ListResponse.Unmarshal(m, b)
}
func (m *ListResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ListResponse.Marshal(b, m, deterministic)
}
2019-03-18 13:08:24 +00:00
func (m *ListResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_ListResponse.Merge(m, src)
}
func (m *ListResponse) XXX_Size() int {
return xxx_messageInfo_ListResponse.Size(m)
}
func (m *ListResponse) XXX_DiscardUnknown() {
xxx_messageInfo_ListResponse.DiscardUnknown(m)
}
var xxx_messageInfo_ListResponse proto.InternalMessageInfo
func (m *ListResponse) GetItems() []*ListResponse_Item {
if m != nil {
return m.Items
}
return nil
}
func (m *ListResponse) GetMore() bool {
if m != nil {
return m.More
}
return false
}
type ListResponse_Item struct {
Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
Pointer *Pointer `protobuf:"bytes,2,opt,name=pointer,proto3" json:"pointer,omitempty"`
IsPrefix bool `protobuf:"varint,3,opt,name=is_prefix,json=isPrefix,proto3" json:"is_prefix,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ListResponse_Item) Reset() { *m = ListResponse_Item{} }
func (m *ListResponse_Item) String() string { return proto.CompactTextString(m) }
func (*ListResponse_Item) ProtoMessage() {}
func (*ListResponse_Item) Descriptor() ([]byte, []int) {
2019-03-30 11:21:49 +00:00
return fileDescriptor_75fef806d28fc810, []int{4, 0}
}
func (m *ListResponse_Item) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ListResponse_Item.Unmarshal(m, b)
}
func (m *ListResponse_Item) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ListResponse_Item.Marshal(b, m, deterministic)
}
2019-03-18 13:08:24 +00:00
func (m *ListResponse_Item) XXX_Merge(src proto.Message) {
xxx_messageInfo_ListResponse_Item.Merge(m, src)
}
func (m *ListResponse_Item) XXX_Size() int {
return xxx_messageInfo_ListResponse_Item.Size(m)
}
func (m *ListResponse_Item) XXX_DiscardUnknown() {
xxx_messageInfo_ListResponse_Item.DiscardUnknown(m)
}
var xxx_messageInfo_ListResponse_Item proto.InternalMessageInfo
func (m *ListResponse_Item) GetPath() string {
if m != nil {
return m.Path
}
return ""
}
func (m *ListResponse_Item) GetPointer() *Pointer {
if m != nil {
return m.Pointer
}
return nil
}
func (m *ListResponse_Item) GetIsPrefix() bool {
if m != nil {
return m.IsPrefix
}
return false
}
func init() {
2019-03-18 13:08:24 +00:00
proto.RegisterEnum("pointerdb.RedundancyScheme_SchemeType", RedundancyScheme_SchemeType_name, RedundancyScheme_SchemeType_value)
proto.RegisterEnum("pointerdb.Pointer_DataType", Pointer_DataType_name, Pointer_DataType_value)
proto.RegisterType((*RedundancyScheme)(nil), "pointerdb.RedundancyScheme")
proto.RegisterType((*RemotePiece)(nil), "pointerdb.RemotePiece")
proto.RegisterType((*RemoteSegment)(nil), "pointerdb.RemoteSegment")
proto.RegisterType((*Pointer)(nil), "pointerdb.Pointer")
proto.RegisterType((*ListResponse)(nil), "pointerdb.ListResponse")
proto.RegisterType((*ListResponse_Item)(nil), "pointerdb.ListResponse.Item")
2019-03-18 13:08:24 +00:00
}
func init() { proto.RegisterFile("pointerdb.proto", fileDescriptor_75fef806d28fc810) }
var fileDescriptor_75fef806d28fc810 = []byte{
2019-06-06 16:16:14 +01:00
// 713 bytes of a gzipped FileDescriptorProto
2019-03-30 11:21:49 +00:00
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x53, 0xcd, 0x6e, 0xeb, 0x44,
0x14, 0x6e, 0xfe, 0x9c, 0xf4, 0xd8, 0xf9, 0xb9, 0xa3, 0x2b, 0xb0, 0x72, 0x91, 0x52, 0x2c, 0x5d,
0x28, 0xe2, 0xca, 0x45, 0xbe, 0x3b, 0xba, 0x40, 0x2a, 0xa9, 0x44, 0xa4, 0x12, 0xaa, 0x49, 0x56,
0x6c, 0xac, 0x49, 0x7c, 0x1a, 0x8f, 0x88, 0x3d, 0xee, 0xcc, 0x44, 0x6a, 0xfb, 0x26, 0x3c, 0x0c,
0x7b, 0x9e, 0x81, 0x45, 0x79, 0x11, 0x16, 0xc8, 0x33, 0x76, 0x92, 0x52, 0x89, 0xbb, 0xb1, 0xcf,
0xcf, 0x77, 0xfe, 0xbe, 0x73, 0x06, 0x86, 0x85, 0xe0, 0xb9, 0x46, 0x99, 0xac, 0xc2, 0x42, 0x0a,
0x2d, 0xc8, 0xe9, 0xde, 0x30, 0x9e, 0x6c, 0x84, 0xd8, 0x6c, 0xf1, 0xc2, 0x38, 0x56, 0xbb, 0xbb,
0x0b, 0xcd, 0x33, 0x54, 0x9a, 0x65, 0x85, 0xc5, 0x8e, 0x61, 0x23, 0x36, 0xa2, 0x96, 0x73, 0x91,
2019-06-06 16:16:14 +01:00
0x60, 0x25, 0x7b, 0x42, 0x26, 0x28, 0x95, 0xd5, 0x82, 0xdf, 0x9b, 0x30, 0xa2, 0x98, 0xec, 0xf2,
0x84, 0xe5, 0xeb, 0xc7, 0xc5, 0x3a, 0xc5, 0x0c, 0xc9, 0xf7, 0xd0, 0xd6, 0x8f, 0x05, 0xfa, 0x8d,
0xb3, 0xc6, 0xf9, 0x20, 0xfa, 0x2a, 0x3c, 0xb4, 0xf1, 0x5f, 0x68, 0x68, 0x7f, 0xcb, 0xc7, 0x02,
0xa9, 0x89, 0x21, 0x9f, 0x43, 0x37, 0xe3, 0x79, 0x2c, 0xf1, 0xde, 0x6f, 0x9e, 0x35, 0xce, 0x3b,
0xd4, 0xc9, 0x78, 0x4e, 0xf1, 0x9e, 0xbc, 0x85, 0x8e, 0x16, 0x9a, 0x6d, 0xfd, 0x96, 0x31, 0x5b,
0x85, 0x7c, 0x03, 0x23, 0x89, 0x05, 0xe3, 0x32, 0xd6, 0xa9, 0x44, 0x95, 0x8a, 0x6d, 0xe2, 0xb7,
0x0d, 0x60, 0x68, 0xed, 0xcb, 0xda, 0x4c, 0xbe, 0x85, 0x37, 0x6a, 0xb7, 0x5e, 0xa3, 0x52, 0x47,
0xd8, 0x8e, 0xc1, 0x8e, 0x2a, 0xc7, 0x01, 0xfc, 0x01, 0x08, 0x4a, 0xa6, 0x76, 0x12, 0x63, 0x95,
0xb2, 0xf2, 0xcb, 0x9f, 0xd0, 0x77, 0x2c, 0xba, 0xf2, 0x2c, 0x4a, 0xc7, 0x82, 0x3f, 0x61, 0xf0,
0x16, 0xe0, 0x30, 0x08, 0x71, 0xa0, 0x49, 0x17, 0xa3, 0x93, 0xe0, 0x09, 0x5c, 0x8a, 0x99, 0xd0,
0x78, 0xcb, 0x71, 0x8d, 0xe4, 0x1d, 0x9c, 0x16, 0xa5, 0x10, 0xe7, 0xbb, 0xcc, 0x50, 0xd3, 0xa1,
0x3d, 0x63, 0x98, 0xef, 0x32, 0xf2, 0x35, 0x74, 0x4b, 0x8e, 0x63, 0x9e, 0x98, 0xb1, 0xbd, 0xab,
0xc1, 0x9f, 0xcf, 0x93, 0x93, 0xbf, 0x9e, 0x27, 0xce, 0x5c, 0x24, 0x38, 0x9b, 0x52, 0xa7, 0x74,
0xcf, 0x12, 0xf2, 0x1e, 0xda, 0x29, 0x53, 0xa9, 0x61, 0xc1, 0x8d, 0xde, 0x84, 0xd5, 0x36, 0x4c,
0x89, 0x9f, 0x98, 0x4a, 0xa9, 0x71, 0x07, 0x7f, 0x37, 0xa0, 0x6f, 0x8b, 0x2f, 0x70, 0x93, 0x61,
0xae, 0xc9, 0x25, 0x80, 0xdc, 0xb3, 0x6f, 0xea, 0xbb, 0xd1, 0xbb, 0xff, 0x59, 0x0d, 0x3d, 0x82,
0x93, 0x8f, 0xd0, 0x97, 0x42, 0xe8, 0xd8, 0x0e, 0xb0, 0x6f, 0x72, 0x58, 0x35, 0xd9, 0x35, 0xe5,
0x67, 0x53, 0xea, 0x96, 0x28, 0xab, 0x24, 0xe4, 0x12, 0xfa, 0xd2, 0xb4, 0x60, 0xc3, 0x94, 0xdf,
0x3a, 0x6b, 0x9d, 0xbb, 0xd1, 0x67, 0x2f, 0x8a, 0xee, 0xf9, 0xa1, 0x9e, 0x3c, 0x28, 0x8a, 0x4c,
0xc0, 0xcd, 0x50, 0xfe, 0xb6, 0xc5, 0xb8, 0x4c, 0x69, 0x76, 0xea, 0x51, 0xb0, 0x26, 0x2a, 0x84,
0x0e, 0xfe, 0x69, 0x42, 0xf7, 0xd6, 0x26, 0x22, 0x17, 0x2f, 0x0e, 0xee, 0x78, 0xaa, 0x0a, 0x11,
0x4e, 0x99, 0x66, 0x47, 0x57, 0xf6, 0x1e, 0x06, 0x3c, 0xdf, 0xf2, 0x1c, 0x63, 0x65, 0xe9, 0x31,
0x7c, 0x7a, 0xb4, 0x6f, 0xad, 0x35, 0x67, 0xdf, 0x81, 0x63, 0x9b, 0x32, 0xf5, 0xdd, 0xc8, 0x7f,
0xd5, 0x7a, 0x85, 0xa4, 0x15, 0x8e, 0x7c, 0x09, 0x5e, 0x95, 0xd1, 0x5e, 0x4c, 0x79, 0x5f, 0x2d,
0xea, 0x56, 0xb6, 0xf2, 0x58, 0xc8, 0x0f, 0xd0, 0x5f, 0x4b, 0x64, 0x9a, 0x8b, 0x3c, 0x4e, 0x98,
0xb6, 0x57, 0xe5, 0x46, 0xe3, 0xd0, 0xbe, 0xc8, 0xb0, 0x7e, 0x91, 0xe1, 0xb2, 0x7e, 0x91, 0xd4,
0xab, 0x03, 0xa6, 0x4c, 0x23, 0xf9, 0x11, 0x86, 0xf8, 0x50, 0x70, 0x79, 0x94, 0xa2, 0xfb, 0xc9,
0x14, 0x83, 0x43, 0x88, 0x49, 0x32, 0x86, 0x5e, 0x86, 0x9a, 0x25, 0x4c, 0x33, 0xbf, 0x67, 0x66,
0xdf, 0xeb, 0x41, 0x00, 0xbd, 0x9a, 0x2f, 0x02, 0xe0, 0xcc, 0xe6, 0x37, 0xb3, 0xf9, 0xf5, 0xe8,
0xa4, 0x94, 0xe9, 0xf5, 0xcf, 0xbf, 0x2c, 0xaf, 0x47, 0x8d, 0xe0, 0x8f, 0x06, 0x78, 0x37, 0x5c,
0x69, 0x8a, 0xaa, 0x10, 0xb9, 0x42, 0x12, 0x41, 0x87, 0x6b, 0xcc, 0x94, 0xdf, 0x30, 0x5b, 0xfe,
0xe2, 0x88, 0xaa, 0x63, 0x5c, 0x38, 0xd3, 0x98, 0x51, 0x0b, 0x25, 0x04, 0xda, 0x99, 0x90, 0x68,
0xae, 0xa9, 0x47, 0x8d, 0x3c, 0x46, 0x68, 0x97, 0x90, 0xd2, 0x57, 0x30, 0x9d, 0x9a, 0x9d, 0x9e,
0x52, 0x23, 0x93, 0x0f, 0xd0, 0xad, 0xb2, 0x9a, 0x10, 0x37, 0x22, 0xaf, 0x57, 0x4d, 0x6b, 0x48,
0xf9, 0xe0, 0xb8, 0x8a, 0x0b, 0x89, 0x77, 0xfc, 0xc1, 0xec, 0xb7, 0x47, 0x7b, 0x5c, 0xdd, 0x1a,
0xfd, 0xaa, 0xfd, 0x6b, 0xb3, 0x58, 0xad, 0x1c, 0xc3, 0xd4, 0xc7, 0x7f, 0x03, 0x00, 0x00, 0xff,
0xff, 0x30, 0xf7, 0x57, 0xab, 0x2a, 0x05, 0x00, 0x00,
}