OSDN Git Service

add cancel vote (#172)
[bytom/vapor.git] / protocol / bc / bc.pb.go
index 984df23..fbffe83 100644 (file)
@@ -12,23 +12,21 @@ It has these top-level messages:
        Program
        AssetID
        AssetAmount
-       AssetDefinition
        ValueSource
        ValueDestination
-       Proof
-       BytomBlockHeader
        BlockHeader
        TxHeader
        TxVerifyResult
        TransactionStatus
        Mux
        Coinbase
-       Output
+       IntraChainOutput
+       CrossChainOutput
+       VoteOutput
+       VetoInput
        Retirement
-       Issuance
        Spend
-       Claim
-       Dpos
+       CrossChainInput
 */
 package bc
 
@@ -180,30 +178,6 @@ func (m *AssetAmount) GetAmount() uint64 {
        return 0
 }
 
-type AssetDefinition struct {
-       IssuanceProgram *Program `protobuf:"bytes,1,opt,name=issuance_program,json=issuanceProgram" json:"issuance_program,omitempty"`
-       Data            *Hash    `protobuf:"bytes,2,opt,name=data" json:"data,omitempty"`
-}
-
-func (m *AssetDefinition) Reset()                    { *m = AssetDefinition{} }
-func (m *AssetDefinition) String() string            { return proto.CompactTextString(m) }
-func (*AssetDefinition) ProtoMessage()               {}
-func (*AssetDefinition) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
-
-func (m *AssetDefinition) GetIssuanceProgram() *Program {
-       if m != nil {
-               return m.IssuanceProgram
-       }
-       return nil
-}
-
-func (m *AssetDefinition) GetData() *Hash {
-       if m != nil {
-               return m.Data
-       }
-       return nil
-}
-
 type ValueSource struct {
        Ref      *Hash        `protobuf:"bytes,1,opt,name=ref" json:"ref,omitempty"`
        Value    *AssetAmount `protobuf:"bytes,2,opt,name=value" json:"value,omitempty"`
@@ -213,7 +187,7 @@ type ValueSource struct {
 func (m *ValueSource) Reset()                    { *m = ValueSource{} }
 func (m *ValueSource) String() string            { return proto.CompactTextString(m) }
 func (*ValueSource) ProtoMessage()               {}
-func (*ValueSource) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
+func (*ValueSource) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
 
 func (m *ValueSource) GetRef() *Hash {
        if m != nil {
@@ -245,7 +219,7 @@ type ValueDestination struct {
 func (m *ValueDestination) Reset()                    { *m = ValueDestination{} }
 func (m *ValueDestination) String() string            { return proto.CompactTextString(m) }
 func (*ValueDestination) ProtoMessage()               {}
-func (*ValueDestination) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
+func (*ValueDestination) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
 
 func (m *ValueDestination) GetRef() *Hash {
        if m != nil {
@@ -268,118 +242,6 @@ func (m *ValueDestination) GetPosition() uint64 {
        return 0
 }
 
-type Proof struct {
-       Sign           []byte `protobuf:"bytes,1,opt,name=sign,proto3" json:"sign,omitempty"`
-       ControlProgram []byte `protobuf:"bytes,2,opt,name=controlProgram,proto3" json:"controlProgram,omitempty"`
-       Address        []byte `protobuf:"bytes,3,opt,name=address,proto3" json:"address,omitempty"`
-}
-
-func (m *Proof) Reset()                    { *m = Proof{} }
-func (m *Proof) String() string            { return proto.CompactTextString(m) }
-func (*Proof) ProtoMessage()               {}
-func (*Proof) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
-
-func (m *Proof) GetSign() []byte {
-       if m != nil {
-               return m.Sign
-       }
-       return nil
-}
-
-func (m *Proof) GetControlProgram() []byte {
-       if m != nil {
-               return m.ControlProgram
-       }
-       return nil
-}
-
-func (m *Proof) GetAddress() []byte {
-       if m != nil {
-               return m.Address
-       }
-       return nil
-}
-
-type BytomBlockHeader struct {
-       Version               uint64             `protobuf:"varint,1,opt,name=version" json:"version,omitempty"`
-       Height                uint64             `protobuf:"varint,2,opt,name=height" json:"height,omitempty"`
-       PreviousBlockId       *Hash              `protobuf:"bytes,3,opt,name=previous_block_id,json=previousBlockId" json:"previous_block_id,omitempty"`
-       Timestamp             uint64             `protobuf:"varint,4,opt,name=timestamp" json:"timestamp,omitempty"`
-       TransactionsRoot      *Hash              `protobuf:"bytes,5,opt,name=transactions_root,json=transactionsRoot" json:"transactions_root,omitempty"`
-       TransactionStatusHash *Hash              `protobuf:"bytes,6,opt,name=transaction_status_hash,json=transactionStatusHash" json:"transaction_status_hash,omitempty"`
-       Nonce                 uint64             `protobuf:"varint,7,opt,name=nonce" json:"nonce,omitempty"`
-       Bits                  uint64             `protobuf:"varint,8,opt,name=bits" json:"bits,omitempty"`
-       TransactionStatus     *TransactionStatus `protobuf:"bytes,9,opt,name=transaction_status,json=transactionStatus" json:"transaction_status,omitempty"`
-}
-
-func (m *BytomBlockHeader) Reset()                    { *m = BytomBlockHeader{} }
-func (m *BytomBlockHeader) String() string            { return proto.CompactTextString(m) }
-func (*BytomBlockHeader) ProtoMessage()               {}
-func (*BytomBlockHeader) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} }
-
-func (m *BytomBlockHeader) GetVersion() uint64 {
-       if m != nil {
-               return m.Version
-       }
-       return 0
-}
-
-func (m *BytomBlockHeader) GetHeight() uint64 {
-       if m != nil {
-               return m.Height
-       }
-       return 0
-}
-
-func (m *BytomBlockHeader) GetPreviousBlockId() *Hash {
-       if m != nil {
-               return m.PreviousBlockId
-       }
-       return nil
-}
-
-func (m *BytomBlockHeader) GetTimestamp() uint64 {
-       if m != nil {
-               return m.Timestamp
-       }
-       return 0
-}
-
-func (m *BytomBlockHeader) GetTransactionsRoot() *Hash {
-       if m != nil {
-               return m.TransactionsRoot
-       }
-       return nil
-}
-
-func (m *BytomBlockHeader) GetTransactionStatusHash() *Hash {
-       if m != nil {
-               return m.TransactionStatusHash
-       }
-       return nil
-}
-
-func (m *BytomBlockHeader) GetNonce() uint64 {
-       if m != nil {
-               return m.Nonce
-       }
-       return 0
-}
-
-func (m *BytomBlockHeader) GetBits() uint64 {
-       if m != nil {
-               return m.Bits
-       }
-       return 0
-}
-
-func (m *BytomBlockHeader) GetTransactionStatus() *TransactionStatus {
-       if m != nil {
-               return m.TransactionStatus
-       }
-       return nil
-}
-
 type BlockHeader struct {
        Version               uint64             `protobuf:"varint,1,opt,name=version" json:"version,omitempty"`
        Height                uint64             `protobuf:"varint,2,opt,name=height" json:"height,omitempty"`
@@ -387,15 +249,14 @@ type BlockHeader struct {
        Timestamp             uint64             `protobuf:"varint,4,opt,name=timestamp" json:"timestamp,omitempty"`
        TransactionsRoot      *Hash              `protobuf:"bytes,5,opt,name=transactions_root,json=transactionsRoot" json:"transactions_root,omitempty"`
        TransactionStatusHash *Hash              `protobuf:"bytes,6,opt,name=transaction_status_hash,json=transactionStatusHash" json:"transaction_status_hash,omitempty"`
-       Nonce                 uint64             `protobuf:"varint,7,opt,name=nonce" json:"nonce,omitempty"`
-       Bits                  uint64             `protobuf:"varint,8,opt,name=bits" json:"bits,omitempty"`
-       TransactionStatus     *TransactionStatus `protobuf:"bytes,9,opt,name=transaction_status,json=transactionStatus" json:"transaction_status,omitempty"`
+       TransactionStatus     *TransactionStatus `protobuf:"bytes,7,opt,name=transaction_status,json=transactionStatus" json:"transaction_status,omitempty"`
+       WitnessArguments      [][]byte           `protobuf:"bytes,8,rep,name=witness_arguments,json=witnessArguments,proto3" json:"witness_arguments,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 fileDescriptor0, []int{9} }
+func (*BlockHeader) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
 
 func (m *BlockHeader) GetVersion() uint64 {
        if m != nil {
@@ -439,23 +300,16 @@ func (m *BlockHeader) GetTransactionStatusHash() *Hash {
        return nil
 }
 
-func (m *BlockHeader) GetNonce() uint64 {
-       if m != nil {
-               return m.Nonce
-       }
-       return 0
-}
-
-func (m *BlockHeader) GetBits() uint64 {
+func (m *BlockHeader) GetTransactionStatus() *TransactionStatus {
        if m != nil {
-               return m.Bits
+               return m.TransactionStatus
        }
-       return 0
+       return nil
 }
 
-func (m *BlockHeader) GetTransactionStatus() *TransactionStatus {
+func (m *BlockHeader) GetWitnessArguments() [][]byte {
        if m != nil {
-               return m.TransactionStatus
+               return m.WitnessArguments
        }
        return nil
 }
@@ -463,16 +317,14 @@ func (m *BlockHeader) GetTransactionStatus() *TransactionStatus {
 type TxHeader struct {
        Version        uint64  `protobuf:"varint,1,opt,name=version" json:"version,omitempty"`
        SerializedSize uint64  `protobuf:"varint,2,opt,name=serialized_size,json=serializedSize" json:"serialized_size,omitempty"`
-       Data           *Hash   `protobuf:"bytes,3,opt,name=data" json:"data,omitempty"`
-       TimeRange      uint64  `protobuf:"varint,4,opt,name=time_range,json=timeRange" json:"time_range,omitempty"`
-       ResultIds      []*Hash `protobuf:"bytes,5,rep,name=result_ids,json=resultIds" json:"result_ids,omitempty"`
-       Side           bool    `protobuf:"varint,6,opt,name=side" json:"side,omitempty"`
+       TimeRange      uint64  `protobuf:"varint,3,opt,name=time_range,json=timeRange" json:"time_range,omitempty"`
+       ResultIds      []*Hash `protobuf:"bytes,4,rep,name=result_ids,json=resultIds" json:"result_ids,omitempty"`
 }
 
 func (m *TxHeader) Reset()                    { *m = TxHeader{} }
 func (m *TxHeader) String() string            { return proto.CompactTextString(m) }
 func (*TxHeader) ProtoMessage()               {}
-func (*TxHeader) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} }
+func (*TxHeader) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
 
 func (m *TxHeader) GetVersion() uint64 {
        if m != nil {
@@ -488,13 +340,6 @@ func (m *TxHeader) GetSerializedSize() uint64 {
        return 0
 }
 
-func (m *TxHeader) GetData() *Hash {
-       if m != nil {
-               return m.Data
-       }
-       return nil
-}
-
 func (m *TxHeader) GetTimeRange() uint64 {
        if m != nil {
                return m.TimeRange
@@ -509,13 +354,6 @@ func (m *TxHeader) GetResultIds() []*Hash {
        return nil
 }
 
-func (m *TxHeader) GetSide() bool {
-       if m != nil {
-               return m.Side
-       }
-       return false
-}
-
 type TxVerifyResult struct {
        StatusFail bool `protobuf:"varint,1,opt,name=status_fail,json=statusFail" json:"status_fail,omitempty"`
 }
@@ -523,7 +361,7 @@ type TxVerifyResult struct {
 func (m *TxVerifyResult) Reset()                    { *m = TxVerifyResult{} }
 func (m *TxVerifyResult) String() string            { return proto.CompactTextString(m) }
 func (*TxVerifyResult) ProtoMessage()               {}
-func (*TxVerifyResult) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{11} }
+func (*TxVerifyResult) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} }
 
 func (m *TxVerifyResult) GetStatusFail() bool {
        if m != nil {
@@ -540,7 +378,7 @@ type TransactionStatus struct {
 func (m *TransactionStatus) Reset()                    { *m = TransactionStatus{} }
 func (m *TransactionStatus) String() string            { return proto.CompactTextString(m) }
 func (*TransactionStatus) ProtoMessage()               {}
-func (*TransactionStatus) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{12} }
+func (*TransactionStatus) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} }
 
 func (m *TransactionStatus) GetVersion() uint64 {
        if m != nil {
@@ -566,7 +404,7 @@ type Mux struct {
 func (m *Mux) Reset()                    { *m = Mux{} }
 func (m *Mux) String() string            { return proto.CompactTextString(m) }
 func (*Mux) ProtoMessage()               {}
-func (*Mux) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{13} }
+func (*Mux) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} }
 
 func (m *Mux) GetSources() []*ValueSource {
        if m != nil {
@@ -604,7 +442,7 @@ type Coinbase struct {
 func (m *Coinbase) Reset()                    { *m = Coinbase{} }
 func (m *Coinbase) String() string            { return proto.CompactTextString(m) }
 func (*Coinbase) ProtoMessage()               {}
-func (*Coinbase) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{14} }
+func (*Coinbase) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{11} }
 
 func (m *Coinbase) GetWitnessDestination() *ValueDestination {
        if m != nil {
@@ -620,284 +458,268 @@ func (m *Coinbase) GetArbitrary() []byte {
        return nil
 }
 
-type Output struct {
+type IntraChainOutput struct {
        Source         *ValueSource `protobuf:"bytes,1,opt,name=source" json:"source,omitempty"`
        ControlProgram *Program     `protobuf:"bytes,2,opt,name=control_program,json=controlProgram" json:"control_program,omitempty"`
        Ordinal        uint64       `protobuf:"varint,3,opt,name=ordinal" json:"ordinal,omitempty"`
 }
 
-func (m *Output) Reset()                    { *m = Output{} }
-func (m *Output) String() string            { return proto.CompactTextString(m) }
-func (*Output) ProtoMessage()               {}
-func (*Output) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{15} }
+func (m *IntraChainOutput) Reset()                    { *m = IntraChainOutput{} }
+func (m *IntraChainOutput) String() string            { return proto.CompactTextString(m) }
+func (*IntraChainOutput) ProtoMessage()               {}
+func (*IntraChainOutput) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{12} }
 
-func (m *Output) GetSource() *ValueSource {
+func (m *IntraChainOutput) GetSource() *ValueSource {
        if m != nil {
                return m.Source
        }
        return nil
 }
 
-func (m *Output) GetControlProgram() *Program {
+func (m *IntraChainOutput) GetControlProgram() *Program {
        if m != nil {
                return m.ControlProgram
        }
        return nil
 }
 
-func (m *Output) GetOrdinal() uint64 {
+func (m *IntraChainOutput) GetOrdinal() uint64 {
        if m != nil {
                return m.Ordinal
        }
        return 0
 }
 
-type Retirement struct {
-       Source  *ValueSource `protobuf:"bytes,1,opt,name=source" json:"source,omitempty"`
-       Ordinal uint64       `protobuf:"varint,2,opt,name=ordinal" json:"ordinal,omitempty"`
+type CrossChainOutput struct {
+       Source         *ValueSource `protobuf:"bytes,1,opt,name=source" json:"source,omitempty"`
+       ControlProgram *Program     `protobuf:"bytes,2,opt,name=control_program,json=controlProgram" json:"control_program,omitempty"`
+       Ordinal        uint64       `protobuf:"varint,3,opt,name=ordinal" json:"ordinal,omitempty"`
 }
 
-func (m *Retirement) Reset()                    { *m = Retirement{} }
-func (m *Retirement) String() string            { return proto.CompactTextString(m) }
-func (*Retirement) ProtoMessage()               {}
-func (*Retirement) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{16} }
+func (m *CrossChainOutput) Reset()                    { *m = CrossChainOutput{} }
+func (m *CrossChainOutput) String() string            { return proto.CompactTextString(m) }
+func (*CrossChainOutput) ProtoMessage()               {}
+func (*CrossChainOutput) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{13} }
 
-func (m *Retirement) GetSource() *ValueSource {
+func (m *CrossChainOutput) GetSource() *ValueSource {
        if m != nil {
                return m.Source
        }
        return nil
 }
 
-func (m *Retirement) GetOrdinal() uint64 {
+func (m *CrossChainOutput) GetControlProgram() *Program {
        if m != nil {
-               return m.Ordinal
+               return m.ControlProgram
        }
-       return 0
-}
-
-type Issuance struct {
-       NonceHash              *Hash             `protobuf:"bytes,1,opt,name=nonce_hash,json=nonceHash" json:"nonce_hash,omitempty"`
-       Value                  *AssetAmount      `protobuf:"bytes,2,opt,name=value" json:"value,omitempty"`
-       WitnessDestination     *ValueDestination `protobuf:"bytes,3,opt,name=witness_destination,json=witnessDestination" json:"witness_destination,omitempty"`
-       WitnessAssetDefinition *AssetDefinition  `protobuf:"bytes,4,opt,name=witness_asset_definition,json=witnessAssetDefinition" json:"witness_asset_definition,omitempty"`
-       WitnessArguments       [][]byte          `protobuf:"bytes,5,rep,name=witness_arguments,json=witnessArguments,proto3" json:"witness_arguments,omitempty"`
-       Ordinal                uint64            `protobuf:"varint,6,opt,name=ordinal" json:"ordinal,omitempty"`
+       return nil
 }
 
-func (m *Issuance) Reset()                    { *m = Issuance{} }
-func (m *Issuance) String() string            { return proto.CompactTextString(m) }
-func (*Issuance) ProtoMessage()               {}
-func (*Issuance) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{17} }
-
-func (m *Issuance) GetNonceHash() *Hash {
+func (m *CrossChainOutput) GetOrdinal() uint64 {
        if m != nil {
-               return m.NonceHash
+               return m.Ordinal
        }
-       return nil
+       return 0
 }
 
-func (m *Issuance) GetValue() *AssetAmount {
-       if m != nil {
-               return m.Value
-       }
-       return nil
+type VoteOutput struct {
+       Source         *ValueSource `protobuf:"bytes,1,opt,name=source" json:"source,omitempty"`
+       ControlProgram *Program     `protobuf:"bytes,2,opt,name=control_program,json=controlProgram" json:"control_program,omitempty"`
+       Ordinal        uint64       `protobuf:"varint,3,opt,name=ordinal" json:"ordinal,omitempty"`
+       Vote           []byte       `protobuf:"bytes,4,opt,name=vote,proto3" json:"vote,omitempty"`
 }
 
-func (m *Issuance) GetWitnessDestination() *ValueDestination {
+func (m *VoteOutput) Reset()                    { *m = VoteOutput{} }
+func (m *VoteOutput) String() string            { return proto.CompactTextString(m) }
+func (*VoteOutput) ProtoMessage()               {}
+func (*VoteOutput) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{14} }
+
+func (m *VoteOutput) GetSource() *ValueSource {
        if m != nil {
-               return m.WitnessDestination
+               return m.Source
        }
        return nil
 }
 
-func (m *Issuance) GetWitnessAssetDefinition() *AssetDefinition {
+func (m *VoteOutput) GetControlProgram() *Program {
        if m != nil {
-               return m.WitnessAssetDefinition
+               return m.ControlProgram
        }
        return nil
 }
 
-func (m *Issuance) GetWitnessArguments() [][]byte {
+func (m *VoteOutput) GetOrdinal() uint64 {
        if m != nil {
-               return m.WitnessArguments
+               return m.Ordinal
        }
-       return nil
+       return 0
 }
 
-func (m *Issuance) GetOrdinal() uint64 {
+func (m *VoteOutput) GetVote() []byte {
        if m != nil {
-               return m.Ordinal
+               return m.Vote
        }
-       return 0
+       return nil
 }
 
-type Spend struct {
+type VetoInput struct {
        SpentOutputId      *Hash             `protobuf:"bytes,1,opt,name=spent_output_id,json=spentOutputId" json:"spent_output_id,omitempty"`
        WitnessDestination *ValueDestination `protobuf:"bytes,2,opt,name=witness_destination,json=witnessDestination" json:"witness_destination,omitempty"`
        WitnessArguments   [][]byte          `protobuf:"bytes,3,rep,name=witness_arguments,json=witnessArguments,proto3" json:"witness_arguments,omitempty"`
        Ordinal            uint64            `protobuf:"varint,4,opt,name=ordinal" json:"ordinal,omitempty"`
 }
 
-func (m *Spend) Reset()                    { *m = Spend{} }
-func (m *Spend) String() string            { return proto.CompactTextString(m) }
-func (*Spend) ProtoMessage()               {}
-func (*Spend) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{18} }
+func (m *VetoInput) Reset()                    { *m = VetoInput{} }
+func (m *VetoInput) String() string            { return proto.CompactTextString(m) }
+func (*VetoInput) ProtoMessage()               {}
+func (*VetoInput) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{15} }
 
-func (m *Spend) GetSpentOutputId() *Hash {
+func (m *VetoInput) GetSpentOutputId() *Hash {
        if m != nil {
                return m.SpentOutputId
        }
        return nil
 }
 
-func (m *Spend) GetWitnessDestination() *ValueDestination {
+func (m *VetoInput) GetWitnessDestination() *ValueDestination {
        if m != nil {
                return m.WitnessDestination
        }
        return nil
 }
 
-func (m *Spend) GetWitnessArguments() [][]byte {
+func (m *VetoInput) GetWitnessArguments() [][]byte {
        if m != nil {
                return m.WitnessArguments
        }
        return nil
 }
 
-func (m *Spend) GetOrdinal() uint64 {
+func (m *VetoInput) GetOrdinal() uint64 {
        if m != nil {
                return m.Ordinal
        }
        return 0
 }
 
-type Claim struct {
-       SpentOutputId      *Hash             `protobuf:"bytes,1,opt,name=spent_output_id,json=spentOutputId" json:"spent_output_id,omitempty"`
-       WitnessDestination *ValueDestination `protobuf:"bytes,2,opt,name=witness_destination,json=witnessDestination" json:"witness_destination,omitempty"`
-       WitnessArguments   [][]byte          `protobuf:"bytes,3,rep,name=witness_arguments,json=witnessArguments,proto3" json:"witness_arguments,omitempty"`
-       Ordinal            uint64            `protobuf:"varint,4,opt,name=ordinal" json:"ordinal,omitempty"`
-       Peginwitness       [][]byte          `protobuf:"bytes,5,rep,name=Peginwitness,proto3" json:"Peginwitness,omitempty"`
-}
-
-func (m *Claim) Reset()                    { *m = Claim{} }
-func (m *Claim) String() string            { return proto.CompactTextString(m) }
-func (*Claim) ProtoMessage()               {}
-func (*Claim) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{19} }
-
-func (m *Claim) GetSpentOutputId() *Hash {
-       if m != nil {
-               return m.SpentOutputId
-       }
-       return nil
+type Retirement struct {
+       Source  *ValueSource `protobuf:"bytes,1,opt,name=source" json:"source,omitempty"`
+       Ordinal uint64       `protobuf:"varint,2,opt,name=ordinal" json:"ordinal,omitempty"`
 }
 
-func (m *Claim) GetWitnessDestination() *ValueDestination {
-       if m != nil {
-               return m.WitnessDestination
-       }
-       return nil
-}
+func (m *Retirement) Reset()                    { *m = Retirement{} }
+func (m *Retirement) String() string            { return proto.CompactTextString(m) }
+func (*Retirement) ProtoMessage()               {}
+func (*Retirement) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{16} }
 
-func (m *Claim) GetWitnessArguments() [][]byte {
+func (m *Retirement) GetSource() *ValueSource {
        if m != nil {
-               return m.WitnessArguments
+               return m.Source
        }
        return nil
 }
 
-func (m *Claim) GetOrdinal() uint64 {
+func (m *Retirement) GetOrdinal() uint64 {
        if m != nil {
                return m.Ordinal
        }
        return 0
 }
 
-func (m *Claim) GetPeginwitness() [][]byte {
-       if m != nil {
-               return m.Peginwitness
-       }
-       return nil
-}
-
-type Dpos struct {
+type Spend struct {
        SpentOutputId      *Hash             `protobuf:"bytes,1,opt,name=spent_output_id,json=spentOutputId" json:"spent_output_id,omitempty"`
        WitnessDestination *ValueDestination `protobuf:"bytes,2,opt,name=witness_destination,json=witnessDestination" json:"witness_destination,omitempty"`
        WitnessArguments   [][]byte          `protobuf:"bytes,3,rep,name=witness_arguments,json=witnessArguments,proto3" json:"witness_arguments,omitempty"`
        Ordinal            uint64            `protobuf:"varint,4,opt,name=ordinal" json:"ordinal,omitempty"`
-       Type               uint32            `protobuf:"varint,5,opt,name=type" json:"type,omitempty"`
-       From               string            `protobuf:"bytes,6,opt,name=from" json:"from,omitempty"`
-       To                 string            `protobuf:"bytes,7,opt,name=to" json:"to,omitempty"`
-       Stake              uint64            `protobuf:"varint,8,opt,name=stake" json:"stake,omitempty"`
-       Data               string            `protobuf:"bytes,9,opt,name=data" json:"data,omitempty"`
 }
 
-func (m *Dpos) Reset()                    { *m = Dpos{} }
-func (m *Dpos) String() string            { return proto.CompactTextString(m) }
-func (*Dpos) ProtoMessage()               {}
-func (*Dpos) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{20} }
+func (m *Spend) Reset()                    { *m = Spend{} }
+func (m *Spend) String() string            { return proto.CompactTextString(m) }
+func (*Spend) ProtoMessage()               {}
+func (*Spend) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{17} }
 
-func (m *Dpos) GetSpentOutputId() *Hash {
+func (m *Spend) GetSpentOutputId() *Hash {
        if m != nil {
                return m.SpentOutputId
        }
        return nil
 }
 
-func (m *Dpos) GetWitnessDestination() *ValueDestination {
+func (m *Spend) GetWitnessDestination() *ValueDestination {
        if m != nil {
                return m.WitnessDestination
        }
        return nil
 }
 
-func (m *Dpos) GetWitnessArguments() [][]byte {
+func (m *Spend) GetWitnessArguments() [][]byte {
        if m != nil {
                return m.WitnessArguments
        }
        return nil
 }
 
-func (m *Dpos) GetOrdinal() uint64 {
+func (m *Spend) GetOrdinal() uint64 {
        if m != nil {
                return m.Ordinal
        }
        return 0
 }
 
-func (m *Dpos) GetType() uint32 {
+type CrossChainInput struct {
+       MainchainOutputId  *Hash             `protobuf:"bytes,1,opt,name=mainchain_output_id,json=mainchainOutputId" json:"mainchain_output_id,omitempty"`
+       Value              *AssetAmount      `protobuf:"bytes,2,opt,name=value" json:"value,omitempty"`
+       WitnessDestination *ValueDestination `protobuf:"bytes,3,opt,name=witness_destination,json=witnessDestination" json:"witness_destination,omitempty"`
+       ControlProgram     *Program          `protobuf:"bytes,4,opt,name=control_program,json=controlProgram" json:"control_program,omitempty"`
+       WitnessArguments   [][]byte          `protobuf:"bytes,5,rep,name=witness_arguments,json=witnessArguments,proto3" json:"witness_arguments,omitempty"`
+       Ordinal            uint64            `protobuf:"varint,6,opt,name=ordinal" json:"ordinal,omitempty"`
+}
+
+func (m *CrossChainInput) Reset()                    { *m = CrossChainInput{} }
+func (m *CrossChainInput) String() string            { return proto.CompactTextString(m) }
+func (*CrossChainInput) ProtoMessage()               {}
+func (*CrossChainInput) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{18} }
+
+func (m *CrossChainInput) GetMainchainOutputId() *Hash {
        if m != nil {
-               return m.Type
+               return m.MainchainOutputId
        }
-       return 0
+       return nil
 }
 
-func (m *Dpos) GetFrom() string {
+func (m *CrossChainInput) GetValue() *AssetAmount {
        if m != nil {
-               return m.From
+               return m.Value
        }
-       return ""
+       return nil
 }
 
-func (m *Dpos) GetTo() string {
+func (m *CrossChainInput) GetWitnessDestination() *ValueDestination {
        if m != nil {
-               return m.To
+               return m.WitnessDestination
        }
-       return ""
+       return nil
 }
 
-func (m *Dpos) GetStake() uint64 {
+func (m *CrossChainInput) GetControlProgram() *Program {
        if m != nil {
-               return m.Stake
+               return m.ControlProgram
        }
-       return 0
+       return nil
 }
 
-func (m *Dpos) GetData() string {
+func (m *CrossChainInput) GetWitnessArguments() [][]byte {
        if m != nil {
-               return m.Data
+               return m.WitnessArguments
        }
-       return ""
+       return nil
+}
+
+func (m *CrossChainInput) GetOrdinal() uint64 {
+       if m != nil {
+               return m.Ordinal
+       }
+       return 0
 }
 
 func init() {
@@ -905,94 +727,82 @@ func init() {
        proto.RegisterType((*Program)(nil), "bc.Program")
        proto.RegisterType((*AssetID)(nil), "bc.AssetID")
        proto.RegisterType((*AssetAmount)(nil), "bc.AssetAmount")
-       proto.RegisterType((*AssetDefinition)(nil), "bc.AssetDefinition")
        proto.RegisterType((*ValueSource)(nil), "bc.ValueSource")
        proto.RegisterType((*ValueDestination)(nil), "bc.ValueDestination")
-       proto.RegisterType((*Proof)(nil), "bc.Proof")
-       proto.RegisterType((*BytomBlockHeader)(nil), "bc.BytomBlockHeader")
        proto.RegisterType((*BlockHeader)(nil), "bc.BlockHeader")
        proto.RegisterType((*TxHeader)(nil), "bc.TxHeader")
        proto.RegisterType((*TxVerifyResult)(nil), "bc.TxVerifyResult")
        proto.RegisterType((*TransactionStatus)(nil), "bc.TransactionStatus")
        proto.RegisterType((*Mux)(nil), "bc.Mux")
        proto.RegisterType((*Coinbase)(nil), "bc.Coinbase")
-       proto.RegisterType((*Output)(nil), "bc.Output")
+       proto.RegisterType((*IntraChainOutput)(nil), "bc.IntraChainOutput")
+       proto.RegisterType((*CrossChainOutput)(nil), "bc.CrossChainOutput")
+       proto.RegisterType((*VoteOutput)(nil), "bc.VoteOutput")
+       proto.RegisterType((*VetoInput)(nil), "bc.VetoInput")
        proto.RegisterType((*Retirement)(nil), "bc.Retirement")
-       proto.RegisterType((*Issuance)(nil), "bc.Issuance")
        proto.RegisterType((*Spend)(nil), "bc.Spend")
-       proto.RegisterType((*Claim)(nil), "bc.Claim")
-       proto.RegisterType((*Dpos)(nil), "bc.Dpos")
+       proto.RegisterType((*CrossChainInput)(nil), "bc.CrossChainInput")
 }
 
 func init() { proto.RegisterFile("bc.proto", fileDescriptor0) }
 
 var fileDescriptor0 = []byte{
-       // 1070 bytes of a gzipped FileDescriptorProto
-       0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x57, 0xcd, 0x6e, 0x1b, 0xb7,
-       0x13, 0x87, 0x56, 0xab, 0xaf, 0x91, 0x6c, 0xd9, 0xb4, 0x93, 0xff, 0x22, 0xc8, 0x1f, 0x35, 0x16,
-       0x48, 0x9c, 0xa2, 0x80, 0xe1, 0x8f, 0xb4, 0xbd, 0xf4, 0x50, 0x27, 0x6e, 0x1a, 0x1d, 0x8c, 0x18,
-       0xb4, 0xe1, 0x5b, 0xb1, 0xa0, 0xb4, 0x94, 0x4c, 0x44, 0x5a, 0x6e, 0x49, 0xae, 0x6a, 0xfb, 0x96,
-       0xb7, 0xe9, 0x1b, 0xf4, 0x11, 0x72, 0xea, 0x93, 0xf4, 0x15, 0x7a, 0x28, 0x38, 0xcb, 0x95, 0x56,
-       0xb2, 0xf2, 0x85, 0xa2, 0x28, 0x02, 0xf4, 0xc6, 0x19, 0x0e, 0x7f, 0x33, 0xf3, 0xe3, 0xec, 0x0c,
-       0x17, 0x9a, 0xfd, 0xc1, 0x5e, 0xaa, 0xa4, 0x91, 0xc4, 0xeb, 0x0f, 0xc2, 0x17, 0xe0, 0xbf, 0x64,
-       0xfa, 0x8a, 0xac, 0x83, 0x37, 0xdd, 0x0f, 0x2a, 0x3b, 0x95, 0x27, 0x75, 0xea, 0x4d, 0xf7, 0x51,
-       0x3e, 0x08, 0x3c, 0x27, 0x1f, 0xa0, 0x7c, 0x18, 0x54, 0x9d, 0x7c, 0x88, 0xf2, 0x51, 0xe0, 0x3b,
-       0xf9, 0x28, 0xfc, 0x0e, 0x1a, 0x67, 0x4a, 0x8e, 0x14, 0x9b, 0x90, 0xff, 0x03, 0x4c, 0x27, 0xd1,
-       0x94, 0x2b, 0x2d, 0x64, 0x82, 0x90, 0x3e, 0x6d, 0x4d, 0x27, 0x97, 0xb9, 0x82, 0x10, 0xf0, 0x07,
-       0x32, 0xe6, 0x88, 0xdd, 0xa1, 0xb8, 0x0e, 0x7b, 0xd0, 0x38, 0xd6, 0x9a, 0x9b, 0xde, 0xc9, 0xdf,
-       0x0e, 0xe4, 0x14, 0xda, 0x08, 0x75, 0x3c, 0x91, 0x59, 0x62, 0xc8, 0x63, 0x68, 0x32, 0x2b, 0x46,
-       0x22, 0x46, 0xd0, 0xf6, 0x61, 0x7b, 0xaf, 0x3f, 0xd8, 0x73, 0xde, 0x68, 0x03, 0x37, 0x7b, 0x31,
-       0xb9, 0x0f, 0x75, 0x86, 0x27, 0xd0, 0x95, 0x4f, 0x9d, 0x14, 0x8e, 0xa0, 0x8b, 0xb6, 0x27, 0x7c,
-       0x28, 0x12, 0x61, 0x6c, 0x02, 0xdf, 0xc0, 0x86, 0xd0, 0x3a, 0x63, 0xc9, 0x80, 0x47, 0x69, 0x9e,
-       0x73, 0x19, 0xda, 0xd1, 0x40, 0xbb, 0x85, 0x51, 0xc1, 0xcb, 0x43, 0xf0, 0x63, 0x66, 0x18, 0x3a,
-       0x68, 0x1f, 0x36, 0xad, 0xad, 0xa5, 0x9e, 0xa2, 0x36, 0x1c, 0x43, 0xfb, 0x92, 0x8d, 0x33, 0x7e,
-       0x2e, 0x33, 0x35, 0xe0, 0xe4, 0x01, 0x54, 0x15, 0x1f, 0x3a, 0xdc, 0xb9, 0xad, 0x55, 0x92, 0x47,
-       0x50, 0x9b, 0x5a, 0x53, 0x87, 0xd4, 0x9d, 0x25, 0x94, 0xe7, 0x4c, 0xf3, 0x5d, 0xf2, 0x00, 0x9a,
-       0xa9, 0xd4, 0x18, 0x33, 0xf2, 0xe5, 0xd3, 0x99, 0x1c, 0xfe, 0x0c, 0x1b, 0xe8, 0xed, 0x84, 0x6b,
-       0x23, 0x12, 0x86, 0x79, 0xfd, 0xc3, 0x2e, 0x7f, 0x82, 0xda, 0x99, 0x92, 0x72, 0x68, 0x0b, 0x40,
-       0x8b, 0x51, 0x5e, 0x19, 0x1d, 0x8a, 0x6b, 0xf2, 0x18, 0xd6, 0x07, 0x32, 0x31, 0x4a, 0x8e, 0x1d,
-       0x5b, 0xae, 0x3c, 0x96, 0xb4, 0x24, 0x80, 0x06, 0x8b, 0x63, 0xc5, 0xb5, 0x46, 0xfc, 0x0e, 0x2d,
-       0xc4, 0xf0, 0x4d, 0x15, 0x36, 0x9e, 0xdd, 0x18, 0x39, 0x79, 0x36, 0x96, 0x83, 0xd7, 0x2f, 0x39,
-       0x8b, 0xb9, 0xb2, 0xe6, 0x8b, 0x75, 0x58, 0x88, 0xf6, 0xbe, 0xaf, 0xb8, 0x18, 0x5d, 0xcd, 0xee,
-       0x3b, 0x97, 0xc8, 0x53, 0xd8, 0x4c, 0x15, 0x9f, 0x0a, 0x99, 0xe9, 0xa8, 0x6f, 0x91, 0x6c, 0xe1,
-       0x54, 0x97, 0x28, 0xe9, 0x16, 0x26, 0xe8, 0xab, 0x17, 0x93, 0x87, 0xd0, 0x32, 0x62, 0xc2, 0xb5,
-       0x61, 0x93, 0x14, 0x6b, 0xd1, 0xa7, 0x73, 0x05, 0xf9, 0x1a, 0x36, 0x8d, 0x62, 0x89, 0x66, 0x03,
-       0x4b, 0x84, 0x8e, 0x94, 0x94, 0x26, 0xa8, 0x2d, 0x61, 0x6e, 0x94, 0x4d, 0xa8, 0x94, 0x86, 0x7c,
-       0x0f, 0xff, 0x2b, 0xe9, 0x22, 0x6d, 0x98, 0xc9, 0x74, 0x74, 0xc5, 0xf4, 0x55, 0x50, 0x5f, 0x3a,
-       0x7c, 0xaf, 0x64, 0x78, 0x8e, 0x76, 0xf8, 0x51, 0x6f, 0x43, 0x2d, 0x91, 0xc9, 0x80, 0x07, 0x0d,
-       0x0c, 0x29, 0x17, 0x2c, 0xff, 0x7d, 0x61, 0x74, 0xd0, 0x44, 0x25, 0xae, 0xc9, 0x09, 0x90, 0xbb,
-       0xbe, 0x82, 0x16, 0xba, 0xb9, 0x67, 0xdd, 0x5c, 0x2c, 0x3b, 0xa0, 0x9b, 0x77, 0x7c, 0x86, 0x7f,
-       0x7a, 0xd0, 0xfe, 0x8f, 0xfe, 0x7f, 0x8d, 0xfe, 0xb7, 0x15, 0x68, 0x5e, 0x5c, 0x7f, 0x90, 0xfb,
-       0x5d, 0xe8, 0x6a, 0xae, 0x04, 0x1b, 0x8b, 0x5b, 0x1e, 0x47, 0x5a, 0xdc, 0x72, 0x77, 0x09, 0xeb,
-       0x73, 0xf5, 0xb9, 0xb8, 0xe5, 0xb3, 0x86, 0x55, 0x5d, 0xd5, 0xb0, 0x6c, 0x9b, 0xb7, 0x1c, 0x47,
-       0x8a, 0x25, 0x23, 0x5e, 0x66, 0x9d, 0x5a, 0x05, 0xd9, 0x05, 0x50, 0x5c, 0x67, 0x63, 0xdb, 0x79,
-       0x75, 0x50, 0xdb, 0xa9, 0x2e, 0x40, 0xb4, 0xf2, 0xbd, 0x5e, 0xac, 0xf3, 0x76, 0x10, 0x73, 0x24,
-       0xb5, 0x49, 0x71, 0x1d, 0x1e, 0xc0, 0xfa, 0xc5, 0xf5, 0x25, 0x57, 0x62, 0x78, 0x43, 0xd1, 0x90,
-       0x7c, 0x01, 0x6d, 0x77, 0x03, 0x43, 0x26, 0xc6, 0x98, 0x52, 0x93, 0x42, 0xae, 0x7a, 0xc1, 0xc4,
-       0x38, 0x1c, 0xc2, 0xe6, 0x1d, 0x92, 0xde, 0x43, 0xc2, 0xb7, 0xb0, 0x36, 0x45, 0xfc, 0x82, 0x6c,
-       0x0f, 0x23, 0x24, 0x48, 0xf6, 0x82, 0x6b, 0xda, 0xc9, 0x0d, 0x1d, 0xc9, 0xbf, 0x57, 0xa0, 0x7a,
-       0x9a, 0x5d, 0x93, 0x2f, 0xa1, 0xa1, 0xb1, 0x55, 0xeb, 0xa0, 0x82, 0x47, 0xb1, 0x27, 0x96, 0x5a,
-       0x38, 0x2d, 0xf6, 0xc9, 0x23, 0x68, 0xa4, 0xa5, 0xae, 0xb6, 0x34, 0x27, 0x8a, 0x3d, 0xf2, 0x23,
-       0x6c, 0xff, 0x22, 0x4c, 0xc2, 0xb5, 0x8e, 0xe2, 0x79, 0x5b, 0xb6, 0x8d, 0xce, 0xc2, 0x6f, 0xcf,
-       0xe0, 0x4b, 0x3d, 0x9b, 0x6e, 0xb9, 0x13, 0x25, 0x9d, 0x26, 0x5f, 0xc1, 0x66, 0x01, 0xc4, 0xd4,
-       0x28, 0x9b, 0xf0, 0xc4, 0xe8, 0xc0, 0xdf, 0xa9, 0x3e, 0xe9, 0xd0, 0x0d, 0xb7, 0x71, 0x5c, 0xe8,
-       0x43, 0x09, 0xcd, 0xe7, 0x52, 0x24, 0x7d, 0xa6, 0x39, 0xf9, 0x01, 0xb6, 0x56, 0x44, 0xe0, 0x26,
-       0xc2, 0xea, 0x00, 0xc8, 0xdd, 0x00, 0xec, 0xe7, 0xc8, 0x54, 0x5f, 0x18, 0xc5, 0xd4, 0x8d, 0xeb,
-       0xe3, 0x73, 0x45, 0xf8, 0xa6, 0x02, 0xf5, 0x57, 0x99, 0x49, 0x33, 0x43, 0x76, 0xa1, 0x9e, 0x73,
-       0xe4, 0x5c, 0xdc, 0xa1, 0xd0, 0x6d, 0x93, 0xa7, 0xd0, 0x75, 0x83, 0x20, 0x7a, 0x0f, 0x93, 0x2b,
-       0x86, 0x85, 0x54, 0xb1, 0x48, 0xd8, 0xd8, 0x0d, 0xa3, 0x42, 0x0c, 0x5f, 0x01, 0x50, 0x6e, 0x84,
-       0xe2, 0x96, 0x83, 0x8f, 0x0f, 0xa3, 0x04, 0xe8, 0x2d, 0x02, 0xfe, 0xe6, 0x41, 0xb3, 0xe7, 0xe6,
-       0xbd, 0x2d, 0x7d, 0xfc, 0xd4, 0xf3, 0x66, 0xb1, 0x3c, 0x4f, 0x5b, 0xb8, 0x87, 0x0d, 0xe2, 0x23,
-       0xa7, 0xea, 0x3b, 0xae, 0xa5, 0xfa, 0x89, 0xd7, 0x72, 0x0a, 0xc1, 0xac, 0x2c, 0xf0, 0x49, 0x14,
-       0xcf, 0xde, 0x34, 0xf8, 0xf9, 0xb6, 0x0f, 0xb7, 0x66, 0x01, 0xcc, 0x9f, 0x3b, 0xf4, 0x7e, 0x51,
-       0x32, 0x4b, 0xcf, 0xa0, 0x95, 0x55, 0x56, 0x5b, 0x5d, 0x65, 0x65, 0xe6, 0xea, 0x8b, 0xcc, 0xbd,
-       0xad, 0x40, 0xed, 0x3c, 0xe5, 0x49, 0x4c, 0xf6, 0xa1, 0xab, 0x53, 0x9e, 0x98, 0x48, 0x62, 0x75,
-       0xcc, 0x5f, 0x6c, 0x73, 0xee, 0xd6, 0xd0, 0x20, 0xaf, 0x9e, 0x5e, 0xfc, 0x2e, 0x62, 0xbc, 0x4f,
-       0x24, 0x66, 0x65, 0x26, 0xd5, 0x0f, 0x67, 0xe2, 0x2f, 0x66, 0xf2, 0x47, 0x05, 0x6a, 0xcf, 0xc7,
-       0x4c, 0x4c, 0x3e, 0xf7, 0x4c, 0x48, 0x08, 0x9d, 0x33, 0x3e, 0x12, 0x89, 0x3b, 0xe2, 0x6e, 0x75,
-       0x41, 0x17, 0xfe, 0xea, 0x81, 0x7f, 0x92, 0x4a, 0xfd, 0xd9, 0x27, 0x4b, 0xc0, 0x37, 0x37, 0x29,
-       0xc7, 0x17, 0xc1, 0x1a, 0xc5, 0xb5, 0xd5, 0x0d, 0x95, 0x9c, 0x60, 0xad, 0xb6, 0x28, 0xae, 0xed,
-       0x8f, 0x86, 0x91, 0x38, 0xca, 0x5b, 0xd4, 0x33, 0xd2, 0x4e, 0x77, 0x6d, 0xd8, 0x6b, 0xee, 0x06,
-       0x79, 0x2e, 0xd8, 0x93, 0x38, 0x33, 0x5b, 0xf9, 0x49, 0xbb, 0xee, 0xd7, 0xf1, 0x77, 0xeb, 0xe8,
-       0xaf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x94, 0x81, 0x10, 0xfb, 0x7a, 0x0d, 0x00, 0x00,
+       // 898 bytes of a gzipped FileDescriptorProto
+       0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x56, 0xdd, 0x6e, 0x23, 0x35,
+       0x14, 0x56, 0x66, 0xa6, 0x49, 0x7a, 0xd2, 0x6d, 0x1a, 0x77, 0x17, 0x46, 0x2b, 0x10, 0xd5, 0x48,
+       0x4b, 0x17, 0x21, 0x55, 0xfd, 0x59, 0x04, 0x17, 0x5c, 0x50, 0x5a, 0x96, 0xcd, 0xc5, 0x6a, 0x91,
+       0x5b, 0xe5, 0x76, 0xe4, 0xcc, 0xb8, 0x8d, 0xc5, 0x64, 0x1c, 0x6c, 0xcf, 0xd0, 0xed, 0x2b, 0x70,
+       0xcd, 0x05, 0x2f, 0xc2, 0x2b, 0x70, 0x81, 0x78, 0x26, 0x90, 0xcf, 0x78, 0xf2, 0xd3, 0xa4, 0xed,
+       0x56, 0x08, 0x01, 0x77, 0x39, 0xc7, 0xc7, 0xdf, 0xf9, 0xfc, 0xf9, 0x7c, 0x9e, 0x40, 0x7b, 0x98,
+       0xec, 0x4d, 0x94, 0x34, 0x92, 0x78, 0xc3, 0x24, 0x7a, 0x09, 0xc1, 0x2b, 0xa6, 0x47, 0x64, 0x13,
+       0xbc, 0x72, 0x3f, 0x6c, 0xec, 0x34, 0x9e, 0x37, 0xa9, 0x57, 0xee, 0x63, 0x7c, 0x10, 0x7a, 0x2e,
+       0x3e, 0xc0, 0xf8, 0x30, 0xf4, 0x5d, 0x7c, 0x88, 0xf1, 0x51, 0x18, 0xb8, 0xf8, 0x28, 0xfa, 0x12,
+       0x5a, 0xdf, 0x29, 0x79, 0xa9, 0xd8, 0x98, 0x7c, 0x08, 0x50, 0x8e, 0xe3, 0x92, 0x2b, 0x2d, 0x64,
+       0x8e, 0x90, 0x01, 0x5d, 0x2f, 0xc7, 0x83, 0x2a, 0x41, 0x08, 0x04, 0x89, 0x4c, 0x39, 0x62, 0x6f,
+       0x50, 0xfc, 0x1d, 0xf5, 0xa1, 0x75, 0xac, 0x35, 0x37, 0xfd, 0xd3, 0xbf, 0x4d, 0xe4, 0x35, 0x74,
+       0x10, 0xea, 0x78, 0x2c, 0x8b, 0xdc, 0x90, 0x8f, 0xa1, 0xcd, 0x6c, 0x18, 0x8b, 0x14, 0x41, 0x3b,
+       0x87, 0x9d, 0xbd, 0x61, 0xb2, 0xe7, 0xba, 0xd1, 0x16, 0x2e, 0xf6, 0x53, 0xf2, 0x1e, 0x34, 0x19,
+       0xee, 0xc0, 0x56, 0x01, 0x75, 0x51, 0x94, 0x41, 0x67, 0xc0, 0xb2, 0x82, 0x9f, 0xc9, 0x42, 0x25,
+       0x9c, 0x3c, 0x05, 0x5f, 0xf1, 0x0b, 0x87, 0xd4, 0xb6, 0x48, 0x56, 0x3d, 0x6a, 0x93, 0xe4, 0x19,
+       0xac, 0x95, 0xb6, 0x14, 0x11, 0x3a, 0x87, 0xdd, 0x69, 0x9f, 0x8a, 0x0a, 0xad, 0x56, 0xc9, 0x53,
+       0x68, 0x4f, 0xa4, 0x16, 0xc6, 0x8a, 0xe3, 0x63, 0xaf, 0x69, 0x1c, 0xfd, 0x00, 0x5b, 0xd8, 0xed,
+       0x94, 0x6b, 0x23, 0x72, 0x66, 0x73, 0xff, 0x74, 0xcb, 0x3f, 0x3d, 0xe8, 0x7c, 0x9d, 0xc9, 0xe4,
+       0xfb, 0x57, 0x9c, 0xa5, 0x5c, 0x91, 0x10, 0x5a, 0x8b, 0x57, 0x57, 0x87, 0x56, 0xa2, 0x11, 0x17,
+       0x97, 0xa3, 0xa9, 0x44, 0x55, 0x44, 0x5e, 0x40, 0x6f, 0xa2, 0x78, 0x29, 0x64, 0xa1, 0xe3, 0xa1,
+       0x45, 0xb2, 0x5a, 0xfb, 0x37, 0xe8, 0x76, 0xeb, 0x12, 0xec, 0xd5, 0x4f, 0xc9, 0x07, 0xb0, 0x6e,
+       0xc4, 0x98, 0x6b, 0xc3, 0xc6, 0x13, 0xbc, 0xbe, 0x80, 0xce, 0x12, 0xe4, 0x33, 0xe8, 0x19, 0xc5,
+       0x72, 0xcd, 0x12, 0x4b, 0x52, 0xc7, 0x4a, 0x4a, 0x13, 0xae, 0xdd, 0xc0, 0xdc, 0x9a, 0x2f, 0xa1,
+       0x52, 0x1a, 0xf2, 0x15, 0xbc, 0x3f, 0x97, 0x8b, 0xb5, 0x61, 0xa6, 0xd0, 0xf1, 0x88, 0xe9, 0x51,
+       0xd8, 0xbc, 0xb1, 0xf9, 0xc9, 0x5c, 0xe1, 0x19, 0xd6, 0xa1, 0x0f, 0x4e, 0x81, 0x2c, 0x23, 0x84,
+       0x2d, 0xdc, 0xfc, 0xc4, 0x6e, 0x3e, 0xbf, 0xb9, 0x8d, 0xf6, 0x96, 0x90, 0xc8, 0xa7, 0xd0, 0xfb,
+       0x51, 0x98, 0x9c, 0x6b, 0x1d, 0x33, 0x75, 0x59, 0x8c, 0x79, 0x6e, 0x74, 0xd8, 0xde, 0xf1, 0x9f,
+       0x6f, 0xd0, 0x2d, 0xb7, 0x70, 0x5c, 0xe7, 0xa3, 0x9f, 0x1b, 0xd0, 0x3e, 0xbf, 0xba, 0x57, 0xfe,
+       0x5d, 0xe8, 0x6a, 0xae, 0x04, 0xcb, 0xc4, 0x35, 0x4f, 0x63, 0x2d, 0xae, 0xb9, 0xbb, 0x87, 0xcd,
+       0x59, 0xfa, 0x4c, 0x5c, 0x73, 0xeb, 0x3f, 0x2b, 0x64, 0xac, 0x58, 0x7e, 0xc9, 0xdd, 0x7d, 0xa3,
+       0xb4, 0xd4, 0x26, 0xc8, 0x2e, 0x80, 0xe2, 0xba, 0xc8, 0xac, 0x25, 0x74, 0x18, 0xec, 0xf8, 0x0b,
+       0xb2, 0xac, 0x57, 0x6b, 0xfd, 0x54, 0x47, 0x07, 0xb0, 0x79, 0x7e, 0x35, 0xe0, 0x4a, 0x5c, 0xbc,
+       0xa5, 0x98, 0x24, 0x1f, 0x41, 0xc7, 0x49, 0x7a, 0xc1, 0x44, 0x86, 0x04, 0xdb, 0x14, 0xaa, 0xd4,
+       0x4b, 0x26, 0xb2, 0xe8, 0x02, 0x7a, 0x4b, 0xfa, 0xdc, 0x71, 0xa4, 0xcf, 0xe1, 0x51, 0x89, 0xf8,
+       0xb5, 0xce, 0x1e, 0xb2, 0x21, 0xa8, 0xf3, 0x42, 0x6b, 0xba, 0x51, 0x15, 0x56, 0x90, 0xd1, 0x1f,
+       0x0d, 0xf0, 0x5f, 0x17, 0x57, 0xe4, 0x13, 0x68, 0x69, 0x34, 0xa6, 0x0e, 0x1b, 0xb8, 0x15, 0x1d,
+       0x30, 0x67, 0x58, 0x5a, 0xaf, 0x93, 0x67, 0xd0, 0x9a, 0x54, 0x0f, 0x94, 0x33, 0x0b, 0xbe, 0x03,
+       0xee, 0xcd, 0xa2, 0xf5, 0x1a, 0xf9, 0x16, 0x1e, 0xd7, 0x37, 0x97, 0xce, 0x4c, 0xa8, 0x43, 0x1f,
+       0xe1, 0x1f, 0x4f, 0xe1, 0xe7, 0x1c, 0x4a, 0xb7, 0xdd, 0x8e, 0xb9, 0xdc, 0x2d, 0x23, 0x10, 0xdc,
+       0x32, 0x02, 0x12, 0xda, 0x27, 0x52, 0xe4, 0x43, 0xa6, 0x39, 0xf9, 0x06, 0xb6, 0x57, 0x30, 0x70,
+       0xfe, 0x5f, 0x4d, 0x80, 0x2c, 0x13, 0xb0, 0xfe, 0x62, 0x6a, 0x28, 0x8c, 0x62, 0xea, 0xad, 0x7b,
+       0x6b, 0x67, 0x89, 0xe8, 0xa7, 0x06, 0x6c, 0xf5, 0x73, 0xa3, 0xd8, 0xc9, 0x88, 0x89, 0xfc, 0x4d,
+       0x61, 0x26, 0x85, 0x21, 0xbb, 0xd0, 0xac, 0xd4, 0x72, 0xcd, 0x96, 0xc4, 0x74, 0xcb, 0xe4, 0x05,
+       0x74, 0x13, 0x99, 0x1b, 0x25, 0xb3, 0xf8, 0x0e, 0x4d, 0x37, 0x5d, 0x4d, 0xfd, 0x5d, 0x08, 0xa1,
+       0x25, 0x55, 0x2a, 0x72, 0x96, 0xb9, 0xa1, 0xac, 0x43, 0x64, 0x73, 0xa2, 0xa4, 0xd6, 0xff, 0x09,
+       0x36, 0xbf, 0x34, 0x00, 0x06, 0xd2, 0xf0, 0x7f, 0x99, 0x87, 0xfd, 0x50, 0x96, 0xd2, 0x70, 0x7c,
+       0x1c, 0x37, 0x28, 0xfe, 0x8e, 0x7e, 0x6f, 0xc0, 0xfa, 0x80, 0x1b, 0xd9, 0xcf, 0x2d, 0xb5, 0x7d,
+       0xe8, 0xea, 0x09, 0xcf, 0x4d, 0x2c, 0x91, 0xea, 0xec, 0x1b, 0x37, 0xf3, 0xf3, 0x23, 0x2c, 0xa8,
+       0x8e, 0xd2, 0x4f, 0x6f, 0x1b, 0x2e, 0xef, 0x81, 0xc3, 0xb5, 0x72, 0xb8, 0xfd, 0xd5, 0xc3, 0x3d,
+       0x7f, 0xc2, 0x60, 0x51, 0xe9, 0x37, 0x00, 0x94, 0x1b, 0xa1, 0xb8, 0x2d, 0x7c, 0x77, 0xa1, 0xe7,
+       0x00, 0xbd, 0x45, 0xc0, 0xdf, 0x1a, 0xb0, 0x76, 0x36, 0xe1, 0x79, 0xfa, 0xbf, 0x97, 0xe6, 0x57,
+       0x0f, 0xba, 0x33, 0x4b, 0x54, 0xd7, 0xfd, 0x05, 0x6c, 0x8f, 0x99, 0xc8, 0x13, 0x9b, 0xb9, 0xe3,
+       0x5c, 0xbd, 0x69, 0xd1, 0xf4, 0x6c, 0xef, 0xf8, 0x3f, 0xe1, 0x16, 0x09, 0xfc, 0x07, 0x4a, 0xb0,
+       0xc2, 0x08, 0xc1, 0xfd, 0x46, 0x58, 0x29, 0xdc, 0xda, 0xfd, 0xc2, 0x35, 0x17, 0x84, 0x1b, 0x36,
+       0xf1, 0xbf, 0xed, 0xd1, 0x5f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xd2, 0x80, 0xe2, 0xa6, 0xe7, 0x0a,
+       0x00, 0x00,
 }