代码拉取完成,页面将自动刷新
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: common/common.proto
package common
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
import google_protobuf "github.com/golang/protobuf/ptypes/timestamp"
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// These status codes are intended to resemble selected HTTP status codes
type Status int32
const (
Status_UNKNOWN Status = 0
Status_SUCCESS Status = 200
Status_BAD_REQUEST Status = 400
Status_FORBIDDEN Status = 403
Status_NOT_FOUND Status = 404
Status_REQUEST_ENTITY_TOO_LARGE Status = 413
Status_INTERNAL_SERVER_ERROR Status = 500
Status_NOT_IMPLEMENTED Status = 501
Status_SERVICE_UNAVAILABLE Status = 503
)
var Status_name = map[int32]string{
0: "UNKNOWN",
200: "SUCCESS",
400: "BAD_REQUEST",
403: "FORBIDDEN",
404: "NOT_FOUND",
413: "REQUEST_ENTITY_TOO_LARGE",
500: "INTERNAL_SERVER_ERROR",
501: "NOT_IMPLEMENTED",
503: "SERVICE_UNAVAILABLE",
}
var Status_value = map[string]int32{
"UNKNOWN": 0,
"SUCCESS": 200,
"BAD_REQUEST": 400,
"FORBIDDEN": 403,
"NOT_FOUND": 404,
"REQUEST_ENTITY_TOO_LARGE": 413,
"INTERNAL_SERVER_ERROR": 500,
"NOT_IMPLEMENTED": 501,
"SERVICE_UNAVAILABLE": 503,
}
func (x Status) String() string {
return proto.EnumName(Status_name, int32(x))
}
func (Status) EnumDescriptor() ([]byte, []int) { return fileDescriptor1, []int{0} }
type HeaderType int32
const (
HeaderType_MESSAGE HeaderType = 0
HeaderType_CONFIG HeaderType = 1
HeaderType_CONFIG_UPDATE HeaderType = 2
HeaderType_ENDORSER_TRANSACTION HeaderType = 3
HeaderType_ORDERER_TRANSACTION HeaderType = 4
HeaderType_DELIVER_SEEK_INFO HeaderType = 5
HeaderType_CHAINCODE_PACKAGE HeaderType = 6
HeaderType_PEER_ADMIN_OPERATION HeaderType = 8
)
var HeaderType_name = map[int32]string{
0: "MESSAGE",
1: "CONFIG",
2: "CONFIG_UPDATE",
3: "ENDORSER_TRANSACTION",
4: "ORDERER_TRANSACTION",
5: "DELIVER_SEEK_INFO",
6: "CHAINCODE_PACKAGE",
8: "PEER_ADMIN_OPERATION",
}
var HeaderType_value = map[string]int32{
"MESSAGE": 0,
"CONFIG": 1,
"CONFIG_UPDATE": 2,
"ENDORSER_TRANSACTION": 3,
"ORDERER_TRANSACTION": 4,
"DELIVER_SEEK_INFO": 5,
"CHAINCODE_PACKAGE": 6,
"PEER_ADMIN_OPERATION": 8,
}
func (x HeaderType) String() string {
return proto.EnumName(HeaderType_name, int32(x))
}
func (HeaderType) EnumDescriptor() ([]byte, []int) { return fileDescriptor1, []int{1} }
// This enum enlists indexes of the block metadata array
type BlockMetadataIndex int32
const (
BlockMetadataIndex_SIGNATURES BlockMetadataIndex = 0
BlockMetadataIndex_LAST_CONFIG BlockMetadataIndex = 1
BlockMetadataIndex_TRANSACTIONS_FILTER BlockMetadataIndex = 2
BlockMetadataIndex_ORDERER BlockMetadataIndex = 3
)
var BlockMetadataIndex_name = map[int32]string{
0: "SIGNATURES",
1: "LAST_CONFIG",
2: "TRANSACTIONS_FILTER",
3: "ORDERER",
}
var BlockMetadataIndex_value = map[string]int32{
"SIGNATURES": 0,
"LAST_CONFIG": 1,
"TRANSACTIONS_FILTER": 2,
"ORDERER": 3,
}
func (x BlockMetadataIndex) String() string {
return proto.EnumName(BlockMetadataIndex_name, int32(x))
}
func (BlockMetadataIndex) EnumDescriptor() ([]byte, []int) { return fileDescriptor1, []int{2} }
// LastConfig is the encoded value for the Metadata message which is encoded in the LAST_CONFIGURATION block metadata index
type LastConfig struct {
Index uint64 `protobuf:"varint,1,opt,name=index" json:"index,omitempty"`
}
func (m *LastConfig) Reset() { *m = LastConfig{} }
func (m *LastConfig) String() string { return proto.CompactTextString(m) }
func (*LastConfig) ProtoMessage() {}
func (*LastConfig) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{0} }
func (m *LastConfig) GetIndex() uint64 {
if m != nil {
return m.Index
}
return 0
}
// Metadata is a common structure to be used to encode block metadata
type Metadata struct {
Value []byte `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
Signatures []*MetadataSignature `protobuf:"bytes,2,rep,name=signatures" json:"signatures,omitempty"`
}
func (m *Metadata) Reset() { *m = Metadata{} }
func (m *Metadata) String() string { return proto.CompactTextString(m) }
func (*Metadata) ProtoMessage() {}
func (*Metadata) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{1} }
func (m *Metadata) GetValue() []byte {
if m != nil {
return m.Value
}
return nil
}
func (m *Metadata) GetSignatures() []*MetadataSignature {
if m != nil {
return m.Signatures
}
return nil
}
type MetadataSignature struct {
SignatureHeader []byte `protobuf:"bytes,1,opt,name=signature_header,json=signatureHeader,proto3" json:"signature_header,omitempty"`
Signature []byte `protobuf:"bytes,2,opt,name=signature,proto3" json:"signature,omitempty"`
}
func (m *MetadataSignature) Reset() { *m = MetadataSignature{} }
func (m *MetadataSignature) String() string { return proto.CompactTextString(m) }
func (*MetadataSignature) ProtoMessage() {}
func (*MetadataSignature) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{2} }
func (m *MetadataSignature) GetSignatureHeader() []byte {
if m != nil {
return m.SignatureHeader
}
return nil
}
func (m *MetadataSignature) GetSignature() []byte {
if m != nil {
return m.Signature
}
return nil
}
type Header struct {
ChannelHeader []byte `protobuf:"bytes,1,opt,name=channel_header,json=channelHeader,proto3" json:"channel_header,omitempty"`
SignatureHeader []byte `protobuf:"bytes,2,opt,name=signature_header,json=signatureHeader,proto3" json:"signature_header,omitempty"`
}
func (m *Header) Reset() { *m = Header{} }
func (m *Header) String() string { return proto.CompactTextString(m) }
func (*Header) ProtoMessage() {}
func (*Header) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{3} }
func (m *Header) GetChannelHeader() []byte {
if m != nil {
return m.ChannelHeader
}
return nil
}
func (m *Header) GetSignatureHeader() []byte {
if m != nil {
return m.SignatureHeader
}
return nil
}
// Header is a generic replay prevention and identity message to include in a signed payload
type ChannelHeader struct {
Type int32 `protobuf:"varint,1,opt,name=type" json:"type,omitempty"`
// Version indicates message protocol version
Version int32 `protobuf:"varint,2,opt,name=version" json:"version,omitempty"`
// Timestamp is the local time when the message was created
// by the sender
Timestamp *google_protobuf.Timestamp `protobuf:"bytes,3,opt,name=timestamp" json:"timestamp,omitempty"`
// Identifier of the channel this message is bound for
ChannelId string `protobuf:"bytes,4,opt,name=channel_id,json=channelId" json:"channel_id,omitempty"`
// An unique identifier that is used end-to-end.
// - set by higher layers such as end user or SDK
// - passed to the endorser (which will check for uniqueness)
// - as the header is passed along unchanged, it will be
// be retrieved by the committer (uniqueness check here as well)
// - to be stored in the ledger
TxId string `protobuf:"bytes,5,opt,name=tx_id,json=txId" json:"tx_id,omitempty"`
// The epoch in which this header was generated, where epoch is defined based on block height
// Epoch in which the response has been generated. This field identifies a
// logical window of time. A proposal response is accepted by a peer only if
// two conditions hold:
// 1. the epoch specified in the message is the current epoch
// 2. this message has been only seen once during this epoch (i.e. it hasn't
// been replayed)
Epoch uint64 `protobuf:"varint,6,opt,name=epoch" json:"epoch,omitempty"`
// Extension that may be attached based on the header type
Extension []byte `protobuf:"bytes,7,opt,name=extension,proto3" json:"extension,omitempty"`
// If mutual TLS is employed, this represents
// the hash of the client's TLS certificate
TlsCertHash []byte `protobuf:"bytes,8,opt,name=tls_cert_hash,json=tlsCertHash,proto3" json:"tls_cert_hash,omitempty"`
}
func (m *ChannelHeader) Reset() { *m = ChannelHeader{} }
func (m *ChannelHeader) String() string { return proto.CompactTextString(m) }
func (*ChannelHeader) ProtoMessage() {}
func (*ChannelHeader) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{4} }
func (m *ChannelHeader) GetType() int32 {
if m != nil {
return m.Type
}
return 0
}
func (m *ChannelHeader) GetVersion() int32 {
if m != nil {
return m.Version
}
return 0
}
func (m *ChannelHeader) GetTimestamp() *google_protobuf.Timestamp {
if m != nil {
return m.Timestamp
}
return nil
}
func (m *ChannelHeader) GetChannelId() string {
if m != nil {
return m.ChannelId
}
return ""
}
func (m *ChannelHeader) GetTxId() string {
if m != nil {
return m.TxId
}
return ""
}
func (m *ChannelHeader) GetEpoch() uint64 {
if m != nil {
return m.Epoch
}
return 0
}
func (m *ChannelHeader) GetExtension() []byte {
if m != nil {
return m.Extension
}
return nil
}
func (m *ChannelHeader) GetTlsCertHash() []byte {
if m != nil {
return m.TlsCertHash
}
return nil
}
type SignatureHeader struct {
// Creator of the message, a marshaled msp.SerializedIdentity
Creator []byte `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"`
// Arbitrary number that may only be used once. Can be used to detect replay attacks.
Nonce []byte `protobuf:"bytes,2,opt,name=nonce,proto3" json:"nonce,omitempty"`
}
func (m *SignatureHeader) Reset() { *m = SignatureHeader{} }
func (m *SignatureHeader) String() string { return proto.CompactTextString(m) }
func (*SignatureHeader) ProtoMessage() {}
func (*SignatureHeader) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{5} }
func (m *SignatureHeader) GetCreator() []byte {
if m != nil {
return m.Creator
}
return nil
}
func (m *SignatureHeader) GetNonce() []byte {
if m != nil {
return m.Nonce
}
return nil
}
// Payload is the message contents (and header to allow for signing)
type Payload struct {
// Header is included to provide identity and prevent replay
Header *Header `protobuf:"bytes,1,opt,name=header" json:"header,omitempty"`
// Data, the encoding of which is defined by the type in the header
Data []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
}
func (m *Payload) Reset() { *m = Payload{} }
func (m *Payload) String() string { return proto.CompactTextString(m) }
func (*Payload) ProtoMessage() {}
func (*Payload) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{6} }
func (m *Payload) GetHeader() *Header {
if m != nil {
return m.Header
}
return nil
}
func (m *Payload) GetData() []byte {
if m != nil {
return m.Data
}
return nil
}
// Envelope wraps a Payload with a signature so that the message may be authenticated
type Envelope struct {
// A marshaled Payload
Payload []byte `protobuf:"bytes,1,opt,name=payload,proto3" json:"payload,omitempty"`
// A signature by the creator specified in the Payload header
Signature []byte `protobuf:"bytes,2,opt,name=signature,proto3" json:"signature,omitempty"`
}
func (m *Envelope) Reset() { *m = Envelope{} }
func (m *Envelope) String() string { return proto.CompactTextString(m) }
func (*Envelope) ProtoMessage() {}
func (*Envelope) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{7} }
func (m *Envelope) GetPayload() []byte {
if m != nil {
return m.Payload
}
return nil
}
func (m *Envelope) GetSignature() []byte {
if m != nil {
return m.Signature
}
return nil
}
// This is finalized block structure to be shared among the orderer and peer
// Note that the BlockHeader chains to the previous BlockHeader, and the BlockData hash is embedded
// in the BlockHeader. This makes it natural and obvious that the Data is included in the hash, but
// the Metadata is not.
type Block struct {
Header *BlockHeader `protobuf:"bytes,1,opt,name=header" json:"header,omitempty"`
Data *BlockData `protobuf:"bytes,2,opt,name=data" json:"data,omitempty"`
Metadata *BlockMetadata `protobuf:"bytes,3,opt,name=metadata" json:"metadata,omitempty"`
}
func (m *Block) Reset() { *m = Block{} }
func (m *Block) String() string { return proto.CompactTextString(m) }
func (*Block) ProtoMessage() {}
func (*Block) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{8} }
func (m *Block) GetHeader() *BlockHeader {
if m != nil {
return m.Header
}
return nil
}
func (m *Block) GetData() *BlockData {
if m != nil {
return m.Data
}
return nil
}
func (m *Block) GetMetadata() *BlockMetadata {
if m != nil {
return m.Metadata
}
return nil
}
// BlockHeader is the element of the block which forms the block chain
// The block header is hashed using the configured chain hashing algorithm
// over the ASN.1 encoding of the BlockHeader
type BlockHeader struct {
Number uint64 `protobuf:"varint,1,opt,name=number" json:"number,omitempty"`
PreviousHash []byte `protobuf:"bytes,2,opt,name=previous_hash,json=previousHash,proto3" json:"previous_hash,omitempty"`
DataHash []byte `protobuf:"bytes,3,opt,name=data_hash,json=dataHash,proto3" json:"data_hash,omitempty"`
}
func (m *BlockHeader) Reset() { *m = BlockHeader{} }
func (m *BlockHeader) String() string { return proto.CompactTextString(m) }
func (*BlockHeader) ProtoMessage() {}
func (*BlockHeader) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{9} }
func (m *BlockHeader) GetNumber() uint64 {
if m != nil {
return m.Number
}
return 0
}
func (m *BlockHeader) GetPreviousHash() []byte {
if m != nil {
return m.PreviousHash
}
return nil
}
func (m *BlockHeader) GetDataHash() []byte {
if m != nil {
return m.DataHash
}
return nil
}
type BlockData struct {
Data [][]byte `protobuf:"bytes,1,rep,name=data,proto3" json:"data,omitempty"`
}
func (m *BlockData) Reset() { *m = BlockData{} }
func (m *BlockData) String() string { return proto.CompactTextString(m) }
func (*BlockData) ProtoMessage() {}
func (*BlockData) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{10} }
func (m *BlockData) GetData() [][]byte {
if m != nil {
return m.Data
}
return nil
}
type BlockMetadata struct {
Metadata [][]byte `protobuf:"bytes,1,rep,name=metadata,proto3" json:"metadata,omitempty"`
}
func (m *BlockMetadata) Reset() { *m = BlockMetadata{} }
func (m *BlockMetadata) String() string { return proto.CompactTextString(m) }
func (*BlockMetadata) ProtoMessage() {}
func (*BlockMetadata) Descriptor() ([]byte, []int) { return fileDescriptor1, []int{11} }
func (m *BlockMetadata) GetMetadata() [][]byte {
if m != nil {
return m.Metadata
}
return nil
}
func init() {
proto.RegisterType((*LastConfig)(nil), "common.LastConfig")
proto.RegisterType((*Metadata)(nil), "common.Metadata")
proto.RegisterType((*MetadataSignature)(nil), "common.MetadataSignature")
proto.RegisterType((*Header)(nil), "common.Header")
proto.RegisterType((*ChannelHeader)(nil), "common.ChannelHeader")
proto.RegisterType((*SignatureHeader)(nil), "common.SignatureHeader")
proto.RegisterType((*Payload)(nil), "common.Payload")
proto.RegisterType((*Envelope)(nil), "common.Envelope")
proto.RegisterType((*Block)(nil), "common.Block")
proto.RegisterType((*BlockHeader)(nil), "common.BlockHeader")
proto.RegisterType((*BlockData)(nil), "common.BlockData")
proto.RegisterType((*BlockMetadata)(nil), "common.BlockMetadata")
proto.RegisterEnum("common.Status", Status_name, Status_value)
proto.RegisterEnum("common.HeaderType", HeaderType_name, HeaderType_value)
proto.RegisterEnum("common.BlockMetadataIndex", BlockMetadataIndex_name, BlockMetadataIndex_value)
}
func init() { proto.RegisterFile("common/common.proto", fileDescriptor1) }
var fileDescriptor1 = []byte{
// 952 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x55, 0xcf, 0x6f, 0xe3, 0x44,
0x18, 0x5d, 0xc7, 0xf9, 0xf9, 0xb9, 0x69, 0xdd, 0x49, 0xcb, 0x9a, 0xc2, 0x6a, 0x2b, 0xc3, 0xa2,
0xd2, 0x4a, 0xa9, 0x28, 0x17, 0x38, 0x3a, 0xf6, 0xb4, 0xb5, 0x9a, 0xda, 0x61, 0xec, 0x2c, 0x62,
0x17, 0xc9, 0x72, 0x92, 0x69, 0x12, 0x91, 0xd8, 0x91, 0x3d, 0xa9, 0xda, 0x33, 0x77, 0x84, 0x04,
0x57, 0xfe, 0x0a, 0xfe, 0x01, 0x8e, 0xfc, 0x41, 0x20, 0xae, 0x68, 0x3c, 0xb6, 0x37, 0x29, 0x2b,
0x71, 0xca, 0xbc, 0x37, 0x2f, 0xdf, 0xf7, 0xe6, 0x7b, 0x63, 0x1b, 0x3a, 0xe3, 0x78, 0xb9, 0x8c,
0xa3, 0x73, 0xf1, 0xd3, 0x5d, 0x25, 0x31, 0x8b, 0x51, 0x5d, 0xa0, 0xa3, 0x97, 0xd3, 0x38, 0x9e,
0x2e, 0xe8, 0x79, 0xc6, 0x8e, 0xd6, 0x77, 0xe7, 0x6c, 0xbe, 0xa4, 0x29, 0x0b, 0x97, 0x2b, 0x21,
0xd4, 0x75, 0x80, 0x7e, 0x98, 0x32, 0x33, 0x8e, 0xee, 0xe6, 0x53, 0x74, 0x00, 0xb5, 0x79, 0x34,
0xa1, 0x0f, 0x9a, 0x74, 0x2c, 0x9d, 0x54, 0x89, 0x00, 0xfa, 0x5b, 0x68, 0xde, 0x52, 0x16, 0x4e,
0x42, 0x16, 0x72, 0xc5, 0x7d, 0xb8, 0x58, 0xd3, 0x4c, 0xb1, 0x43, 0x04, 0x40, 0x5f, 0x03, 0xa4,
0xf3, 0x69, 0x14, 0xb2, 0x75, 0x42, 0x53, 0xad, 0x72, 0x2c, 0x9f, 0x28, 0x17, 0x1f, 0x76, 0x73,
0x47, 0xc5, 0x7f, 0xbd, 0x42, 0x41, 0x36, 0xc4, 0xfa, 0xf7, 0xb0, 0xff, 0x1f, 0x01, 0xfa, 0x1c,
0xd4, 0x52, 0x12, 0xcc, 0x68, 0x38, 0xa1, 0x49, 0xde, 0x70, 0xaf, 0xe4, 0xaf, 0x33, 0x1a, 0x7d,
0x0c, 0xad, 0x92, 0xd2, 0x2a, 0x99, 0xe6, 0x1d, 0xa1, 0xbf, 0x81, 0x7a, 0xae, 0x7b, 0x05, 0xbb,
0xe3, 0x59, 0x18, 0x45, 0x74, 0xb1, 0x5d, 0xb0, 0x9d, 0xb3, 0xb9, 0xec, 0x7d, 0x9d, 0x2b, 0xef,
0xed, 0xac, 0xff, 0x58, 0x81, 0xb6, 0xb9, 0xf5, 0x67, 0x04, 0x55, 0xf6, 0xb8, 0x12, 0xb3, 0xa9,
0x91, 0x6c, 0x8d, 0x34, 0x68, 0xdc, 0xd3, 0x24, 0x9d, 0xc7, 0x51, 0x56, 0xa7, 0x46, 0x0a, 0x88,
0xbe, 0x82, 0x56, 0x99, 0x86, 0x26, 0x1f, 0x4b, 0x27, 0xca, 0xc5, 0x51, 0x57, 0xe4, 0xd5, 0x2d,
0xf2, 0xea, 0xfa, 0x85, 0x82, 0xbc, 0x13, 0xa3, 0x17, 0x00, 0xc5, 0x59, 0xe6, 0x13, 0xad, 0x7a,
0x2c, 0x9d, 0xb4, 0x48, 0x2b, 0x67, 0xec, 0x09, 0xea, 0x40, 0x8d, 0x3d, 0xf0, 0x9d, 0x5a, 0xb6,
0x53, 0x65, 0x0f, 0xf6, 0x84, 0x07, 0x47, 0x57, 0xf1, 0x78, 0xa6, 0xd5, 0x45, 0xb4, 0x19, 0xe0,
0xd3, 0xa3, 0x0f, 0x8c, 0x46, 0x99, 0xbf, 0x86, 0x98, 0x5e, 0x49, 0x20, 0x1d, 0xda, 0x6c, 0x91,
0x06, 0x63, 0x9a, 0xb0, 0x60, 0x16, 0xa6, 0x33, 0xad, 0x99, 0x29, 0x14, 0xb6, 0x48, 0x4d, 0x9a,
0xb0, 0xeb, 0x30, 0x9d, 0xe9, 0x06, 0xec, 0x79, 0x4f, 0x22, 0xd1, 0xa0, 0x31, 0x4e, 0x68, 0xc8,
0xe2, 0x62, 0xc6, 0x05, 0xe4, 0x26, 0xa2, 0x38, 0x1a, 0x17, 0x41, 0x09, 0xa0, 0x63, 0x68, 0x0c,
0xc2, 0xc7, 0x45, 0x1c, 0x4e, 0xd0, 0x67, 0x50, 0xdf, 0x48, 0x47, 0xb9, 0xd8, 0x2d, 0x2e, 0x91,
0x28, 0x4d, 0xf2, 0x5d, 0x3e, 0x69, 0x7e, 0x63, 0xf2, 0x3a, 0xd9, 0x5a, 0xef, 0x41, 0x13, 0x47,
0xf7, 0x74, 0x11, 0x8b, 0xa9, 0xaf, 0x44, 0xc9, 0xc2, 0x42, 0x0e, 0xff, 0xe7, 0xbe, 0xfc, 0x24,
0x41, 0xad, 0xb7, 0x88, 0xc7, 0x3f, 0xa0, 0xb3, 0x27, 0x4e, 0x3a, 0x85, 0x93, 0x6c, 0xfb, 0x89,
0x9d, 0x57, 0x1b, 0x76, 0x94, 0x8b, 0xfd, 0x2d, 0xa9, 0x15, 0xb2, 0x50, 0x38, 0x44, 0x5f, 0x40,
0x73, 0x99, 0xdf, 0xf5, 0x3c, 0xf0, 0xc3, 0x2d, 0x69, 0xf1, 0x20, 0x90, 0x52, 0xa6, 0x4f, 0x41,
0xd9, 0x68, 0x88, 0x3e, 0x80, 0x7a, 0xb4, 0x5e, 0x8e, 0x72, 0x57, 0x55, 0x92, 0x23, 0xf4, 0x09,
0xb4, 0x57, 0x09, 0xbd, 0x9f, 0xc7, 0xeb, 0x54, 0x24, 0x25, 0x4e, 0xb6, 0x53, 0x90, 0x3c, 0x2a,
0xf4, 0x11, 0xb4, 0x78, 0x4d, 0x21, 0x90, 0x33, 0x41, 0x93, 0x13, 0x59, 0x8e, 0x2f, 0xa1, 0x55,
0xda, 0x2d, 0xc7, 0x2b, 0x1d, 0xcb, 0xe5, 0x78, 0xcf, 0xa0, 0xbd, 0x65, 0x12, 0x1d, 0x6d, 0x9c,
0x46, 0x08, 0x4b, 0x7c, 0xfa, 0x87, 0x04, 0x75, 0x8f, 0x85, 0x6c, 0x9d, 0x22, 0x05, 0x1a, 0x43,
0xe7, 0xc6, 0x71, 0xbf, 0x75, 0xd4, 0x67, 0x68, 0x07, 0x1a, 0xde, 0xd0, 0x34, 0xb1, 0xe7, 0xa9,
0x7f, 0x4a, 0x48, 0x05, 0xa5, 0x67, 0x58, 0x01, 0xc1, 0xdf, 0x0c, 0xb1, 0xe7, 0xab, 0x3f, 0xcb,
0x68, 0x17, 0x5a, 0x97, 0x2e, 0xe9, 0xd9, 0x96, 0x85, 0x1d, 0xf5, 0x97, 0x0c, 0x3b, 0xae, 0x1f,
0x5c, 0xba, 0x43, 0xc7, 0x52, 0x7f, 0x95, 0xd1, 0x0b, 0xd0, 0x72, 0x75, 0x80, 0x1d, 0xdf, 0xf6,
0xbf, 0x0b, 0x7c, 0xd7, 0x0d, 0xfa, 0x06, 0xb9, 0xc2, 0xea, 0x6f, 0x32, 0x3a, 0x82, 0x43, 0xdb,
0xf1, 0x31, 0x71, 0x8c, 0x7e, 0xe0, 0x61, 0xf2, 0x1a, 0x93, 0x00, 0x13, 0xe2, 0x12, 0xf5, 0x2f,
0x19, 0x1d, 0xc0, 0x1e, 0x2f, 0x65, 0xdf, 0x0e, 0xfa, 0xf8, 0x16, 0x3b, 0x3e, 0xb6, 0xd4, 0xbf,
0x65, 0xa4, 0x41, 0x87, 0x0b, 0x6d, 0x13, 0x07, 0x43, 0xc7, 0x78, 0x6d, 0xd8, 0x7d, 0xa3, 0xd7,
0xc7, 0xea, 0x3f, 0xf2, 0xe9, 0xef, 0x12, 0x80, 0x98, 0xba, 0xcf, 0x9f, 0x63, 0x05, 0x1a, 0xb7,
0xd8, 0xf3, 0x8c, 0x2b, 0xac, 0x3e, 0x43, 0x00, 0x75, 0xd3, 0x75, 0x2e, 0xed, 0x2b, 0x55, 0x42,
0xfb, 0xd0, 0x16, 0xeb, 0x60, 0x38, 0xb0, 0x0c, 0x1f, 0xab, 0x15, 0xa4, 0xc1, 0x01, 0x76, 0x2c,
0x97, 0x78, 0x98, 0x04, 0x3e, 0x31, 0x1c, 0xcf, 0x30, 0x7d, 0xdb, 0x75, 0x54, 0x19, 0x3d, 0x87,
0x8e, 0x4b, 0x2c, 0x4c, 0x9e, 0x6c, 0x54, 0xd1, 0x21, 0xec, 0x5b, 0xb8, 0x6f, 0x73, 0xc7, 0x1e,
0xc6, 0x37, 0x81, 0xed, 0x5c, 0xba, 0x6a, 0x8d, 0xd3, 0xe6, 0xb5, 0x61, 0x3b, 0xa6, 0x6b, 0xe1,
0x60, 0x60, 0x98, 0x37, 0xbc, 0x7f, 0x9d, 0x37, 0x18, 0x60, 0x4c, 0x02, 0xc3, 0xba, 0xb5, 0x9d,
0xc0, 0x1d, 0x60, 0x62, 0x64, 0x75, 0x9a, 0xa7, 0x6f, 0x01, 0x6d, 0xa5, 0x64, 0xf3, 0x37, 0x38,
0xda, 0x05, 0xf0, 0xec, 0x2b, 0xc7, 0xf0, 0x87, 0x04, 0x7b, 0xea, 0x33, 0xb4, 0x07, 0x4a, 0xdf,
0xf0, 0xfc, 0xa0, 0x3c, 0xc4, 0x73, 0xe8, 0x6c, 0xf8, 0xf1, 0x82, 0x4b, 0xbb, 0xef, 0x63, 0xa2,
0x56, 0xf8, 0xb1, 0x73, 0xc3, 0xaa, 0xdc, 0xf3, 0xe0, 0xd3, 0x38, 0x99, 0x76, 0x67, 0x8f, 0x2b,
0x9a, 0x2c, 0xe8, 0x64, 0x4a, 0x93, 0xee, 0x5d, 0x38, 0x4a, 0xe6, 0x63, 0xf1, 0xbe, 0x4a, 0xf3,
0xcb, 0xfc, 0xe6, 0x6c, 0x3a, 0x67, 0xb3, 0xf5, 0x88, 0xc3, 0xf3, 0x0d, 0xf1, 0xb9, 0x10, 0x8b,
0x8f, 0x51, 0x9a, 0x7f, 0xb0, 0x46, 0xf5, 0x0c, 0x7e, 0xf9, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff,
0x7c, 0xfc, 0x43, 0x77, 0xc8, 0x06, 0x00, 0x00,
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。