From 34815ec7dd6cab812b52e7d02188909dd2c4f0b4 Mon Sep 17 00:00:00 2001 From: Manav Aggarwal Date: Tue, 23 Aug 2022 23:06:29 -0400 Subject: [PATCH 1/5] Add ABCI methods needed to generate fraudproof --- abci/client/client.go | 3 + abci/client/grpc_client.go | 45 + abci/client/local_client.go | 60 + abci/client/socket_client.go | 39 + abci/example/kvstore/persistent_kvstore.go | 15 + abci/server/socket_server.go | 9 + abci/types/application.go | 43 +- abci/types/messages.go | 36 + abci/types/types.pb.go | 3512 +++++++++++++++++--- proto/tendermint/abci/types.proto | 54 + proxy/app_conn.go | 15 + 11 files changed, 3308 insertions(+), 523 deletions(-) diff --git a/abci/client/client.go b/abci/client/client.go index c5c7c82b344..92e9758b1a4 100644 --- a/abci/client/client.go +++ b/abci/client/client.go @@ -56,6 +56,9 @@ type Client interface { OfferSnapshotSync(types.RequestOfferSnapshot) (*types.ResponseOfferSnapshot, error) LoadSnapshotChunkSync(types.RequestLoadSnapshotChunk) (*types.ResponseLoadSnapshotChunk, error) ApplySnapshotChunkSync(types.RequestApplySnapshotChunk) (*types.ResponseApplySnapshotChunk, error) + GetAppHashSync(types.RequestGetAppHash) (*types.ResponseGetAppHash, error) + GenerateFraudProofSync(types.RequestGenerateFraudProof) (*types.ResponseGenerateFraudProof, error) + TriggerFraudProofGenerationModeSync(types.RequestTriggerFraudProofGenerationMode) (*types.ResponseTriggerFraudProofGenerationMode, error) } //---------------------------------------- diff --git a/abci/client/grpc_client.go b/abci/client/grpc_client.go index f271345ab06..603aaa7eb73 100644 --- a/abci/client/grpc_client.go +++ b/abci/client/grpc_client.go @@ -300,6 +300,33 @@ func (cli *grpcClient) ApplySnapshotChunkAsync(params types.RequestApplySnapshot return cli.finishAsyncCall(req, &types.Response{Value: &types.Response_ApplySnapshotChunk{ApplySnapshotChunk: res}}) } +func (cli *grpcClient) GetAppHashAsync(params types.RequestGetAppHash) *ReqRes { + req := types.ToRequestGetAppHash(params) + res, err := cli.client.GetAppHash(context.Background(), req.GetGetAppHash(), grpc.WaitForReady(true)) + if err != nil { + cli.StopForError(err) + } + return cli.finishAsyncCall(req, &types.Response{Value: &types.Response_GetAppHash{GetAppHash: res}}) +} + +func (cli *grpcClient) GenerateFraudProofAsync(params types.RequestGenerateFraudProof) *ReqRes { + req := types.ToRequestGenerateFraudProof(params) + res, err := cli.client.GenerateFraudProof(context.Background(), req.GetGenerateFraudProof(), grpc.WaitForReady(true)) + if err != nil { + cli.StopForError(err) + } + return cli.finishAsyncCall(req, &types.Response{Value: &types.Response_GenerateFraudProof{GenerateFraudProof: res}}) +} + +func (cli *grpcClient) TriggerFraudProofGenerationModeAsync(params types.RequestTriggerFraudProofGenerationMode) *ReqRes { + req := types.ToRequestTriggerFraudProofGenerationMode(params) + res, err := cli.client.TriggerFraudProofGenerationMode(context.Background(), req.GetTriggerFraudProofGenerationMode(), grpc.WaitForReady(true)) + if err != nil { + cli.StopForError(err) + } + return cli.finishAsyncCall(req, &types.Response{Value: &types.Response_TriggerFraudProofGenerationMode{TriggerFraudProofGenerationMode: res}}) +} + // finishAsyncCall creates a ReqRes for an async call, and immediately populates it // with the response. We don't complete it until it's been ordered via the channel. func (cli *grpcClient) finishAsyncCall(req *types.Request, res *types.Response) *ReqRes { @@ -417,3 +444,21 @@ func (cli *grpcClient) ApplySnapshotChunkSync( reqres := cli.ApplySnapshotChunkAsync(params) return cli.finishSyncCall(reqres).GetApplySnapshotChunk(), cli.Error() } + +func (cli *grpcClient) GetAppHashSync( + params types.RequestGetAppHash) (*types.ResponseGetAppHash, error) { + reqres := cli.GetAppHashAsync(params) + return cli.finishSyncCall(reqres).GetGetAppHash(), cli.Error() +} + +func (cli *grpcClient) GenerateFraudProofSync( + params types.RequestGenerateFraudProof) (*types.ResponseGenerateFraudProof, error) { + reqres := cli.GenerateFraudProofAsync(params) + return cli.finishSyncCall(reqres).GetGenerateFraudProof(), cli.Error() +} + +func (cli *grpcClient) TriggerFraudProofGenerationModeSync( + params types.RequestTriggerFraudProofGenerationMode) (*types.ResponseTriggerFraudProofGenerationMode, error) { + reqres := cli.TriggerFraudProofGenerationModeAsync(params) + return cli.finishSyncCall(reqres).GetTriggerFraudProofGenerationMode(), cli.Error() +} diff --git a/abci/client/local_client.go b/abci/client/local_client.go index 62b0942c164..68c02044db3 100644 --- a/abci/client/local_client.go +++ b/abci/client/local_client.go @@ -207,6 +207,39 @@ func (app *localClient) ApplySnapshotChunkAsync(req types.RequestApplySnapshotCh ) } +func (app *localClient) GetAppHashAsync(req types.RequestGetAppHash) *ReqRes { + app.mtx.Lock() + defer app.mtx.Unlock() + + res := app.Application.GetAppHash(req) + return app.callback( + types.ToRequestGetAppHash(req), + types.ToResponseGetAppHash(res), + ) +} + +func (app *localClient) GenerateFraudProofAsync(req types.RequestGenerateFraudProof) *ReqRes { + app.mtx.Lock() + defer app.mtx.Unlock() + + res := app.Application.GenerateFraudProof(req) + return app.callback( + types.ToRequestGenerateFraudProof(req), + types.ToResponseGenerateFraudProof(res), + ) +} + +func (app *localClient) TriggerFraudProofGenerationModeAsync(req types.RequestTriggerFraudProofGenerationMode) *ReqRes { + app.mtx.Lock() + defer app.mtx.Unlock() + + res := app.Application.TriggerFraudProofGenerationMode(req) + return app.callback( + types.ToRequestTriggerFraudProofGenerationMode(req), + types.ToResponseTriggerFraudProofGenerationMode(res), + ) +} + //------------------------------------------------------- func (app *localClient) FlushSync() error { @@ -323,6 +356,33 @@ func (app *localClient) ApplySnapshotChunkSync( return &res, nil } +func (app *localClient) GetAppHashSync( + req types.RequestGetAppHash) (*types.ResponseGetAppHash, error) { + app.mtx.Lock() + defer app.mtx.Unlock() + + res := app.Application.GetAppHash(req) + return &res, nil +} + +func (app *localClient) GenerateFraudProofSync( + req types.RequestGenerateFraudProof) (*types.ResponseGenerateFraudProof, error) { + app.mtx.Lock() + defer app.mtx.Unlock() + + res := app.Application.GenerateFraudProof(req) + return &res, nil +} + +func (app *localClient) TriggerFraudProofGenerationModeSync( + req types.RequestTriggerFraudProofGenerationMode) (*types.ResponseTriggerFraudProofGenerationMode, error) { + app.mtx.Lock() + defer app.mtx.Unlock() + + res := app.Application.TriggerFraudProofGenerationMode(req) + return &res, nil +} + //------------------------------------------------------- func (app *localClient) callback(req *types.Request, res *types.Response) *ReqRes { diff --git a/abci/client/socket_client.go b/abci/client/socket_client.go index a369f878c76..dddb5bc5ca2 100644 --- a/abci/client/socket_client.go +++ b/abci/client/socket_client.go @@ -279,6 +279,18 @@ func (cli *socketClient) ApplySnapshotChunkAsync(req types.RequestApplySnapshotC return cli.queueRequest(types.ToRequestApplySnapshotChunk(req)) } +func (cli *socketClient) GetAppHashAsync(req types.RequestGetAppHash) *ReqRes { + return cli.queueRequest(types.ToRequestGetAppHash(req)) +} + +func (cli *socketClient) GenerateFraudProofAsync(req types.RequestGenerateFraudProof) *ReqRes { + return cli.queueRequest(types.ToRequestGenerateFraudProof(req)) +} + +func (cli *socketClient) TriggerFraudProofGenerationModeAsync(req types.RequestTriggerFraudProofGenerationMode) *ReqRes { + return cli.queueRequest(types.ToRequestTriggerFraudProofGenerationMode(req)) +} + //---------------------------------------- func (cli *socketClient) FlushSync() error { @@ -417,6 +429,33 @@ func (cli *socketClient) ApplySnapshotChunkSync( return reqres.Response.GetApplySnapshotChunk(), cli.Error() } +func (cli *socketClient) GetAppHashSync( + req types.RequestGetAppHash) (*types.ResponseGetAppHash, error) { + reqres := cli.queueRequest(types.ToRequestGetAppHash(req)) + if err := cli.FlushSync(); err != nil { + return nil, err + } + return reqres.Response.GetGetAppHash(), cli.Error() +} + +func (cli *socketClient) GenerateFraudProofSync( + req types.RequestGenerateFraudProof) (*types.ResponseGenerateFraudProof, error) { + reqres := cli.queueRequest(types.ToRequestGenerateFraudProof(req)) + if err := cli.FlushSync(); err != nil { + return nil, err + } + return reqres.Response.GetGenerateFraudProof(), cli.Error() +} + +func (cli *socketClient) TriggerFraudProofGenerationModeSync( + req types.RequestTriggerFraudProofGenerationMode) (*types.ResponseTriggerFraudProofGenerationMode, error) { + reqres := cli.queueRequest(types.ToRequestTriggerFraudProofGenerationMode(req)) + if err := cli.FlushSync(); err != nil { + return nil, err + } + return reqres.Response.GetTriggerFraudProofGenerationMode(), cli.Error() +} + //---------------------------------------- func (cli *socketClient) queueRequest(req *types.Request) *ReqRes { diff --git a/abci/example/kvstore/persistent_kvstore.go b/abci/example/kvstore/persistent_kvstore.go index 320918b5b1e..a2cd762ec86 100644 --- a/abci/example/kvstore/persistent_kvstore.go +++ b/abci/example/kvstore/persistent_kvstore.go @@ -170,6 +170,21 @@ func (app *PersistentKVStoreApplication) ApplySnapshotChunk( return types.ResponseApplySnapshotChunk{Result: types.ResponseApplySnapshotChunk_ABORT} } +func (app *PersistentKVStoreApplication) GetAppHash( + req types.RequestGetAppHash) types.ResponseGetAppHash { + return types.ResponseGetAppHash{} +} + +func (app *PersistentKVStoreApplication) GenerateFraudProof( + req types.RequestGenerateFraudProof) types.ResponseGenerateFraudProof { + return types.ResponseGenerateFraudProof{} +} + +func (app *PersistentKVStoreApplication) TriggerFraudProofGenerationMode( + req types.RequestTriggerFraudProofGenerationMode) types.ResponseTriggerFraudProofGenerationMode { + return types.ResponseTriggerFraudProofGenerationMode{} +} + //--------------------------------------------- // update validators diff --git a/abci/server/socket_server.go b/abci/server/socket_server.go index 3f99a37656f..cdb3c1365a2 100644 --- a/abci/server/socket_server.go +++ b/abci/server/socket_server.go @@ -236,6 +236,15 @@ func (s *SocketServer) handleRequest(req *types.Request, responses chan<- *types case *types.Request_ApplySnapshotChunk: res := s.app.ApplySnapshotChunk(*r.ApplySnapshotChunk) responses <- types.ToResponseApplySnapshotChunk(res) + case *types.Request_GetAppHash: + res := s.app.GetAppHash(*r.GetAppHash) + responses <- types.ToResponseGetAppHash(res) + case *types.Request_GenerateFraudProof: + res := s.app.GenerateFraudProof(*r.GenerateFraudProof) + responses <- types.ToResponseGenerateFraudProof(res) + case *types.Request_TriggerFraudProofGenerationMode: + res := s.app.TriggerFraudProofGenerationMode(*r.TriggerFraudProofGenerationMode) + responses <- types.ToResponseTriggerFraudProofGenerationMode(res) default: responses <- types.ToResponseException("Unknown request") } diff --git a/abci/types/application.go b/abci/types/application.go index 65cc78b8cde..1cfc81e2152 100644 --- a/abci/types/application.go +++ b/abci/types/application.go @@ -18,11 +18,14 @@ type Application interface { CheckTx(RequestCheckTx) ResponseCheckTx // Validate a tx for the mempool // Consensus Connection - InitChain(RequestInitChain) ResponseInitChain // Initialize blockchain w validators/other info from TendermintCore - BeginBlock(RequestBeginBlock) ResponseBeginBlock // Signals the beginning of a block - DeliverTx(RequestDeliverTx) ResponseDeliverTx // Deliver a tx for full processing - EndBlock(RequestEndBlock) ResponseEndBlock // Signals the end of a block, returns changes to the validator set - Commit() ResponseCommit // Commit the state and return the application Merkle root hash + InitChain(RequestInitChain) ResponseInitChain // Initialize blockchain w validators/other info from TendermintCore + BeginBlock(RequestBeginBlock) ResponseBeginBlock // Signals the beginning of a block + DeliverTx(RequestDeliverTx) ResponseDeliverTx // Deliver a tx for full processing + EndBlock(RequestEndBlock) ResponseEndBlock // Signals the end of a block, returns changes to the validator set + Commit() ResponseCommit // Commit the state and return the application Merkle root hash + GetAppHash(RequestGetAppHash) ResponseGetAppHash // Get appHash + GenerateFraudProof(RequestGenerateFraudProof) ResponseGenerateFraudProof // Generate FraudProof + TriggerFraudProofGenerationMode(RequestTriggerFraudProofGenerationMode) ResponseTriggerFraudProofGenerationMode // Trigger Fraud Proof Generation Mode // State Sync Connection ListSnapshots(RequestListSnapshots) ResponseListSnapshots // List available snapshots @@ -95,6 +98,18 @@ func (BaseApplication) ApplySnapshotChunk(req RequestApplySnapshotChunk) Respons return ResponseApplySnapshotChunk{} } +func (BaseApplication) GetAppHash(req RequestGetAppHash) ResponseGetAppHash { + return ResponseGetAppHash{} +} + +func (BaseApplication) GenerateFraudProof(req RequestGenerateFraudProof) ResponseGenerateFraudProof { + return ResponseGenerateFraudProof{} +} + +func (BaseApplication) TriggerFraudProofGenerationMode(req RequestTriggerFraudProofGenerationMode) ResponseTriggerFraudProofGenerationMode { + return ResponseTriggerFraudProofGenerationMode{} +} + //------------------------------------------------------- // GRPCApplication is a GRPC wrapper for Application @@ -182,3 +197,21 @@ func (app *GRPCApplication) ApplySnapshotChunk( res := app.app.ApplySnapshotChunk(*req) return &res, nil } + +func (app *GRPCApplication) GetAppHash( + ctx context.Context, req *RequestGetAppHash) (*ResponseGetAppHash, error) { + res := app.app.GetAppHash(*req) + return &res, nil +} + +func (app *GRPCApplication) GenerateFraudProof( + ctx context.Context, req *RequestGenerateFraudProof) (*ResponseGenerateFraudProof, error) { + res := app.app.GenerateFraudProof(*req) + return &res, nil +} + +func (app *GRPCApplication) TriggerFraudProofGenerationMode( + ctx context.Context, req *RequestTriggerFraudProofGenerationMode) (*ResponseTriggerFraudProofGenerationMode, error) { + res := app.app.TriggerFraudProofGenerationMode(*req) + return &res, nil +} diff --git a/abci/types/messages.go b/abci/types/messages.go index 531f75fed76..9adfc11e9ba 100644 --- a/abci/types/messages.go +++ b/abci/types/messages.go @@ -159,6 +159,24 @@ func ToRequestApplySnapshotChunk(req RequestApplySnapshotChunk) *Request { } } +func ToRequestGetAppHash(req RequestGetAppHash) *Request { + return &Request{ + Value: &Request_GetAppHash{&req}, + } +} + +func ToRequestGenerateFraudProof(req RequestGenerateFraudProof) *Request { + return &Request{ + Value: &Request_GenerateFraudProof{&req}, + } +} + +func ToRequestTriggerFraudProofGenerationMode(req RequestTriggerFraudProofGenerationMode) *Request { + return &Request{ + Value: &Request_TriggerFraudProofGenerationMode{&req}, + } +} + //---------------------------------------- func ToResponseException(errStr string) *Response { @@ -256,3 +274,21 @@ func ToResponseApplySnapshotChunk(res ResponseApplySnapshotChunk) *Response { Value: &Response_ApplySnapshotChunk{&res}, } } + +func ToResponseGetAppHash(res ResponseGetAppHash) *Response { + return &Response{ + Value: &Response_GetAppHash{&res}, + } +} + +func ToResponseGenerateFraudProof(res ResponseGenerateFraudProof) *Response { + return &Response{ + Value: &Response_GenerateFraudProof{&res}, + } +} + +func ToResponseTriggerFraudProofGenerationMode(res ResponseTriggerFraudProofGenerationMode) *Response { + return &Response{ + Value: &Response_TriggerFraudProofGenerationMode{&res}, + } +} diff --git a/abci/types/types.pb.go b/abci/types/types.pb.go index 5da9c878fcc..0c7ba0c7a0a 100644 --- a/abci/types/types.pb.go +++ b/abci/types/types.pb.go @@ -120,7 +120,7 @@ func (x ResponseOfferSnapshot_Result) String() string { } func (ResponseOfferSnapshot_Result) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{30, 0} + return fileDescriptor_252557cfdd89a31a, []int{33, 0} } type ResponseApplySnapshotChunk_Result int32 @@ -157,7 +157,7 @@ func (x ResponseApplySnapshotChunk_Result) String() string { } func (ResponseApplySnapshotChunk_Result) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{32, 0} + return fileDescriptor_252557cfdd89a31a, []int{35, 0} } type Request struct { @@ -177,6 +177,9 @@ type Request struct { // *Request_OfferSnapshot // *Request_LoadSnapshotChunk // *Request_ApplySnapshotChunk + // *Request_GetAppHash + // *Request_GenerateFraudProof + // *Request_TriggerFraudProofGenerationMode Value isRequest_Value `protobuf_oneof:"value"` } @@ -264,22 +267,34 @@ type Request_LoadSnapshotChunk struct { type Request_ApplySnapshotChunk struct { ApplySnapshotChunk *RequestApplySnapshotChunk `protobuf:"bytes,15,opt,name=apply_snapshot_chunk,json=applySnapshotChunk,proto3,oneof" json:"apply_snapshot_chunk,omitempty"` } - -func (*Request_Echo) isRequest_Value() {} -func (*Request_Flush) isRequest_Value() {} -func (*Request_Info) isRequest_Value() {} -func (*Request_SetOption) isRequest_Value() {} -func (*Request_InitChain) isRequest_Value() {} -func (*Request_Query) isRequest_Value() {} -func (*Request_BeginBlock) isRequest_Value() {} -func (*Request_CheckTx) isRequest_Value() {} -func (*Request_DeliverTx) isRequest_Value() {} -func (*Request_EndBlock) isRequest_Value() {} -func (*Request_Commit) isRequest_Value() {} -func (*Request_ListSnapshots) isRequest_Value() {} -func (*Request_OfferSnapshot) isRequest_Value() {} -func (*Request_LoadSnapshotChunk) isRequest_Value() {} -func (*Request_ApplySnapshotChunk) isRequest_Value() {} +type Request_GetAppHash struct { + GetAppHash *RequestGetAppHash `protobuf:"bytes,16,opt,name=get_app_hash,json=getAppHash,proto3,oneof" json:"get_app_hash,omitempty"` +} +type Request_GenerateFraudProof struct { + GenerateFraudProof *RequestGenerateFraudProof `protobuf:"bytes,17,opt,name=generate_fraud_proof,json=generateFraudProof,proto3,oneof" json:"generate_fraud_proof,omitempty"` +} +type Request_TriggerFraudProofGenerationMode struct { + TriggerFraudProofGenerationMode *RequestTriggerFraudProofGenerationMode `protobuf:"bytes,18,opt,name=trigger_fraud_proof_generation_mode,json=triggerFraudProofGenerationMode,proto3,oneof" json:"trigger_fraud_proof_generation_mode,omitempty"` +} + +func (*Request_Echo) isRequest_Value() {} +func (*Request_Flush) isRequest_Value() {} +func (*Request_Info) isRequest_Value() {} +func (*Request_SetOption) isRequest_Value() {} +func (*Request_InitChain) isRequest_Value() {} +func (*Request_Query) isRequest_Value() {} +func (*Request_BeginBlock) isRequest_Value() {} +func (*Request_CheckTx) isRequest_Value() {} +func (*Request_DeliverTx) isRequest_Value() {} +func (*Request_EndBlock) isRequest_Value() {} +func (*Request_Commit) isRequest_Value() {} +func (*Request_ListSnapshots) isRequest_Value() {} +func (*Request_OfferSnapshot) isRequest_Value() {} +func (*Request_LoadSnapshotChunk) isRequest_Value() {} +func (*Request_ApplySnapshotChunk) isRequest_Value() {} +func (*Request_GetAppHash) isRequest_Value() {} +func (*Request_GenerateFraudProof) isRequest_Value() {} +func (*Request_TriggerFraudProofGenerationMode) isRequest_Value() {} func (m *Request) GetValue() isRequest_Value { if m != nil { @@ -393,6 +408,27 @@ func (m *Request) GetApplySnapshotChunk() *RequestApplySnapshotChunk { return nil } +func (m *Request) GetGetAppHash() *RequestGetAppHash { + if x, ok := m.GetValue().(*Request_GetAppHash); ok { + return x.GetAppHash + } + return nil +} + +func (m *Request) GetGenerateFraudProof() *RequestGenerateFraudProof { + if x, ok := m.GetValue().(*Request_GenerateFraudProof); ok { + return x.GenerateFraudProof + } + return nil +} + +func (m *Request) GetTriggerFraudProofGenerationMode() *RequestTriggerFraudProofGenerationMode { + if x, ok := m.GetValue().(*Request_TriggerFraudProofGenerationMode); ok { + return x.TriggerFraudProofGenerationMode + } + return nil +} + // XXX_OneofWrappers is for the internal use of the proto package. func (*Request) XXX_OneofWrappers() []interface{} { return []interface{}{ @@ -411,6 +447,9 @@ func (*Request) XXX_OneofWrappers() []interface{} { (*Request_OfferSnapshot)(nil), (*Request_LoadSnapshotChunk)(nil), (*Request_ApplySnapshotChunk)(nil), + (*Request_GetAppHash)(nil), + (*Request_GenerateFraudProof)(nil), + (*Request_TriggerFraudProofGenerationMode)(nil), } } @@ -1215,6 +1254,119 @@ func (m *RequestApplySnapshotChunk) GetSender() string { return "" } +// Gets the current appHash +type RequestGetAppHash struct { +} + +func (m *RequestGetAppHash) Reset() { *m = RequestGetAppHash{} } +func (m *RequestGetAppHash) String() string { return proto.CompactTextString(m) } +func (*RequestGetAppHash) ProtoMessage() {} +func (*RequestGetAppHash) Descriptor() ([]byte, []int) { + return fileDescriptor_252557cfdd89a31a, []int{16} +} +func (m *RequestGetAppHash) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *RequestGetAppHash) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_RequestGetAppHash.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *RequestGetAppHash) XXX_Merge(src proto.Message) { + xxx_messageInfo_RequestGetAppHash.Merge(m, src) +} +func (m *RequestGetAppHash) XXX_Size() int { + return m.Size() +} +func (m *RequestGetAppHash) XXX_DiscardUnknown() { + xxx_messageInfo_RequestGetAppHash.DiscardUnknown(m) +} + +var xxx_messageInfo_RequestGetAppHash proto.InternalMessageInfo + +// Generates a fraud proof +type RequestGenerateFraudProof struct { +} + +func (m *RequestGenerateFraudProof) Reset() { *m = RequestGenerateFraudProof{} } +func (m *RequestGenerateFraudProof) String() string { return proto.CompactTextString(m) } +func (*RequestGenerateFraudProof) ProtoMessage() {} +func (*RequestGenerateFraudProof) Descriptor() ([]byte, []int) { + return fileDescriptor_252557cfdd89a31a, []int{17} +} +func (m *RequestGenerateFraudProof) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *RequestGenerateFraudProof) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_RequestGenerateFraudProof.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *RequestGenerateFraudProof) XXX_Merge(src proto.Message) { + xxx_messageInfo_RequestGenerateFraudProof.Merge(m, src) +} +func (m *RequestGenerateFraudProof) XXX_Size() int { + return m.Size() +} +func (m *RequestGenerateFraudProof) XXX_DiscardUnknown() { + xxx_messageInfo_RequestGenerateFraudProof.DiscardUnknown(m) +} + +var xxx_messageInfo_RequestGenerateFraudProof proto.InternalMessageInfo + +// Triggers fraud proof generation mode +type RequestTriggerFraudProofGenerationMode struct { +} + +func (m *RequestTriggerFraudProofGenerationMode) Reset() { + *m = RequestTriggerFraudProofGenerationMode{} +} +func (m *RequestTriggerFraudProofGenerationMode) String() string { return proto.CompactTextString(m) } +func (*RequestTriggerFraudProofGenerationMode) ProtoMessage() {} +func (*RequestTriggerFraudProofGenerationMode) Descriptor() ([]byte, []int) { + return fileDescriptor_252557cfdd89a31a, []int{18} +} +func (m *RequestTriggerFraudProofGenerationMode) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *RequestTriggerFraudProofGenerationMode) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_RequestTriggerFraudProofGenerationMode.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *RequestTriggerFraudProofGenerationMode) XXX_Merge(src proto.Message) { + xxx_messageInfo_RequestTriggerFraudProofGenerationMode.Merge(m, src) +} +func (m *RequestTriggerFraudProofGenerationMode) XXX_Size() int { + return m.Size() +} +func (m *RequestTriggerFraudProofGenerationMode) XXX_DiscardUnknown() { + xxx_messageInfo_RequestTriggerFraudProofGenerationMode.DiscardUnknown(m) +} + +var xxx_messageInfo_RequestTriggerFraudProofGenerationMode proto.InternalMessageInfo + type Response struct { // Types that are valid to be assigned to Value: // *Response_Exception @@ -1233,6 +1385,9 @@ type Response struct { // *Response_OfferSnapshot // *Response_LoadSnapshotChunk // *Response_ApplySnapshotChunk + // *Response_GetAppHash + // *Response_GenerateFraudProof + // *Response_TriggerFraudProofGenerationMode Value isResponse_Value `protobuf_oneof:"value"` } @@ -1240,7 +1395,7 @@ func (m *Response) Reset() { *m = Response{} } func (m *Response) String() string { return proto.CompactTextString(m) } func (*Response) ProtoMessage() {} func (*Response) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{16} + return fileDescriptor_252557cfdd89a31a, []int{19} } func (m *Response) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1323,23 +1478,35 @@ type Response_LoadSnapshotChunk struct { type Response_ApplySnapshotChunk struct { ApplySnapshotChunk *ResponseApplySnapshotChunk `protobuf:"bytes,16,opt,name=apply_snapshot_chunk,json=applySnapshotChunk,proto3,oneof" json:"apply_snapshot_chunk,omitempty"` } - -func (*Response_Exception) isResponse_Value() {} -func (*Response_Echo) isResponse_Value() {} -func (*Response_Flush) isResponse_Value() {} -func (*Response_Info) isResponse_Value() {} -func (*Response_SetOption) isResponse_Value() {} -func (*Response_InitChain) isResponse_Value() {} -func (*Response_Query) isResponse_Value() {} -func (*Response_BeginBlock) isResponse_Value() {} -func (*Response_CheckTx) isResponse_Value() {} -func (*Response_DeliverTx) isResponse_Value() {} -func (*Response_EndBlock) isResponse_Value() {} -func (*Response_Commit) isResponse_Value() {} -func (*Response_ListSnapshots) isResponse_Value() {} -func (*Response_OfferSnapshot) isResponse_Value() {} -func (*Response_LoadSnapshotChunk) isResponse_Value() {} -func (*Response_ApplySnapshotChunk) isResponse_Value() {} +type Response_GetAppHash struct { + GetAppHash *ResponseGetAppHash `protobuf:"bytes,17,opt,name=get_app_hash,json=getAppHash,proto3,oneof" json:"get_app_hash,omitempty"` +} +type Response_GenerateFraudProof struct { + GenerateFraudProof *ResponseGenerateFraudProof `protobuf:"bytes,18,opt,name=generate_fraud_proof,json=generateFraudProof,proto3,oneof" json:"generate_fraud_proof,omitempty"` +} +type Response_TriggerFraudProofGenerationMode struct { + TriggerFraudProofGenerationMode *ResponseTriggerFraudProofGenerationMode `protobuf:"bytes,19,opt,name=trigger_fraud_proof_generation_mode,json=triggerFraudProofGenerationMode,proto3,oneof" json:"trigger_fraud_proof_generation_mode,omitempty"` +} + +func (*Response_Exception) isResponse_Value() {} +func (*Response_Echo) isResponse_Value() {} +func (*Response_Flush) isResponse_Value() {} +func (*Response_Info) isResponse_Value() {} +func (*Response_SetOption) isResponse_Value() {} +func (*Response_InitChain) isResponse_Value() {} +func (*Response_Query) isResponse_Value() {} +func (*Response_BeginBlock) isResponse_Value() {} +func (*Response_CheckTx) isResponse_Value() {} +func (*Response_DeliverTx) isResponse_Value() {} +func (*Response_EndBlock) isResponse_Value() {} +func (*Response_Commit) isResponse_Value() {} +func (*Response_ListSnapshots) isResponse_Value() {} +func (*Response_OfferSnapshot) isResponse_Value() {} +func (*Response_LoadSnapshotChunk) isResponse_Value() {} +func (*Response_ApplySnapshotChunk) isResponse_Value() {} +func (*Response_GetAppHash) isResponse_Value() {} +func (*Response_GenerateFraudProof) isResponse_Value() {} +func (*Response_TriggerFraudProofGenerationMode) isResponse_Value() {} func (m *Response) GetValue() isResponse_Value { if m != nil { @@ -1460,6 +1627,27 @@ func (m *Response) GetApplySnapshotChunk() *ResponseApplySnapshotChunk { return nil } +func (m *Response) GetGetAppHash() *ResponseGetAppHash { + if x, ok := m.GetValue().(*Response_GetAppHash); ok { + return x.GetAppHash + } + return nil +} + +func (m *Response) GetGenerateFraudProof() *ResponseGenerateFraudProof { + if x, ok := m.GetValue().(*Response_GenerateFraudProof); ok { + return x.GenerateFraudProof + } + return nil +} + +func (m *Response) GetTriggerFraudProofGenerationMode() *ResponseTriggerFraudProofGenerationMode { + if x, ok := m.GetValue().(*Response_TriggerFraudProofGenerationMode); ok { + return x.TriggerFraudProofGenerationMode + } + return nil +} + // XXX_OneofWrappers is for the internal use of the proto package. func (*Response) XXX_OneofWrappers() []interface{} { return []interface{}{ @@ -1479,6 +1667,9 @@ func (*Response) XXX_OneofWrappers() []interface{} { (*Response_OfferSnapshot)(nil), (*Response_LoadSnapshotChunk)(nil), (*Response_ApplySnapshotChunk)(nil), + (*Response_GetAppHash)(nil), + (*Response_GenerateFraudProof)(nil), + (*Response_TriggerFraudProofGenerationMode)(nil), } } @@ -1491,7 +1682,7 @@ func (m *ResponseException) Reset() { *m = ResponseException{} } func (m *ResponseException) String() string { return proto.CompactTextString(m) } func (*ResponseException) ProtoMessage() {} func (*ResponseException) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{17} + return fileDescriptor_252557cfdd89a31a, []int{20} } func (m *ResponseException) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1535,7 +1726,7 @@ func (m *ResponseEcho) Reset() { *m = ResponseEcho{} } func (m *ResponseEcho) String() string { return proto.CompactTextString(m) } func (*ResponseEcho) ProtoMessage() {} func (*ResponseEcho) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{18} + return fileDescriptor_252557cfdd89a31a, []int{21} } func (m *ResponseEcho) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1578,7 +1769,7 @@ func (m *ResponseFlush) Reset() { *m = ResponseFlush{} } func (m *ResponseFlush) String() string { return proto.CompactTextString(m) } func (*ResponseFlush) ProtoMessage() {} func (*ResponseFlush) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{19} + return fileDescriptor_252557cfdd89a31a, []int{22} } func (m *ResponseFlush) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1619,7 +1810,7 @@ func (m *ResponseInfo) Reset() { *m = ResponseInfo{} } func (m *ResponseInfo) String() string { return proto.CompactTextString(m) } func (*ResponseInfo) ProtoMessage() {} func (*ResponseInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{20} + return fileDescriptor_252557cfdd89a31a, []int{23} } func (m *ResponseInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1695,7 +1886,7 @@ func (m *ResponseSetOption) Reset() { *m = ResponseSetOption{} } func (m *ResponseSetOption) String() string { return proto.CompactTextString(m) } func (*ResponseSetOption) ProtoMessage() {} func (*ResponseSetOption) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{21} + return fileDescriptor_252557cfdd89a31a, []int{24} } func (m *ResponseSetOption) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1755,7 +1946,7 @@ func (m *ResponseInitChain) Reset() { *m = ResponseInitChain{} } func (m *ResponseInitChain) String() string { return proto.CompactTextString(m) } func (*ResponseInitChain) ProtoMessage() {} func (*ResponseInitChain) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{22} + return fileDescriptor_252557cfdd89a31a, []int{25} } func (m *ResponseInitChain) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1822,7 +2013,7 @@ func (m *ResponseQuery) Reset() { *m = ResponseQuery{} } func (m *ResponseQuery) String() string { return proto.CompactTextString(m) } func (*ResponseQuery) ProtoMessage() {} func (*ResponseQuery) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{23} + return fileDescriptor_252557cfdd89a31a, []int{26} } func (m *ResponseQuery) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1922,7 +2113,7 @@ func (m *ResponseBeginBlock) Reset() { *m = ResponseBeginBlock{} } func (m *ResponseBeginBlock) String() string { return proto.CompactTextString(m) } func (*ResponseBeginBlock) ProtoMessage() {} func (*ResponseBeginBlock) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{24} + return fileDescriptor_252557cfdd89a31a, []int{27} } func (m *ResponseBeginBlock) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1978,7 +2169,7 @@ func (m *ResponseCheckTx) Reset() { *m = ResponseCheckTx{} } func (m *ResponseCheckTx) String() string { return proto.CompactTextString(m) } func (*ResponseCheckTx) ProtoMessage() {} func (*ResponseCheckTx) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{25} + return fileDescriptor_252557cfdd89a31a, []int{28} } func (m *ResponseCheckTx) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2099,7 +2290,7 @@ func (m *ResponseDeliverTx) Reset() { *m = ResponseDeliverTx{} } func (m *ResponseDeliverTx) String() string { return proto.CompactTextString(m) } func (*ResponseDeliverTx) ProtoMessage() {} func (*ResponseDeliverTx) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{26} + return fileDescriptor_252557cfdd89a31a, []int{29} } func (m *ResponseDeliverTx) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2194,7 +2385,7 @@ func (m *ResponseEndBlock) Reset() { *m = ResponseEndBlock{} } func (m *ResponseEndBlock) String() string { return proto.CompactTextString(m) } func (*ResponseEndBlock) ProtoMessage() {} func (*ResponseEndBlock) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{27} + return fileDescriptor_252557cfdd89a31a, []int{30} } func (m *ResponseEndBlock) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2254,7 +2445,7 @@ func (m *ResponseCommit) Reset() { *m = ResponseCommit{} } func (m *ResponseCommit) String() string { return proto.CompactTextString(m) } func (*ResponseCommit) ProtoMessage() {} func (*ResponseCommit) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{28} + return fileDescriptor_252557cfdd89a31a, []int{31} } func (m *ResponseCommit) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2305,7 +2496,7 @@ func (m *ResponseListSnapshots) Reset() { *m = ResponseListSnapshots{} } func (m *ResponseListSnapshots) String() string { return proto.CompactTextString(m) } func (*ResponseListSnapshots) ProtoMessage() {} func (*ResponseListSnapshots) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{29} + return fileDescriptor_252557cfdd89a31a, []int{32} } func (m *ResponseListSnapshots) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2349,7 +2540,7 @@ func (m *ResponseOfferSnapshot) Reset() { *m = ResponseOfferSnapshot{} } func (m *ResponseOfferSnapshot) String() string { return proto.CompactTextString(m) } func (*ResponseOfferSnapshot) ProtoMessage() {} func (*ResponseOfferSnapshot) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{30} + return fileDescriptor_252557cfdd89a31a, []int{33} } func (m *ResponseOfferSnapshot) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2393,7 +2584,7 @@ func (m *ResponseLoadSnapshotChunk) Reset() { *m = ResponseLoadSnapshotC func (m *ResponseLoadSnapshotChunk) String() string { return proto.CompactTextString(m) } func (*ResponseLoadSnapshotChunk) ProtoMessage() {} func (*ResponseLoadSnapshotChunk) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{31} + return fileDescriptor_252557cfdd89a31a, []int{34} } func (m *ResponseLoadSnapshotChunk) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2439,7 +2630,7 @@ func (m *ResponseApplySnapshotChunk) Reset() { *m = ResponseApplySnapsho func (m *ResponseApplySnapshotChunk) String() string { return proto.CompactTextString(m) } func (*ResponseApplySnapshotChunk) ProtoMessage() {} func (*ResponseApplySnapshotChunk) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{32} + return fileDescriptor_252557cfdd89a31a, []int{35} } func (m *ResponseApplySnapshotChunk) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2489,6 +2680,140 @@ func (m *ResponseApplySnapshotChunk) GetRejectSenders() []string { return nil } +type ResponseGetAppHash struct { + AppHash []byte `protobuf:"bytes,1,opt,name=app_hash,json=appHash,proto3" json:"app_hash,omitempty"` +} + +func (m *ResponseGetAppHash) Reset() { *m = ResponseGetAppHash{} } +func (m *ResponseGetAppHash) String() string { return proto.CompactTextString(m) } +func (*ResponseGetAppHash) ProtoMessage() {} +func (*ResponseGetAppHash) Descriptor() ([]byte, []int) { + return fileDescriptor_252557cfdd89a31a, []int{36} +} +func (m *ResponseGetAppHash) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *ResponseGetAppHash) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_ResponseGetAppHash.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *ResponseGetAppHash) XXX_Merge(src proto.Message) { + xxx_messageInfo_ResponseGetAppHash.Merge(m, src) +} +func (m *ResponseGetAppHash) XXX_Size() int { + return m.Size() +} +func (m *ResponseGetAppHash) XXX_DiscardUnknown() { + xxx_messageInfo_ResponseGetAppHash.DiscardUnknown(m) +} + +var xxx_messageInfo_ResponseGetAppHash proto.InternalMessageInfo + +func (m *ResponseGetAppHash) GetAppHash() []byte { + if m != nil { + return m.AppHash + } + return nil +} + +type ResponseGenerateFraudProof struct { + FraudProof *FraudProof `protobuf:"bytes,1,opt,name=fraudProof,proto3" json:"fraudProof,omitempty"` +} + +func (m *ResponseGenerateFraudProof) Reset() { *m = ResponseGenerateFraudProof{} } +func (m *ResponseGenerateFraudProof) String() string { return proto.CompactTextString(m) } +func (*ResponseGenerateFraudProof) ProtoMessage() {} +func (*ResponseGenerateFraudProof) Descriptor() ([]byte, []int) { + return fileDescriptor_252557cfdd89a31a, []int{37} +} +func (m *ResponseGenerateFraudProof) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *ResponseGenerateFraudProof) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_ResponseGenerateFraudProof.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *ResponseGenerateFraudProof) XXX_Merge(src proto.Message) { + xxx_messageInfo_ResponseGenerateFraudProof.Merge(m, src) +} +func (m *ResponseGenerateFraudProof) XXX_Size() int { + return m.Size() +} +func (m *ResponseGenerateFraudProof) XXX_DiscardUnknown() { + xxx_messageInfo_ResponseGenerateFraudProof.DiscardUnknown(m) +} + +var xxx_messageInfo_ResponseGenerateFraudProof proto.InternalMessageInfo + +func (m *ResponseGenerateFraudProof) GetFraudProof() *FraudProof { + if m != nil { + return m.FraudProof + } + return nil +} + +type ResponseTriggerFraudProofGenerationMode struct { + Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"` +} + +func (m *ResponseTriggerFraudProofGenerationMode) Reset() { + *m = ResponseTriggerFraudProofGenerationMode{} +} +func (m *ResponseTriggerFraudProofGenerationMode) String() string { return proto.CompactTextString(m) } +func (*ResponseTriggerFraudProofGenerationMode) ProtoMessage() {} +func (*ResponseTriggerFraudProofGenerationMode) Descriptor() ([]byte, []int) { + return fileDescriptor_252557cfdd89a31a, []int{38} +} +func (m *ResponseTriggerFraudProofGenerationMode) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *ResponseTriggerFraudProofGenerationMode) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_ResponseTriggerFraudProofGenerationMode.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *ResponseTriggerFraudProofGenerationMode) XXX_Merge(src proto.Message) { + xxx_messageInfo_ResponseTriggerFraudProofGenerationMode.Merge(m, src) +} +func (m *ResponseTriggerFraudProofGenerationMode) XXX_Size() int { + return m.Size() +} +func (m *ResponseTriggerFraudProofGenerationMode) XXX_DiscardUnknown() { + xxx_messageInfo_ResponseTriggerFraudProofGenerationMode.DiscardUnknown(m) +} + +var xxx_messageInfo_ResponseTriggerFraudProofGenerationMode proto.InternalMessageInfo + +func (m *ResponseTriggerFraudProofGenerationMode) GetSuccess() bool { + if m != nil { + return m.Success + } + return false +} + // ConsensusParams contains all consensus-relevant parameters // that can be adjusted by the abci app type ConsensusParams struct { @@ -2502,7 +2827,7 @@ func (m *ConsensusParams) Reset() { *m = ConsensusParams{} } func (m *ConsensusParams) String() string { return proto.CompactTextString(m) } func (*ConsensusParams) ProtoMessage() {} func (*ConsensusParams) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{33} + return fileDescriptor_252557cfdd89a31a, []int{39} } func (m *ConsensusParams) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2571,7 +2896,7 @@ func (m *BlockParams) Reset() { *m = BlockParams{} } func (m *BlockParams) String() string { return proto.CompactTextString(m) } func (*BlockParams) ProtoMessage() {} func (*BlockParams) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{34} + return fileDescriptor_252557cfdd89a31a, []int{40} } func (m *BlockParams) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2623,7 +2948,7 @@ func (m *LastCommitInfo) Reset() { *m = LastCommitInfo{} } func (m *LastCommitInfo) String() string { return proto.CompactTextString(m) } func (*LastCommitInfo) ProtoMessage() {} func (*LastCommitInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{35} + return fileDescriptor_252557cfdd89a31a, []int{41} } func (m *LastCommitInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2678,7 +3003,7 @@ func (m *Event) Reset() { *m = Event{} } func (m *Event) String() string { return proto.CompactTextString(m) } func (*Event) ProtoMessage() {} func (*Event) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{36} + return fileDescriptor_252557cfdd89a31a, []int{42} } func (m *Event) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2732,7 +3057,7 @@ func (m *EventAttribute) Reset() { *m = EventAttribute{} } func (m *EventAttribute) String() string { return proto.CompactTextString(m) } func (*EventAttribute) ProtoMessage() {} func (*EventAttribute) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{37} + return fileDescriptor_252557cfdd89a31a, []int{43} } func (m *EventAttribute) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2796,7 +3121,7 @@ func (m *TxResult) Reset() { *m = TxResult{} } func (m *TxResult) String() string { return proto.CompactTextString(m) } func (*TxResult) ProtoMessage() {} func (*TxResult) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{38} + return fileDescriptor_252557cfdd89a31a, []int{44} } func (m *TxResult) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2864,7 +3189,7 @@ func (m *Validator) Reset() { *m = Validator{} } func (m *Validator) String() string { return proto.CompactTextString(m) } func (*Validator) ProtoMessage() {} func (*Validator) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{39} + return fileDescriptor_252557cfdd89a31a, []int{45} } func (m *Validator) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2917,7 +3242,7 @@ func (m *ValidatorUpdate) Reset() { *m = ValidatorUpdate{} } func (m *ValidatorUpdate) String() string { return proto.CompactTextString(m) } func (*ValidatorUpdate) ProtoMessage() {} func (*ValidatorUpdate) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{40} + return fileDescriptor_252557cfdd89a31a, []int{46} } func (m *ValidatorUpdate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2970,7 +3295,7 @@ func (m *VoteInfo) Reset() { *m = VoteInfo{} } func (m *VoteInfo) String() string { return proto.CompactTextString(m) } func (*VoteInfo) ProtoMessage() {} func (*VoteInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{41} + return fileDescriptor_252557cfdd89a31a, []int{47} } func (m *VoteInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3031,7 +3356,7 @@ func (m *Evidence) Reset() { *m = Evidence{} } func (m *Evidence) String() string { return proto.CompactTextString(m) } func (*Evidence) ProtoMessage() {} func (*Evidence) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{42} + return fileDescriptor_252557cfdd89a31a, []int{48} } func (m *Evidence) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3107,7 +3432,7 @@ func (m *Snapshot) Reset() { *m = Snapshot{} } func (m *Snapshot) String() string { return proto.CompactTextString(m) } func (*Snapshot) ProtoMessage() {} func (*Snapshot) Descriptor() ([]byte, []int) { - return fileDescriptor_252557cfdd89a31a, []int{43} + return fileDescriptor_252557cfdd89a31a, []int{49} } func (m *Snapshot) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3171,36 +3496,225 @@ func (m *Snapshot) GetMetadata() []byte { return nil } -func init() { - proto.RegisterEnum("tendermint.abci.CheckTxType", CheckTxType_name, CheckTxType_value) - proto.RegisterEnum("tendermint.abci.EvidenceType", EvidenceType_name, EvidenceType_value) - proto.RegisterEnum("tendermint.abci.ResponseOfferSnapshot_Result", ResponseOfferSnapshot_Result_name, ResponseOfferSnapshot_Result_value) - proto.RegisterEnum("tendermint.abci.ResponseApplySnapshotChunk_Result", ResponseApplySnapshotChunk_Result_name, ResponseApplySnapshotChunk_Result_value) - proto.RegisterType((*Request)(nil), "tendermint.abci.Request") - proto.RegisterType((*RequestEcho)(nil), "tendermint.abci.RequestEcho") - proto.RegisterType((*RequestFlush)(nil), "tendermint.abci.RequestFlush") - proto.RegisterType((*RequestInfo)(nil), "tendermint.abci.RequestInfo") - proto.RegisterType((*RequestSetOption)(nil), "tendermint.abci.RequestSetOption") - proto.RegisterType((*RequestInitChain)(nil), "tendermint.abci.RequestInitChain") - proto.RegisterType((*RequestQuery)(nil), "tendermint.abci.RequestQuery") - proto.RegisterType((*RequestBeginBlock)(nil), "tendermint.abci.RequestBeginBlock") - proto.RegisterType((*RequestCheckTx)(nil), "tendermint.abci.RequestCheckTx") - proto.RegisterType((*RequestDeliverTx)(nil), "tendermint.abci.RequestDeliverTx") - proto.RegisterType((*RequestEndBlock)(nil), "tendermint.abci.RequestEndBlock") - proto.RegisterType((*RequestCommit)(nil), "tendermint.abci.RequestCommit") - proto.RegisterType((*RequestListSnapshots)(nil), "tendermint.abci.RequestListSnapshots") - proto.RegisterType((*RequestOfferSnapshot)(nil), "tendermint.abci.RequestOfferSnapshot") - proto.RegisterType((*RequestLoadSnapshotChunk)(nil), "tendermint.abci.RequestLoadSnapshotChunk") - proto.RegisterType((*RequestApplySnapshotChunk)(nil), "tendermint.abci.RequestApplySnapshotChunk") - proto.RegisterType((*Response)(nil), "tendermint.abci.Response") - proto.RegisterType((*ResponseException)(nil), "tendermint.abci.ResponseException") - proto.RegisterType((*ResponseEcho)(nil), "tendermint.abci.ResponseEcho") - proto.RegisterType((*ResponseFlush)(nil), "tendermint.abci.ResponseFlush") - proto.RegisterType((*ResponseInfo)(nil), "tendermint.abci.ResponseInfo") - proto.RegisterType((*ResponseSetOption)(nil), "tendermint.abci.ResponseSetOption") - proto.RegisterType((*ResponseInitChain)(nil), "tendermint.abci.ResponseInitChain") - proto.RegisterType((*ResponseQuery)(nil), "tendermint.abci.ResponseQuery") - proto.RegisterType((*ResponseBeginBlock)(nil), "tendermint.abci.ResponseBeginBlock") +// Represents a single-round fraudProof +type FraudProof struct { + BlockHeight int64 `protobuf:"varint,1,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"` + AppHash []byte `protobuf:"bytes,2,opt,name=appHash,proto3" json:"appHash,omitempty"` + StateWitness map[string]*StateWitness `protobuf:"bytes,3,rep,name=stateWitness,proto3" json:"stateWitness,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` +} + +func (m *FraudProof) Reset() { *m = FraudProof{} } +func (m *FraudProof) String() string { return proto.CompactTextString(m) } +func (*FraudProof) ProtoMessage() {} +func (*FraudProof) Descriptor() ([]byte, []int) { + return fileDescriptor_252557cfdd89a31a, []int{50} +} +func (m *FraudProof) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *FraudProof) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_FraudProof.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *FraudProof) XXX_Merge(src proto.Message) { + xxx_messageInfo_FraudProof.Merge(m, src) +} +func (m *FraudProof) XXX_Size() int { + return m.Size() +} +func (m *FraudProof) XXX_DiscardUnknown() { + xxx_messageInfo_FraudProof.DiscardUnknown(m) +} + +var xxx_messageInfo_FraudProof proto.InternalMessageInfo + +func (m *FraudProof) GetBlockHeight() int64 { + if m != nil { + return m.BlockHeight + } + return 0 +} + +func (m *FraudProof) GetAppHash() []byte { + if m != nil { + return m.AppHash + } + return nil +} + +func (m *FraudProof) GetStateWitness() map[string]*StateWitness { + if m != nil { + return m.StateWitness + } + return nil +} + +// State witness with a list of all witness data +type StateWitness struct { + // store level proof + ProofOp *crypto.ProofOp `protobuf:"bytes,1,opt,name=proof_op,json=proofOp,proto3" json:"proof_op,omitempty"` + // substore level hash + RootHash []byte `protobuf:"bytes,2,opt,name=rootHash,proto3" json:"rootHash,omitempty"` + // List of witness data + WitnessData []*WitnessData `protobuf:"bytes,3,rep,name=witnessData,proto3" json:"witnessData,omitempty"` +} + +func (m *StateWitness) Reset() { *m = StateWitness{} } +func (m *StateWitness) String() string { return proto.CompactTextString(m) } +func (*StateWitness) ProtoMessage() {} +func (*StateWitness) Descriptor() ([]byte, []int) { + return fileDescriptor_252557cfdd89a31a, []int{51} +} +func (m *StateWitness) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *StateWitness) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_StateWitness.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *StateWitness) XXX_Merge(src proto.Message) { + xxx_messageInfo_StateWitness.Merge(m, src) +} +func (m *StateWitness) XXX_Size() int { + return m.Size() +} +func (m *StateWitness) XXX_DiscardUnknown() { + xxx_messageInfo_StateWitness.DiscardUnknown(m) +} + +var xxx_messageInfo_StateWitness proto.InternalMessageInfo + +func (m *StateWitness) GetProofOp() *crypto.ProofOp { + if m != nil { + return m.ProofOp + } + return nil +} + +func (m *StateWitness) GetRootHash() []byte { + if m != nil { + return m.RootHash + } + return nil +} + +func (m *StateWitness) GetWitnessData() []*WitnessData { + if m != nil { + return m.WitnessData + } + return nil +} + +// Witness data containing a key/value pair and a SMT proof for said key/value pair +type WitnessData struct { + Key []byte `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` + Value []byte `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` + Proof *crypto.ProofOp `protobuf:"bytes,3,opt,name=proof,proto3" json:"proof,omitempty"` +} + +func (m *WitnessData) Reset() { *m = WitnessData{} } +func (m *WitnessData) String() string { return proto.CompactTextString(m) } +func (*WitnessData) ProtoMessage() {} +func (*WitnessData) Descriptor() ([]byte, []int) { + return fileDescriptor_252557cfdd89a31a, []int{52} +} +func (m *WitnessData) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *WitnessData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_WitnessData.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *WitnessData) XXX_Merge(src proto.Message) { + xxx_messageInfo_WitnessData.Merge(m, src) +} +func (m *WitnessData) XXX_Size() int { + return m.Size() +} +func (m *WitnessData) XXX_DiscardUnknown() { + xxx_messageInfo_WitnessData.DiscardUnknown(m) +} + +var xxx_messageInfo_WitnessData proto.InternalMessageInfo + +func (m *WitnessData) GetKey() []byte { + if m != nil { + return m.Key + } + return nil +} + +func (m *WitnessData) GetValue() []byte { + if m != nil { + return m.Value + } + return nil +} + +func (m *WitnessData) GetProof() *crypto.ProofOp { + if m != nil { + return m.Proof + } + return nil +} + +func init() { + proto.RegisterEnum("tendermint.abci.CheckTxType", CheckTxType_name, CheckTxType_value) + proto.RegisterEnum("tendermint.abci.EvidenceType", EvidenceType_name, EvidenceType_value) + proto.RegisterEnum("tendermint.abci.ResponseOfferSnapshot_Result", ResponseOfferSnapshot_Result_name, ResponseOfferSnapshot_Result_value) + proto.RegisterEnum("tendermint.abci.ResponseApplySnapshotChunk_Result", ResponseApplySnapshotChunk_Result_name, ResponseApplySnapshotChunk_Result_value) + proto.RegisterType((*Request)(nil), "tendermint.abci.Request") + proto.RegisterType((*RequestEcho)(nil), "tendermint.abci.RequestEcho") + proto.RegisterType((*RequestFlush)(nil), "tendermint.abci.RequestFlush") + proto.RegisterType((*RequestInfo)(nil), "tendermint.abci.RequestInfo") + proto.RegisterType((*RequestSetOption)(nil), "tendermint.abci.RequestSetOption") + proto.RegisterType((*RequestInitChain)(nil), "tendermint.abci.RequestInitChain") + proto.RegisterType((*RequestQuery)(nil), "tendermint.abci.RequestQuery") + proto.RegisterType((*RequestBeginBlock)(nil), "tendermint.abci.RequestBeginBlock") + proto.RegisterType((*RequestCheckTx)(nil), "tendermint.abci.RequestCheckTx") + proto.RegisterType((*RequestDeliverTx)(nil), "tendermint.abci.RequestDeliverTx") + proto.RegisterType((*RequestEndBlock)(nil), "tendermint.abci.RequestEndBlock") + proto.RegisterType((*RequestCommit)(nil), "tendermint.abci.RequestCommit") + proto.RegisterType((*RequestListSnapshots)(nil), "tendermint.abci.RequestListSnapshots") + proto.RegisterType((*RequestOfferSnapshot)(nil), "tendermint.abci.RequestOfferSnapshot") + proto.RegisterType((*RequestLoadSnapshotChunk)(nil), "tendermint.abci.RequestLoadSnapshotChunk") + proto.RegisterType((*RequestApplySnapshotChunk)(nil), "tendermint.abci.RequestApplySnapshotChunk") + proto.RegisterType((*RequestGetAppHash)(nil), "tendermint.abci.RequestGetAppHash") + proto.RegisterType((*RequestGenerateFraudProof)(nil), "tendermint.abci.RequestGenerateFraudProof") + proto.RegisterType((*RequestTriggerFraudProofGenerationMode)(nil), "tendermint.abci.RequestTriggerFraudProofGenerationMode") + proto.RegisterType((*Response)(nil), "tendermint.abci.Response") + proto.RegisterType((*ResponseException)(nil), "tendermint.abci.ResponseException") + proto.RegisterType((*ResponseEcho)(nil), "tendermint.abci.ResponseEcho") + proto.RegisterType((*ResponseFlush)(nil), "tendermint.abci.ResponseFlush") + proto.RegisterType((*ResponseInfo)(nil), "tendermint.abci.ResponseInfo") + proto.RegisterType((*ResponseSetOption)(nil), "tendermint.abci.ResponseSetOption") + proto.RegisterType((*ResponseInitChain)(nil), "tendermint.abci.ResponseInitChain") + proto.RegisterType((*ResponseQuery)(nil), "tendermint.abci.ResponseQuery") + proto.RegisterType((*ResponseBeginBlock)(nil), "tendermint.abci.ResponseBeginBlock") proto.RegisterType((*ResponseCheckTx)(nil), "tendermint.abci.ResponseCheckTx") proto.RegisterType((*ResponseDeliverTx)(nil), "tendermint.abci.ResponseDeliverTx") proto.RegisterType((*ResponseEndBlock)(nil), "tendermint.abci.ResponseEndBlock") @@ -3209,6 +3723,9 @@ func init() { proto.RegisterType((*ResponseOfferSnapshot)(nil), "tendermint.abci.ResponseOfferSnapshot") proto.RegisterType((*ResponseLoadSnapshotChunk)(nil), "tendermint.abci.ResponseLoadSnapshotChunk") proto.RegisterType((*ResponseApplySnapshotChunk)(nil), "tendermint.abci.ResponseApplySnapshotChunk") + proto.RegisterType((*ResponseGetAppHash)(nil), "tendermint.abci.ResponseGetAppHash") + proto.RegisterType((*ResponseGenerateFraudProof)(nil), "tendermint.abci.ResponseGenerateFraudProof") + proto.RegisterType((*ResponseTriggerFraudProofGenerationMode)(nil), "tendermint.abci.ResponseTriggerFraudProofGenerationMode") proto.RegisterType((*ConsensusParams)(nil), "tendermint.abci.ConsensusParams") proto.RegisterType((*BlockParams)(nil), "tendermint.abci.BlockParams") proto.RegisterType((*LastCommitInfo)(nil), "tendermint.abci.LastCommitInfo") @@ -3220,186 +3737,216 @@ func init() { proto.RegisterType((*VoteInfo)(nil), "tendermint.abci.VoteInfo") proto.RegisterType((*Evidence)(nil), "tendermint.abci.Evidence") proto.RegisterType((*Snapshot)(nil), "tendermint.abci.Snapshot") + proto.RegisterType((*FraudProof)(nil), "tendermint.abci.FraudProof") + proto.RegisterMapType((map[string]*StateWitness)(nil), "tendermint.abci.FraudProof.StateWitnessEntry") + proto.RegisterType((*StateWitness)(nil), "tendermint.abci.StateWitness") + proto.RegisterType((*WitnessData)(nil), "tendermint.abci.WitnessData") } func init() { proto.RegisterFile("tendermint/abci/types.proto", fileDescriptor_252557cfdd89a31a) } var fileDescriptor_252557cfdd89a31a = []byte{ - // 2782 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x5a, 0x4b, 0x77, 0x23, 0xc5, - 0xf5, 0xd7, 0x5b, 0xea, 0x2b, 0xeb, 0xe1, 0x1a, 0x33, 0x08, 0x31, 0xd8, 0x43, 0x73, 0xe0, 0x0f, - 0x03, 0xd8, 0x7f, 0xcc, 0x81, 0x40, 0x20, 0x01, 0x4b, 0x68, 0x90, 0xb1, 0xb1, 0x9c, 0xb6, 0x66, - 0xc8, 0x8b, 0x69, 0x5a, 0xea, 0xb2, 0xd4, 0x8c, 0xd4, 0xdd, 0x74, 0x97, 0x8c, 0xc5, 0x32, 0x8f, - 0x0d, 0xd9, 0x90, 0x5d, 0x36, 0x7c, 0x8f, 0xac, 0xb2, 0xc9, 0x86, 0x73, 0xb2, 0x61, 0x99, 0x45, - 0x0e, 0xc9, 0x99, 0x39, 0xd9, 0xe4, 0x0b, 0x64, 0x95, 0x93, 0x9c, 0x7a, 0xf4, 0x4b, 0x52, 0x4b, - 0x32, 0x64, 0x97, 0x5d, 0xd5, 0xed, 0x7b, 0x6f, 0xab, 0xaa, 0xeb, 0xfe, 0xee, 0xef, 0xde, 0x12, - 0x3c, 0x4e, 0xb0, 0xa9, 0x63, 0x67, 0x6c, 0x98, 0x64, 0x4f, 0xeb, 0xf5, 0x8d, 0x3d, 0x32, 0xb5, - 0xb1, 0xbb, 0x6b, 0x3b, 0x16, 0xb1, 0x50, 0x25, 0x78, 0xb8, 0x4b, 0x1f, 0xd6, 0x9f, 0x08, 0x69, - 0xf7, 0x9d, 0xa9, 0x4d, 0xac, 0x3d, 0xdb, 0xb1, 0xac, 0x73, 0xae, 0x5f, 0xbf, 0x11, 0x7a, 0xcc, - 0xfc, 0x84, 0xbd, 0x45, 0x9e, 0x0a, 0xe3, 0xfb, 0x78, 0xea, 0x3d, 0x7d, 0x62, 0xce, 0xd6, 0xd6, - 0x1c, 0x6d, 0xec, 0x3d, 0xde, 0x19, 0x58, 0xd6, 0x60, 0x84, 0xf7, 0xd8, 0xac, 0x37, 0x39, 0xdf, - 0x23, 0xc6, 0x18, 0xbb, 0x44, 0x1b, 0xdb, 0x42, 0x61, 0x6b, 0x60, 0x0d, 0x2c, 0x36, 0xdc, 0xa3, - 0x23, 0x2e, 0x95, 0x7f, 0x5b, 0x80, 0xbc, 0x82, 0x3f, 0x99, 0x60, 0x97, 0xa0, 0x7d, 0xc8, 0xe0, - 0xfe, 0xd0, 0xaa, 0x25, 0x6f, 0x26, 0x9f, 0x2d, 0xee, 0xdf, 0xd8, 0x9d, 0x59, 0xdc, 0xae, 0xd0, - 0x6b, 0xf5, 0x87, 0x56, 0x3b, 0xa1, 0x30, 0x5d, 0xf4, 0x0a, 0x64, 0xcf, 0x47, 0x13, 0x77, 0x58, - 0x4b, 0x31, 0xa3, 0x27, 0xe2, 0x8c, 0x6e, 0x53, 0xa5, 0x76, 0x42, 0xe1, 0xda, 0xf4, 0x55, 0x86, - 0x79, 0x6e, 0xd5, 0xd2, 0xcb, 0x5f, 0x75, 0x68, 0x9e, 0xb3, 0x57, 0x51, 0x5d, 0xd4, 0x00, 0x70, - 0x31, 0x51, 0x2d, 0x9b, 0x18, 0x96, 0x59, 0xcb, 0x30, 0xcb, 0x27, 0xe3, 0x2c, 0xcf, 0x30, 0xe9, - 0x30, 0xc5, 0x76, 0x42, 0x91, 0x5c, 0x6f, 0x42, 0x7d, 0x18, 0xa6, 0x41, 0xd4, 0xfe, 0x50, 0x33, - 0xcc, 0x5a, 0x76, 0xb9, 0x8f, 0x43, 0xd3, 0x20, 0x4d, 0xaa, 0x48, 0x7d, 0x18, 0xde, 0x84, 0x2e, - 0xf9, 0x93, 0x09, 0x76, 0xa6, 0xb5, 0xdc, 0xf2, 0x25, 0xff, 0x88, 0x2a, 0xd1, 0x25, 0x33, 0x6d, - 0xd4, 0x82, 0x62, 0x0f, 0x0f, 0x0c, 0x53, 0xed, 0x8d, 0xac, 0xfe, 0xfd, 0x5a, 0x9e, 0x19, 0xcb, - 0x71, 0xc6, 0x0d, 0xaa, 0xda, 0xa0, 0x9a, 0xed, 0x84, 0x02, 0x3d, 0x7f, 0x86, 0xde, 0x84, 0x42, - 0x7f, 0x88, 0xfb, 0xf7, 0x55, 0x72, 0x59, 0x2b, 0x30, 0x1f, 0x3b, 0x71, 0x3e, 0x9a, 0x54, 0xaf, - 0x7b, 0xd9, 0x4e, 0x28, 0xf9, 0x3e, 0x1f, 0xd2, 0xf5, 0xeb, 0x78, 0x64, 0x5c, 0x60, 0x87, 0xda, - 0x4b, 0xcb, 0xd7, 0xff, 0x0e, 0xd7, 0x64, 0x1e, 0x24, 0xdd, 0x9b, 0xa0, 0xb7, 0x40, 0xc2, 0xa6, - 0x2e, 0x96, 0x01, 0xcc, 0xc5, 0xcd, 0xd8, 0xb3, 0x62, 0xea, 0xde, 0x22, 0x0a, 0x58, 0x8c, 0xd1, - 0x6b, 0x90, 0xeb, 0x5b, 0xe3, 0xb1, 0x41, 0x6a, 0x45, 0x66, 0xbd, 0x1d, 0xbb, 0x00, 0xa6, 0xd5, - 0x4e, 0x28, 0x42, 0x1f, 0x9d, 0x40, 0x79, 0x64, 0xb8, 0x44, 0x75, 0x4d, 0xcd, 0x76, 0x87, 0x16, - 0x71, 0x6b, 0x1b, 0xcc, 0xc3, 0xd3, 0x71, 0x1e, 0x8e, 0x0d, 0x97, 0x9c, 0x79, 0xca, 0xed, 0x84, - 0x52, 0x1a, 0x85, 0x05, 0xd4, 0x9f, 0x75, 0x7e, 0x8e, 0x1d, 0xdf, 0x61, 0xad, 0xb4, 0xdc, 0x5f, - 0x87, 0x6a, 0x7b, 0xf6, 0xd4, 0x9f, 0x15, 0x16, 0xa0, 0x9f, 0xc1, 0xb5, 0x91, 0xa5, 0xe9, 0xbe, - 0x3b, 0xb5, 0x3f, 0x9c, 0x98, 0xf7, 0x6b, 0x65, 0xe6, 0xf4, 0xb9, 0xd8, 0x1f, 0x69, 0x69, 0xba, - 0xe7, 0xa2, 0x49, 0x0d, 0xda, 0x09, 0x65, 0x73, 0x34, 0x2b, 0x44, 0xf7, 0x60, 0x4b, 0xb3, 0xed, - 0xd1, 0x74, 0xd6, 0x7b, 0x85, 0x79, 0xbf, 0x15, 0xe7, 0xfd, 0x80, 0xda, 0xcc, 0xba, 0x47, 0xda, - 0x9c, 0xb4, 0x91, 0x87, 0xec, 0x85, 0x36, 0x9a, 0x60, 0xf9, 0xff, 0xa0, 0x18, 0x0a, 0x75, 0x54, - 0x83, 0xfc, 0x18, 0xbb, 0xae, 0x36, 0xc0, 0x0c, 0x19, 0x24, 0xc5, 0x9b, 0xca, 0x65, 0xd8, 0x08, - 0x87, 0xb7, 0x3c, 0xf6, 0x0d, 0x69, 0xe0, 0x52, 0xc3, 0x0b, 0xec, 0xb8, 0x34, 0x5a, 0x85, 0xa1, - 0x98, 0xa2, 0xa7, 0xa0, 0xc4, 0x8e, 0x8f, 0xea, 0x3d, 0xa7, 0xe8, 0x91, 0x51, 0x36, 0x98, 0xf0, - 0xae, 0x50, 0xda, 0x81, 0xa2, 0xbd, 0x6f, 0xfb, 0x2a, 0x69, 0xa6, 0x02, 0xf6, 0xbe, 0x2d, 0x14, - 0xe4, 0xef, 0x43, 0x75, 0x36, 0xda, 0x51, 0x15, 0xd2, 0xf7, 0xf1, 0x54, 0xbc, 0x8f, 0x0e, 0xd1, - 0x96, 0x58, 0x16, 0x7b, 0x87, 0xa4, 0x88, 0x35, 0xfe, 0x29, 0xe5, 0x1b, 0xfb, 0x61, 0x8e, 0x5e, - 0x83, 0x0c, 0x45, 0x4d, 0x01, 0x80, 0xf5, 0x5d, 0x0e, 0xa9, 0xbb, 0x1e, 0xa4, 0xee, 0x76, 0x3d, - 0x48, 0x6d, 0x14, 0xbe, 0xfa, 0x66, 0x27, 0xf1, 0xc5, 0x5f, 0x77, 0x92, 0x0a, 0xb3, 0x40, 0x8f, - 0xd1, 0xa8, 0xd4, 0x0c, 0x53, 0x35, 0x74, 0xf1, 0x9e, 0x3c, 0x9b, 0x1f, 0xea, 0xe8, 0x08, 0xaa, - 0x7d, 0xcb, 0x74, 0xb1, 0xe9, 0x4e, 0x5c, 0x95, 0x43, 0xb6, 0x80, 0xbd, 0xf9, 0xa8, 0x69, 0x7a, - 0x8a, 0xa7, 0x4c, 0x4f, 0xa9, 0xf4, 0xa3, 0x02, 0x74, 0x1b, 0xe0, 0x42, 0x1b, 0x19, 0xba, 0x46, - 0x2c, 0xc7, 0xad, 0x65, 0x6e, 0xa6, 0x17, 0xba, 0xb9, 0xeb, 0xa9, 0xdc, 0xb1, 0x75, 0x8d, 0xe0, - 0x46, 0x86, 0xfe, 0x5a, 0x25, 0x64, 0x89, 0x9e, 0x81, 0x8a, 0x66, 0xdb, 0xaa, 0x4b, 0x34, 0x82, - 0xd5, 0xde, 0x94, 0x60, 0x97, 0x81, 0xe1, 0x86, 0x52, 0xd2, 0x6c, 0xfb, 0x8c, 0x4a, 0x1b, 0x54, - 0x88, 0x9e, 0x86, 0x32, 0x05, 0x3e, 0x43, 0x1b, 0xa9, 0x43, 0x6c, 0x0c, 0x86, 0x84, 0x81, 0x5e, - 0x5a, 0x29, 0x09, 0x69, 0x9b, 0x09, 0x65, 0xdd, 0x3f, 0x08, 0x0c, 0xf4, 0x10, 0x82, 0x8c, 0xae, - 0x11, 0x8d, 0x6d, 0xe4, 0x86, 0xc2, 0xc6, 0x54, 0x66, 0x6b, 0x64, 0x28, 0xb6, 0x87, 0x8d, 0xd1, - 0x75, 0xc8, 0x09, 0xb7, 0x69, 0xe6, 0x56, 0xcc, 0xe8, 0x37, 0xb3, 0x1d, 0xeb, 0x02, 0x33, 0x94, - 0x2f, 0x28, 0x7c, 0x22, 0xff, 0x2a, 0x05, 0x9b, 0x73, 0xf0, 0x48, 0xfd, 0x0e, 0x35, 0x77, 0xe8, - 0xbd, 0x8b, 0x8e, 0xd1, 0xab, 0xd4, 0xaf, 0xa6, 0x63, 0x47, 0xa4, 0xa5, 0x5a, 0x78, 0x8b, 0x78, - 0xca, 0x6d, 0xb3, 0xe7, 0x62, 0x6b, 0x84, 0x36, 0xea, 0x40, 0x75, 0xa4, 0xb9, 0x44, 0xe5, 0x70, - 0xa3, 0x86, 0x52, 0xd4, 0x3c, 0xc8, 0x1e, 0x6b, 0x1e, 0x40, 0xd1, 0xc3, 0x2e, 0x1c, 0x95, 0x47, - 0x11, 0x29, 0x52, 0x60, 0xab, 0x37, 0xfd, 0x4c, 0x33, 0x89, 0x61, 0x62, 0x75, 0xee, 0xcb, 0x3d, - 0x36, 0xe7, 0xb4, 0x75, 0x61, 0xe8, 0xd8, 0xec, 0x7b, 0x9f, 0xec, 0x9a, 0x6f, 0xec, 0x7f, 0x52, - 0x57, 0x56, 0xa0, 0x1c, 0x05, 0x78, 0x54, 0x86, 0x14, 0xb9, 0x14, 0x1b, 0x90, 0x22, 0x97, 0xe8, - 0xff, 0x21, 0x43, 0x17, 0xc9, 0x16, 0x5f, 0x5e, 0x90, 0x5d, 0x85, 0x5d, 0x77, 0x6a, 0x63, 0x85, - 0x69, 0xca, 0xb2, 0x1f, 0x0d, 0x3e, 0xe8, 0xcf, 0x7a, 0x95, 0x9f, 0x83, 0xca, 0x0c, 0xaa, 0x87, - 0xbe, 0x5f, 0x32, 0xfc, 0xfd, 0xe4, 0x0a, 0x94, 0x22, 0x10, 0x2e, 0x5f, 0x87, 0xad, 0x45, 0x88, - 0x2c, 0x0f, 0x7d, 0x79, 0x04, 0x59, 0xd1, 0x2b, 0x50, 0xf0, 0x21, 0x99, 0x47, 0xe3, 0xfc, 0x5e, - 0x79, 0xca, 0x8a, 0xaf, 0x4a, 0xc3, 0x90, 0x1e, 0x6b, 0x76, 0x1e, 0x52, 0xec, 0x87, 0xe7, 0x35, - 0xdb, 0x6e, 0x6b, 0xee, 0x50, 0xfe, 0x08, 0x6a, 0x71, 0x70, 0x3b, 0xb3, 0x8c, 0x8c, 0x7f, 0x0c, - 0xaf, 0x43, 0xee, 0xdc, 0x72, 0xc6, 0x1a, 0x61, 0xce, 0x4a, 0x8a, 0x98, 0xd1, 0xe3, 0xc9, 0xa1, - 0x37, 0xcd, 0xc4, 0x7c, 0x22, 0xab, 0xf0, 0x58, 0x2c, 0xe4, 0x52, 0x13, 0xc3, 0xd4, 0x31, 0xdf, - 0xcf, 0x92, 0xc2, 0x27, 0x81, 0x23, 0xfe, 0x63, 0xf9, 0x84, 0xbe, 0xd6, 0x65, 0x6b, 0x65, 0xfe, - 0x25, 0x45, 0xcc, 0xe4, 0xbf, 0x17, 0xa0, 0xa0, 0x60, 0xd7, 0xa6, 0x98, 0x80, 0x1a, 0x20, 0xe1, - 0xcb, 0x3e, 0xe6, 0x64, 0x28, 0x19, 0x4b, 0x26, 0xb8, 0x76, 0xcb, 0xd3, 0xa4, 0x99, 0xdc, 0x37, - 0x43, 0x2f, 0x0b, 0xc2, 0x17, 0xcf, 0xdd, 0x84, 0x79, 0x98, 0xf1, 0xbd, 0xea, 0x31, 0xbe, 0x74, - 0x6c, 0xf2, 0xe6, 0x56, 0x33, 0x94, 0xef, 0x65, 0x41, 0xf9, 0x32, 0x2b, 0x5e, 0x16, 0xe1, 0x7c, - 0xcd, 0x08, 0xe7, 0xcb, 0xae, 0x58, 0x66, 0x0c, 0xe9, 0x6b, 0x46, 0x48, 0x5f, 0x6e, 0x85, 0x93, - 0x18, 0xd6, 0xf7, 0xaa, 0xc7, 0xfa, 0xf2, 0x2b, 0x96, 0x3d, 0x43, 0xfb, 0x6e, 0x47, 0x69, 0x1f, - 0xa7, 0x6c, 0x4f, 0xc5, 0x5a, 0xc7, 0xf2, 0xbe, 0x1f, 0x84, 0x78, 0x9f, 0x14, 0x4b, 0xba, 0xb8, - 0x93, 0x05, 0xc4, 0xaf, 0x19, 0x21, 0x7e, 0xb0, 0x62, 0x0f, 0x62, 0x98, 0xdf, 0xdb, 0x61, 0xe6, - 0x57, 0x8c, 0x25, 0x8f, 0xe2, 0xd0, 0x2c, 0xa2, 0x7e, 0xaf, 0xfb, 0xd4, 0x6f, 0x23, 0x96, 0xbb, - 0x8a, 0x35, 0xcc, 0x72, 0xbf, 0xce, 0x1c, 0xf7, 0xe3, 0x5c, 0xed, 0x99, 0x58, 0x17, 0x2b, 0xc8, - 0x5f, 0x67, 0x8e, 0xfc, 0x95, 0x57, 0x38, 0x5c, 0xc1, 0xfe, 0x7e, 0xbe, 0x98, 0xfd, 0xc5, 0xf3, - 0x33, 0xf1, 0x33, 0xd7, 0xa3, 0x7f, 0x6a, 0x0c, 0xfd, 0xab, 0x32, 0xf7, 0xcf, 0xc7, 0xba, 0xbf, - 0x3a, 0xff, 0x7b, 0x8e, 0xa6, 0xd9, 0x19, 0xe0, 0xa0, 0x50, 0x85, 0x1d, 0xc7, 0x72, 0x04, 0xb5, - 0xe2, 0x13, 0xf9, 0x59, 0x9a, 0xf8, 0x03, 0x90, 0x58, 0xc2, 0x15, 0x59, 0x4a, 0x08, 0x01, 0x83, - 0xfc, 0xfb, 0x64, 0x60, 0xcb, 0x72, 0x65, 0x98, 0x34, 0x48, 0x82, 0x34, 0x84, 0x28, 0x64, 0x2a, - 0x4a, 0x21, 0x77, 0xa0, 0x48, 0xa1, 0x7e, 0x86, 0x1d, 0x6a, 0xb6, 0xc7, 0x0e, 0xd1, 0x2d, 0xd8, - 0x64, 0xb9, 0x9c, 0x13, 0x4d, 0x81, 0xef, 0x19, 0x96, 0xa6, 0x2a, 0xf4, 0x01, 0x3f, 0x9c, 0x1c, - 0xe8, 0x5f, 0x84, 0x6b, 0x21, 0x5d, 0x3f, 0x85, 0x70, 0x4a, 0x54, 0xf5, 0xb5, 0x0f, 0x44, 0x2e, - 0x79, 0x3f, 0xd8, 0xa0, 0x80, 0x79, 0x22, 0xc8, 0xf4, 0x2d, 0x1d, 0x0b, 0x80, 0x67, 0x63, 0xca, - 0x46, 0x47, 0xd6, 0x40, 0xc0, 0x38, 0x1d, 0x52, 0x2d, 0x1f, 0x05, 0x25, 0x0e, 0x72, 0xf2, 0x1f, - 0x93, 0x81, 0xbf, 0x80, 0x8c, 0x2e, 0xe2, 0x8d, 0xc9, 0xff, 0x0e, 0x6f, 0x4c, 0x7d, 0x6b, 0xde, - 0x18, 0x4e, 0xb0, 0xe9, 0x68, 0x82, 0xfd, 0x67, 0x32, 0xf8, 0xc2, 0x3e, 0x0b, 0xfc, 0x76, 0x3b, - 0x12, 0x64, 0xcb, 0x2c, 0xfb, 0x5e, 0x22, 0x5b, 0x0a, 0x6e, 0x9f, 0x63, 0xef, 0x8d, 0x72, 0xfb, - 0x3c, 0xcf, 0x9f, 0x6c, 0x82, 0x5e, 0x03, 0x89, 0x35, 0x5d, 0x54, 0xcb, 0x76, 0x05, 0xe0, 0x3e, - 0x1e, 0x5e, 0x2b, 0xef, 0xad, 0xec, 0x9e, 0x52, 0x9d, 0x8e, 0xed, 0x2a, 0x05, 0x5b, 0x8c, 0x42, - 0x44, 0x40, 0x8a, 0xf0, 0xd1, 0x1b, 0x20, 0xd1, 0x5f, 0xef, 0xda, 0x5a, 0x1f, 0x33, 0xf0, 0x94, - 0x94, 0x40, 0x20, 0xdf, 0x03, 0x34, 0x0f, 0xdf, 0xa8, 0x0d, 0x39, 0x7c, 0x81, 0x4d, 0x42, 0xbf, - 0x1a, 0xdd, 0xee, 0xeb, 0x0b, 0xc8, 0x1e, 0x36, 0x49, 0xa3, 0x46, 0x37, 0xf9, 0x1f, 0xdf, 0xec, - 0x54, 0xb9, 0xf6, 0x0b, 0xd6, 0xd8, 0x20, 0x78, 0x6c, 0x93, 0xa9, 0x22, 0xec, 0xe5, 0xbf, 0xa4, - 0x28, 0xf3, 0x8a, 0x40, 0xfb, 0xc2, 0xbd, 0xf5, 0x02, 0x28, 0x15, 0x62, 0xdd, 0xeb, 0xed, 0xf7, - 0x36, 0xc0, 0x40, 0x73, 0xd5, 0x4f, 0x35, 0x93, 0x60, 0x5d, 0x6c, 0x7a, 0x48, 0x82, 0xea, 0x50, - 0xa0, 0xb3, 0x89, 0x8b, 0x75, 0x51, 0x00, 0xf8, 0xf3, 0xd0, 0x3a, 0xf3, 0xdf, 0x6d, 0x9d, 0xd1, - 0x5d, 0x2e, 0xcc, 0xec, 0x72, 0x88, 0x15, 0x49, 0x61, 0x56, 0x44, 0x7f, 0x9b, 0xed, 0x18, 0x96, - 0x63, 0x90, 0x29, 0xfb, 0x34, 0x69, 0xc5, 0x9f, 0xd3, 0x3a, 0x73, 0x8c, 0xc7, 0xb6, 0x65, 0x8d, - 0x54, 0x0e, 0x5e, 0x45, 0x66, 0xba, 0x21, 0x84, 0x2d, 0x86, 0x61, 0xbf, 0x4e, 0x05, 0xe1, 0x17, - 0xb0, 0xdf, 0xff, 0xb9, 0x0d, 0x96, 0x7f, 0xc3, 0x4a, 0xe2, 0x68, 0xf2, 0x46, 0x67, 0xb0, 0xe9, - 0x87, 0xbf, 0x3a, 0x61, 0xb0, 0xe0, 0x1d, 0xe8, 0x75, 0xf1, 0xa3, 0x7a, 0x11, 0x15, 0xbb, 0xe8, - 0xc7, 0xf0, 0xe8, 0x0c, 0xb4, 0xf9, 0xae, 0x53, 0x6b, 0x22, 0xdc, 0x23, 0x51, 0x84, 0xf3, 0x3c, - 0x07, 0x7b, 0x95, 0xfe, 0x8e, 0x41, 0x77, 0x48, 0xab, 0xac, 0x30, 0x15, 0x59, 0xf8, 0xf5, 0x9f, - 0x82, 0x92, 0x83, 0x09, 0x2d, 0xfc, 0x23, 0x75, 0xec, 0x06, 0x17, 0x8a, 0xea, 0xf8, 0x14, 0x1e, - 0x59, 0x48, 0x49, 0xd0, 0xf7, 0x40, 0x0a, 0xd8, 0x4c, 0x32, 0xa6, 0x24, 0xf4, 0xcb, 0x9c, 0x40, - 0x57, 0xfe, 0x43, 0x32, 0x70, 0x19, 0x2d, 0x9c, 0x5a, 0x90, 0x73, 0xb0, 0x3b, 0x19, 0xf1, 0x52, - 0xa6, 0xbc, 0xff, 0xe2, 0x7a, 0x64, 0x86, 0x4a, 0x27, 0x23, 0xa2, 0x08, 0x63, 0xf9, 0x1e, 0xe4, - 0xb8, 0x04, 0x15, 0x21, 0x7f, 0xe7, 0xe4, 0xe8, 0xa4, 0xf3, 0xc1, 0x49, 0x35, 0x81, 0x00, 0x72, - 0x07, 0xcd, 0x66, 0xeb, 0xb4, 0x5b, 0x4d, 0x22, 0x09, 0xb2, 0x07, 0x8d, 0x8e, 0xd2, 0xad, 0xa6, - 0xa8, 0x58, 0x69, 0xbd, 0xd7, 0x6a, 0x76, 0xab, 0x69, 0xb4, 0x09, 0x25, 0x3e, 0x56, 0x6f, 0x77, - 0x94, 0xf7, 0x0f, 0xba, 0xd5, 0x4c, 0x48, 0x74, 0xd6, 0x3a, 0x79, 0xa7, 0xa5, 0x54, 0xb3, 0xf2, - 0x4b, 0xb4, 0x56, 0x8a, 0xa1, 0x3f, 0x41, 0x55, 0x94, 0x0c, 0x55, 0x45, 0xf2, 0xef, 0x52, 0x50, - 0x8f, 0xe7, 0x34, 0xe8, 0xbd, 0x99, 0x85, 0xef, 0x5f, 0x81, 0x10, 0xcd, 0xac, 0x1e, 0x3d, 0x0d, - 0x65, 0x07, 0x9f, 0x63, 0xd2, 0x1f, 0x72, 0x8e, 0xc5, 0x33, 0x66, 0x49, 0x29, 0x09, 0x29, 0x33, - 0x72, 0xb9, 0xda, 0xc7, 0xb8, 0x4f, 0x54, 0x0e, 0x45, 0xfc, 0xd0, 0x49, 0x54, 0x8d, 0x4a, 0xcf, - 0xb8, 0x50, 0xfe, 0xe8, 0x4a, 0x7b, 0x29, 0x41, 0x56, 0x69, 0x75, 0x95, 0x9f, 0x54, 0xd3, 0x08, - 0x41, 0x99, 0x0d, 0xd5, 0xb3, 0x93, 0x83, 0xd3, 0xb3, 0x76, 0x87, 0xee, 0xe5, 0x35, 0xa8, 0x78, - 0x7b, 0xe9, 0x09, 0xb3, 0xf2, 0xbf, 0x93, 0x50, 0x99, 0x09, 0x10, 0xb4, 0x0f, 0x59, 0xce, 0xd3, - 0xe3, 0xba, 0xf9, 0x2c, 0xbe, 0x45, 0x34, 0x71, 0x55, 0xf4, 0x26, 0x14, 0xb0, 0x68, 0x40, 0x2c, - 0x0a, 0x44, 0xde, 0x38, 0xf1, 0x5a, 0x14, 0xc2, 0xd4, 0xb7, 0x40, 0x6f, 0x81, 0xe4, 0x47, 0xba, - 0x28, 0x0e, 0x9f, 0x9c, 0x37, 0xf7, 0x31, 0x42, 0xd8, 0x07, 0x36, 0xe8, 0xf5, 0x80, 0xec, 0x65, - 0xe6, 0xab, 0x03, 0x61, 0xce, 0x15, 0x84, 0xb1, 0xa7, 0x2f, 0x37, 0xa1, 0x18, 0x5a, 0x0f, 0x7a, - 0x1c, 0xa4, 0xb1, 0x76, 0x29, 0x1a, 0x5b, 0xbc, 0x35, 0x51, 0x18, 0x6b, 0x97, 0xbc, 0xa7, 0xf5, - 0x28, 0xe4, 0xe9, 0xc3, 0x81, 0xc6, 0xd1, 0x26, 0xad, 0xe4, 0xc6, 0xda, 0xe5, 0xbb, 0x9a, 0x2b, - 0x7f, 0x08, 0xe5, 0x68, 0x53, 0x87, 0x9e, 0x44, 0xc7, 0x9a, 0x98, 0x3a, 0xf3, 0x91, 0x55, 0xf8, - 0x04, 0xbd, 0x02, 0xd9, 0x0b, 0x8b, 0x83, 0xd5, 0xe2, 0x90, 0xbd, 0x6b, 0x11, 0x1c, 0x6a, 0x0a, - 0x71, 0x6d, 0xf9, 0x33, 0xc8, 0x32, 0xf0, 0xa1, 0x40, 0xc2, 0xda, 0x33, 0x82, 0xe8, 0xd2, 0x31, - 0xfa, 0x10, 0x40, 0x23, 0xc4, 0x31, 0x7a, 0x93, 0xc0, 0xf1, 0xce, 0x62, 0xf0, 0x3a, 0xf0, 0xf4, - 0x1a, 0x37, 0x04, 0x8a, 0x6d, 0x05, 0xa6, 0x21, 0x24, 0x0b, 0x39, 0x94, 0x4f, 0xa0, 0x1c, 0xb5, - 0x0d, 0x37, 0x4a, 0x37, 0x16, 0x34, 0x4a, 0x7d, 0x32, 0xe5, 0x53, 0xb1, 0x34, 0x6f, 0xc5, 0xb1, - 0x89, 0xfc, 0x79, 0x12, 0x0a, 0xdd, 0x4b, 0x71, 0xac, 0x63, 0xba, 0x40, 0x81, 0x69, 0x2a, 0xdc, - 0xf3, 0xe0, 0x6d, 0xa5, 0xb4, 0xdf, 0xac, 0x7a, 0xdb, 0x0f, 0xdc, 0xcc, 0xba, 0x55, 0xa9, 0xd7, - 0xb5, 0x13, 0x60, 0xf5, 0x06, 0x48, 0xfe, 0xa9, 0xa2, 0x15, 0x83, 0xa6, 0xeb, 0x0e, 0x76, 0x5d, - 0xb1, 0x36, 0x6f, 0xca, 0x9a, 0x8a, 0xd6, 0xa7, 0xa2, 0xab, 0x92, 0x56, 0xf8, 0x44, 0xd6, 0xa1, - 0x32, 0x93, 0xb6, 0xd0, 0x1b, 0x90, 0xb7, 0x27, 0x3d, 0xd5, 0xdb, 0x9e, 0x99, 0xe0, 0xf1, 0xd8, - 0xe3, 0xa4, 0x37, 0x32, 0xfa, 0x47, 0x78, 0xea, 0xfd, 0x18, 0x7b, 0xd2, 0x3b, 0xe2, 0xbb, 0xc8, - 0xdf, 0x92, 0x0a, 0xbf, 0xe5, 0x02, 0x0a, 0xde, 0xa1, 0x40, 0x3f, 0x0c, 0xc7, 0x89, 0xd7, 0x6a, - 0x8e, 0x4d, 0xa5, 0xc2, 0x7d, 0x28, 0x4c, 0x6e, 0xc1, 0xa6, 0x6b, 0x0c, 0x4c, 0xac, 0xab, 0x41, - 0xcd, 0xc2, 0xde, 0x56, 0x50, 0x2a, 0xfc, 0xc1, 0xb1, 0x57, 0xb0, 0xc8, 0xff, 0x4a, 0x42, 0xc1, - 0x0b, 0x58, 0xf4, 0x52, 0xe8, 0xdc, 0x95, 0x17, 0x74, 0x60, 0x3c, 0xc5, 0xa0, 0x2f, 0x18, 0xfd, - 0xad, 0xa9, 0xab, 0xff, 0xd6, 0xb8, 0x06, 0xaf, 0xd7, 0x69, 0xcf, 0x5c, 0xb9, 0xd3, 0xfe, 0x02, - 0x20, 0x62, 0x11, 0x6d, 0xa4, 0x5e, 0x58, 0xc4, 0x30, 0x07, 0x2a, 0xdf, 0x6c, 0xce, 0xa8, 0xaa, - 0xec, 0xc9, 0x5d, 0xf6, 0xe0, 0x94, 0xed, 0xfb, 0x2f, 0x92, 0x50, 0xf0, 0x73, 0xe3, 0x55, 0xdb, - 0x7c, 0xd7, 0x21, 0x27, 0xe0, 0x9f, 0xf7, 0xf9, 0xc4, 0xcc, 0xef, 0x38, 0x67, 0x42, 0x1d, 0xe7, - 0x3a, 0x14, 0xc6, 0x98, 0x68, 0x8c, 0x20, 0xf0, 0xb2, 0xd1, 0x9f, 0xdf, 0x7a, 0x1d, 0x8a, 0xa1, - 0x8e, 0x2b, 0x8d, 0xbc, 0x93, 0xd6, 0x07, 0xd5, 0x44, 0x3d, 0xff, 0xf9, 0x97, 0x37, 0xd3, 0x27, - 0xf8, 0x53, 0x7a, 0x66, 0x95, 0x56, 0xb3, 0xdd, 0x6a, 0x1e, 0x55, 0x93, 0xf5, 0xe2, 0xe7, 0x5f, - 0xde, 0xcc, 0x2b, 0x98, 0x35, 0x6e, 0x6e, 0xb5, 0x61, 0x23, 0xfc, 0x55, 0xa2, 0x19, 0x04, 0x41, - 0xf9, 0x9d, 0x3b, 0xa7, 0xc7, 0x87, 0xcd, 0x83, 0x6e, 0x4b, 0xbd, 0xdb, 0xe9, 0xb6, 0xaa, 0x49, - 0xf4, 0x28, 0x5c, 0x3b, 0x3e, 0x7c, 0xb7, 0xdd, 0x55, 0x9b, 0xc7, 0x87, 0xad, 0x93, 0xae, 0x7a, - 0xd0, 0xed, 0x1e, 0x34, 0x8f, 0xaa, 0xa9, 0xfd, 0x5f, 0x02, 0x54, 0x0e, 0x1a, 0xcd, 0x43, 0x9a, - 0xfd, 0x8c, 0xbe, 0x26, 0x1a, 0x63, 0x19, 0x56, 0xb5, 0x2f, 0xbd, 0xea, 0xad, 0x2f, 0xef, 0x0b, - 0xa2, 0xdb, 0x90, 0x65, 0x05, 0x3d, 0x5a, 0x7e, 0xf7, 0x5b, 0x5f, 0xd1, 0x28, 0xa4, 0x3f, 0x86, - 0x85, 0xc7, 0xd2, 0xcb, 0xe0, 0xfa, 0xf2, 0xbe, 0x21, 0x52, 0x40, 0x0a, 0x2a, 0xf2, 0xd5, 0x97, - 0xc3, 0xf5, 0x35, 0x7a, 0x89, 0xd4, 0x67, 0x50, 0x16, 0xac, 0xbe, 0x2c, 0xad, 0xaf, 0x01, 0x60, - 0xe8, 0x18, 0xf2, 0x5e, 0x25, 0xb7, 0xea, 0xfa, 0xb6, 0xbe, 0xb2, 0xcf, 0x47, 0x3f, 0x01, 0xaf, - 0xb8, 0x97, 0xdf, 0x45, 0xd7, 0x57, 0x34, 0x2d, 0xd1, 0x21, 0xe4, 0x04, 0xd7, 0x5d, 0x71, 0x25, - 0x5b, 0x5f, 0xd5, 0xb7, 0xa3, 0x9b, 0x16, 0xb4, 0x32, 0x56, 0xdf, 0xb0, 0xd7, 0xd7, 0xe8, 0xc7, - 0xa2, 0x3b, 0x00, 0xa1, 0xfa, 0x7a, 0x8d, 0xab, 0xf3, 0xfa, 0x3a, 0x7d, 0x56, 0xd4, 0x81, 0x82, - 0x5f, 0xee, 0xac, 0xbc, 0xc8, 0xae, 0xaf, 0x6e, 0x78, 0xa2, 0x7b, 0x50, 0x8a, 0xf2, 0xfc, 0xf5, - 0xae, 0xa7, 0xeb, 0x6b, 0x76, 0x32, 0xa9, 0xff, 0x28, 0xe9, 0x5f, 0xef, 0xba, 0xba, 0xbe, 0x66, - 0x63, 0x13, 0x7d, 0x0c, 0x9b, 0xf3, 0xa4, 0x7c, 0xfd, 0xdb, 0xeb, 0xfa, 0x15, 0x5a, 0x9d, 0x68, - 0x0c, 0x68, 0x01, 0x99, 0xbf, 0xc2, 0x65, 0x76, 0xfd, 0x2a, 0x9d, 0xcf, 0x46, 0xeb, 0xab, 0x07, - 0xdb, 0xc9, 0xaf, 0x1f, 0x6c, 0x27, 0xff, 0xf6, 0x60, 0x3b, 0xf9, 0xc5, 0xc3, 0xed, 0xc4, 0xd7, - 0x0f, 0xb7, 0x13, 0x7f, 0x7e, 0xb8, 0x9d, 0xf8, 0xe9, 0xf3, 0x03, 0x83, 0x0c, 0x27, 0xbd, 0xdd, - 0xbe, 0x35, 0xde, 0x0b, 0xff, 0xd3, 0x66, 0xd1, 0xbf, 0x7f, 0x7a, 0x39, 0x96, 0xa8, 0x5e, 0xfe, - 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x4e, 0x2d, 0x07, 0xd8, 0x1d, 0x24, 0x00, 0x00, + // 3188 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x5a, 0xcb, 0x73, 0x1b, 0xc7, + 0xd1, 0xc7, 0xe2, 0x8d, 0x06, 0x08, 0x82, 0x23, 0x59, 0x86, 0x21, 0x99, 0x94, 0x57, 0xe5, 0x97, + 0x6c, 0x93, 0x36, 0x55, 0xb2, 0xe5, 0xc7, 0x67, 0x9b, 0x84, 0x20, 0x81, 0x96, 0x4c, 0xd2, 0x4b, + 0x48, 0xfa, 0xfc, 0x7d, 0xb1, 0xd6, 0x0b, 0x60, 0x08, 0xac, 0x05, 0xec, 0xae, 0x77, 0x07, 0x14, + 0xe9, 0x63, 0x2a, 0xa9, 0xa4, 0x9c, 0x8b, 0x0f, 0x39, 0xa4, 0x52, 0xe5, 0x43, 0xfe, 0x8b, 0x9c, + 0x72, 0xf1, 0xc5, 0x55, 0xb9, 0xf8, 0x98, 0x43, 0xca, 0x71, 0xd9, 0xb7, 0xfc, 0x03, 0xb9, 0x24, + 0x95, 0xd4, 0x3c, 0x76, 0x77, 0x16, 0xc0, 0x02, 0xa0, 0xec, 0x5b, 0x6e, 0xdb, 0xb3, 0xdd, 0x3d, + 0x33, 0x3d, 0x33, 0xdd, 0xbf, 0xee, 0x19, 0x38, 0x4f, 0xb0, 0xd5, 0xc5, 0xee, 0xd0, 0xb4, 0xc8, + 0x86, 0xd1, 0xee, 0x98, 0x1b, 0xe4, 0xc4, 0xc1, 0xde, 0xba, 0xe3, 0xda, 0xc4, 0x46, 0xcb, 0xe1, + 0xcf, 0x75, 0xfa, 0xb3, 0xf6, 0xa4, 0xc4, 0xdd, 0x71, 0x4f, 0x1c, 0x62, 0x6f, 0x38, 0xae, 0x6d, + 0x1f, 0x72, 0xfe, 0xda, 0x05, 0xe9, 0x37, 0xd3, 0x23, 0x6b, 0x8b, 0xfc, 0x15, 0xc2, 0x0f, 0xf0, + 0x89, 0xff, 0xf7, 0xc9, 0x09, 0x59, 0xc7, 0x70, 0x8d, 0xa1, 0xff, 0x7b, 0xad, 0x67, 0xdb, 0xbd, + 0x01, 0xde, 0x60, 0x54, 0x7b, 0x74, 0xb8, 0x41, 0xcc, 0x21, 0xf6, 0x88, 0x31, 0x74, 0x04, 0xc3, + 0xd9, 0x9e, 0xdd, 0xb3, 0xd9, 0xe7, 0x06, 0xfd, 0xe2, 0xad, 0xea, 0x57, 0x00, 0x39, 0x0d, 0x7f, + 0x3a, 0xc2, 0x1e, 0x41, 0x9b, 0x90, 0xc6, 0x9d, 0xbe, 0x5d, 0x55, 0x2e, 0x2a, 0xcf, 0x15, 0x37, + 0x2f, 0xac, 0x8f, 0x4d, 0x6e, 0x5d, 0xf0, 0x35, 0x3a, 0x7d, 0xbb, 0x99, 0xd0, 0x18, 0x2f, 0xba, + 0x0a, 0x99, 0xc3, 0xc1, 0xc8, 0xeb, 0x57, 0x93, 0x4c, 0xe8, 0xc9, 0x38, 0xa1, 0x1b, 0x94, 0xa9, + 0x99, 0xd0, 0x38, 0x37, 0xed, 0xca, 0xb4, 0x0e, 0xed, 0x6a, 0x6a, 0x76, 0x57, 0x3b, 0xd6, 0x21, + 0xeb, 0x8a, 0xf2, 0xa2, 0x6d, 0x00, 0x0f, 0x13, 0xdd, 0x76, 0x88, 0x69, 0x5b, 0xd5, 0x34, 0x93, + 0x7c, 0x2a, 0x4e, 0xf2, 0x00, 0x93, 0x3d, 0xc6, 0xd8, 0x4c, 0x68, 0x05, 0xcf, 0x27, 0xa8, 0x0e, + 0xd3, 0x32, 0x89, 0xde, 0xe9, 0x1b, 0xa6, 0x55, 0xcd, 0xcc, 0xd6, 0xb1, 0x63, 0x99, 0xa4, 0x4e, + 0x19, 0xa9, 0x0e, 0xd3, 0x27, 0xe8, 0x94, 0x3f, 0x1d, 0x61, 0xf7, 0xa4, 0x9a, 0x9d, 0x3d, 0xe5, + 0x0f, 0x28, 0x13, 0x9d, 0x32, 0xe3, 0x46, 0x0d, 0x28, 0xb6, 0x71, 0xcf, 0xb4, 0xf4, 0xf6, 0xc0, + 0xee, 0x3c, 0xa8, 0xe6, 0x98, 0xb0, 0x1a, 0x27, 0xbc, 0x4d, 0x59, 0xb7, 0x29, 0x67, 0x33, 0xa1, + 0x41, 0x3b, 0xa0, 0xd0, 0x5b, 0x90, 0xef, 0xf4, 0x71, 0xe7, 0x81, 0x4e, 0x8e, 0xab, 0x79, 0xa6, + 0x63, 0x2d, 0x4e, 0x47, 0x9d, 0xf2, 0xb5, 0x8e, 0x9b, 0x09, 0x2d, 0xd7, 0xe1, 0x9f, 0x74, 0xfe, + 0x5d, 0x3c, 0x30, 0x8f, 0xb0, 0x4b, 0xe5, 0x0b, 0xb3, 0xe7, 0x7f, 0x9d, 0x73, 0x32, 0x0d, 0x85, + 0xae, 0x4f, 0xa0, 0x77, 0xa0, 0x80, 0xad, 0xae, 0x98, 0x06, 0x30, 0x15, 0x17, 0x63, 0xf7, 0x8a, + 0xd5, 0xf5, 0x27, 0x91, 0xc7, 0xe2, 0x1b, 0x5d, 0x83, 0x6c, 0xc7, 0x1e, 0x0e, 0x4d, 0x52, 0x2d, + 0x32, 0xe9, 0xd5, 0xd8, 0x09, 0x30, 0xae, 0x66, 0x42, 0x13, 0xfc, 0x68, 0x17, 0xca, 0x03, 0xd3, + 0x23, 0xba, 0x67, 0x19, 0x8e, 0xd7, 0xb7, 0x89, 0x57, 0x2d, 0x31, 0x0d, 0x4f, 0xc7, 0x69, 0xb8, + 0x6d, 0x7a, 0xe4, 0xc0, 0x67, 0x6e, 0x26, 0xb4, 0xa5, 0x81, 0xdc, 0x40, 0xf5, 0xd9, 0x87, 0x87, + 0xd8, 0x0d, 0x14, 0x56, 0x97, 0x66, 0xeb, 0xdb, 0xa3, 0xdc, 0xbe, 0x3c, 0xd5, 0x67, 0xcb, 0x0d, + 0xe8, 0xff, 0xe1, 0xcc, 0xc0, 0x36, 0xba, 0x81, 0x3a, 0xbd, 0xd3, 0x1f, 0x59, 0x0f, 0xaa, 0x65, + 0xa6, 0xf4, 0xf9, 0xd8, 0x41, 0xda, 0x46, 0xd7, 0x57, 0x51, 0xa7, 0x02, 0xcd, 0x84, 0xb6, 0x32, + 0x18, 0x6f, 0x44, 0xf7, 0xe1, 0xac, 0xe1, 0x38, 0x83, 0x93, 0x71, 0xed, 0xcb, 0x4c, 0xfb, 0xe5, + 0x38, 0xed, 0x5b, 0x54, 0x66, 0x5c, 0x3d, 0x32, 0x26, 0x5a, 0xd1, 0x0d, 0x28, 0xf5, 0x30, 0xd1, + 0x0d, 0xc7, 0xd1, 0xfb, 0x86, 0xd7, 0xaf, 0x56, 0x66, 0xef, 0xd0, 0x9b, 0x98, 0xaa, 0x6e, 0x1a, + 0xec, 0x58, 0x43, 0x2f, 0xa0, 0xe8, 0x38, 0x7b, 0xd8, 0xc2, 0xae, 0x41, 0xb0, 0x7e, 0xe8, 0x1a, + 0xa3, 0xae, 0xce, 0x5c, 0x60, 0x75, 0x65, 0xf6, 0x38, 0x6f, 0x0a, 0x99, 0x1b, 0x54, 0x64, 0x9f, + 0x4a, 0xd0, 0x71, 0xf6, 0x26, 0x5a, 0xd1, 0xaf, 0x14, 0xb8, 0x44, 0x5c, 0xb3, 0xd7, 0xc3, 0xae, + 0xac, 0x5f, 0x17, 0xac, 0xa6, 0x6d, 0xe9, 0x43, 0xbb, 0x8b, 0xab, 0x88, 0xf5, 0xf7, 0x5a, 0x5c, + 0x7f, 0x2d, 0xae, 0x22, 0x54, 0x7c, 0x33, 0x90, 0x7f, 0xdf, 0xee, 0xe2, 0x66, 0x42, 0x5b, 0x23, + 0xb3, 0x59, 0xb6, 0x73, 0x90, 0x39, 0x32, 0x06, 0x23, 0xac, 0x3e, 0x0b, 0x45, 0xc9, 0x39, 0xa2, + 0x2a, 0xe4, 0x86, 0xd8, 0xf3, 0x8c, 0x1e, 0x66, 0xbe, 0xb4, 0xa0, 0xf9, 0xa4, 0x5a, 0x86, 0x92, + 0xec, 0x10, 0xd5, 0x61, 0x20, 0x48, 0x5d, 0x1d, 0x15, 0x3c, 0xc2, 0xae, 0x47, 0xfd, 0x9b, 0x10, + 0x14, 0x24, 0xba, 0x04, 0x4b, 0xec, 0xc0, 0xe9, 0xfe, 0x7f, 0xea, 0x6f, 0xd3, 0x5a, 0x89, 0x35, + 0xde, 0x15, 0x4c, 0x6b, 0x50, 0x74, 0x36, 0x9d, 0x80, 0x25, 0xc5, 0x58, 0xc0, 0xd9, 0x74, 0x04, + 0x83, 0xfa, 0x06, 0x54, 0xc6, 0xfd, 0x23, 0xaa, 0x40, 0xea, 0x01, 0x3e, 0x11, 0xfd, 0xd1, 0x4f, + 0x74, 0x56, 0x4c, 0x8b, 0xf5, 0x51, 0xd0, 0xc4, 0x1c, 0xff, 0x9c, 0x0c, 0x84, 0x03, 0xc7, 0x88, + 0xae, 0x41, 0x9a, 0xc6, 0x19, 0x11, 0x32, 0x6a, 0xeb, 0x3c, 0x08, 0xad, 0xfb, 0x41, 0x68, 0xbd, + 0xe5, 0x07, 0xa1, 0xed, 0xfc, 0xd7, 0xdf, 0xae, 0x25, 0xbe, 0xf8, 0xdb, 0x9a, 0xa2, 0x31, 0x09, + 0xf4, 0x04, 0xf5, 0x63, 0x86, 0x69, 0xe9, 0x66, 0x57, 0xf4, 0x93, 0x63, 0xf4, 0x4e, 0x17, 0xdd, + 0x82, 0x4a, 0xc7, 0xb6, 0x3c, 0x6c, 0x79, 0x23, 0x4f, 0xe7, 0x41, 0x4e, 0x04, 0x8a, 0x49, 0x3f, + 0x53, 0xf7, 0x19, 0xf7, 0x19, 0x9f, 0xb6, 0xdc, 0x89, 0x36, 0xa0, 0x1b, 0x00, 0x47, 0xc6, 0xc0, + 0xec, 0x1a, 0xc4, 0x76, 0xbd, 0x6a, 0xfa, 0x62, 0x6a, 0xaa, 0x9a, 0xbb, 0x3e, 0xcb, 0x1d, 0xa7, + 0x6b, 0x10, 0xbc, 0x9d, 0xa6, 0xa3, 0xd5, 0x24, 0x49, 0xf4, 0x0c, 0x2c, 0xd3, 0x93, 0xe1, 0x11, + 0xba, 0xad, 0xdb, 0x27, 0x04, 0x7b, 0x2c, 0x7c, 0x94, 0xb4, 0x25, 0xc3, 0x71, 0x0e, 0x68, 0xeb, + 0x36, 0x6d, 0x44, 0x4f, 0x43, 0x99, 0x86, 0x0a, 0xd3, 0x18, 0xe8, 0x7d, 0x6c, 0xf6, 0xfa, 0x84, + 0x85, 0x89, 0x94, 0xb6, 0x24, 0x5a, 0x9b, 0xac, 0x51, 0xed, 0x06, 0x1b, 0x81, 0x85, 0x09, 0x84, + 0x20, 0xdd, 0x35, 0x88, 0xc1, 0x0c, 0x59, 0xd2, 0xd8, 0x37, 0x6d, 0x73, 0x0c, 0xd2, 0x17, 0xe6, + 0x61, 0xdf, 0xe8, 0x1c, 0x64, 0x85, 0xda, 0x14, 0x53, 0x2b, 0x28, 0xba, 0x66, 0x8e, 0x6b, 0x1f, + 0x61, 0x16, 0x17, 0xf3, 0x1a, 0x27, 0xd4, 0x5f, 0x24, 0x61, 0x65, 0x22, 0xa0, 0x50, 0xbd, 0xec, + 0x80, 0x8b, 0xbe, 0xe8, 0x37, 0x7a, 0x95, 0xea, 0x35, 0xba, 0xd8, 0x15, 0x81, 0xbc, 0x2a, 0x9b, + 0x88, 0x83, 0x94, 0x26, 0xfb, 0x2f, 0x4c, 0x23, 0xb8, 0xd1, 0x1e, 0x54, 0x06, 0x86, 0x47, 0x74, + 0xee, 0xa0, 0x75, 0x29, 0xa8, 0x4f, 0x86, 0xa5, 0xdb, 0x86, 0xef, 0xd2, 0xe9, 0x66, 0x17, 0x8a, + 0xca, 0x83, 0x48, 0x2b, 0xd2, 0xe0, 0x6c, 0xfb, 0xe4, 0x33, 0xc3, 0x22, 0xa6, 0x85, 0xf5, 0x89, + 0x95, 0x7b, 0x62, 0x42, 0x69, 0xe3, 0xc8, 0xec, 0x62, 0xab, 0xe3, 0x2f, 0xd9, 0x99, 0x40, 0x38, + 0x58, 0x52, 0x4f, 0xd5, 0xa0, 0x1c, 0x0d, 0x89, 0xa8, 0x0c, 0x49, 0x72, 0x2c, 0x0c, 0x90, 0x24, + 0xc7, 0xe8, 0x65, 0x48, 0xd3, 0x49, 0xb2, 0xc9, 0x97, 0xa7, 0xe0, 0x11, 0x21, 0xd7, 0x3a, 0x71, + 0xb0, 0xc6, 0x38, 0x55, 0x35, 0x38, 0x0d, 0x41, 0x98, 0x1c, 0xd7, 0xaa, 0x3e, 0x0f, 0xcb, 0x63, + 0x71, 0x50, 0x5a, 0x3f, 0x45, 0x5e, 0x3f, 0x75, 0x19, 0x96, 0x22, 0x41, 0x4f, 0x3d, 0x07, 0x67, + 0xa7, 0xc5, 0x30, 0xb5, 0x1f, 0xb4, 0x47, 0x62, 0x11, 0xba, 0x0a, 0xf9, 0x20, 0x88, 0xf1, 0xd3, + 0x38, 0x69, 0x2b, 0x9f, 0x59, 0x0b, 0x58, 0xe9, 0x31, 0x0c, 0x1c, 0x7e, 0x92, 0x0d, 0x3c, 0x67, + 0x70, 0x3f, 0xae, 0x7e, 0x0c, 0xd5, 0xb8, 0x00, 0x35, 0x36, 0x8d, 0x74, 0xb0, 0x0d, 0xcf, 0x41, + 0xf6, 0xd0, 0x76, 0x87, 0x06, 0x61, 0xca, 0x96, 0x34, 0x41, 0xd1, 0xed, 0xc9, 0x83, 0x55, 0x8a, + 0x35, 0x73, 0x42, 0xd5, 0xe1, 0x89, 0xd8, 0x20, 0x45, 0x45, 0x4c, 0xab, 0x8b, 0xb9, 0x3d, 0x97, + 0x34, 0x4e, 0x84, 0x8a, 0xf8, 0x60, 0x39, 0x41, 0xbb, 0xf5, 0xd8, 0x5c, 0x99, 0xfe, 0x82, 0x26, + 0x28, 0xf5, 0x4c, 0xb0, 0xfd, 0xc3, 0x68, 0xa5, 0x9e, 0x0f, 0x7a, 0x9d, 0x0c, 0x39, 0xea, 0x73, + 0xf0, 0xcc, 0x62, 0xf1, 0x41, 0xfd, 0x7d, 0x11, 0xf2, 0x1a, 0xf6, 0x1c, 0xea, 0x6f, 0xd0, 0x36, + 0x14, 0xf0, 0x71, 0x07, 0x73, 0x68, 0xaa, 0xc4, 0x06, 0x4e, 0xce, 0xdd, 0xf0, 0x39, 0x29, 0xae, + 0x0a, 0xc4, 0xd0, 0x15, 0x01, 0xbf, 0xe3, 0x91, 0xb4, 0x10, 0x97, 0xf1, 0xf7, 0xab, 0x3e, 0xfe, + 0x4e, 0xc5, 0x42, 0x29, 0x2e, 0x35, 0x06, 0xc0, 0xaf, 0x08, 0x00, 0x9e, 0x9e, 0xd3, 0x59, 0x04, + 0x81, 0xd7, 0x23, 0x08, 0x3c, 0x33, 0x67, 0x9a, 0x31, 0x10, 0xbc, 0x1e, 0x81, 0xe0, 0xd9, 0x39, + 0x4a, 0x62, 0x30, 0xf8, 0xab, 0x3e, 0x06, 0xcf, 0xcd, 0x99, 0xf6, 0x18, 0x08, 0xbf, 0x11, 0x05, + 0xe1, 0x1c, 0x40, 0x5f, 0x8a, 0x95, 0x8e, 0x45, 0xe1, 0xff, 0x23, 0xa1, 0xf0, 0x42, 0x2c, 0x04, + 0xe6, 0x4a, 0xa6, 0xc0, 0xf0, 0x7a, 0x04, 0x86, 0xc3, 0x1c, 0x1b, 0xc4, 0xe0, 0xf0, 0x77, 0x65, + 0x1c, 0x5e, 0x8c, 0x85, 0xf2, 0x62, 0xd3, 0x4c, 0x03, 0xe2, 0xaf, 0x07, 0x40, 0xbc, 0x14, 0x9b, + 0x49, 0x88, 0x39, 0x8c, 0x23, 0xf1, 0xbd, 0x09, 0x24, 0xce, 0x91, 0xf3, 0x33, 0xb1, 0x2a, 0xe6, + 0x40, 0xf1, 0xbd, 0x09, 0x28, 0x5e, 0x9e, 0xa3, 0x70, 0x0e, 0x16, 0xff, 0xd9, 0x74, 0x2c, 0x1e, + 0x8f, 0x96, 0xc5, 0x30, 0x17, 0x03, 0xe3, 0x7a, 0x0c, 0x18, 0xe7, 0xa0, 0xf9, 0x85, 0x58, 0xf5, + 0x0b, 0xa3, 0xf1, 0x9b, 0x63, 0x68, 0x7c, 0x65, 0xce, 0x56, 0x8d, 0x85, 0xe3, 0x7a, 0x0c, 0x1c, + 0x47, 0x73, 0x46, 0xba, 0x30, 0x1e, 0xff, 0xf5, 0x82, 0x78, 0xfc, 0x0c, 0xeb, 0xf0, 0x5a, 0x6c, + 0x87, 0x3f, 0x25, 0x20, 0x7f, 0x9e, 0x3a, 0xfe, 0x31, 0x6f, 0x4b, 0x63, 0x07, 0x76, 0x5d, 0xdb, + 0x15, 0x58, 0x97, 0x13, 0xea, 0x73, 0x14, 0x89, 0x85, 0x9e, 0x75, 0x06, 0x78, 0x67, 0x31, 0x5a, + 0xf2, 0xa6, 0xea, 0x1f, 0x95, 0x50, 0x96, 0x81, 0x17, 0x19, 0xc5, 0x15, 0x04, 0x8a, 0x93, 0x30, + 0x7d, 0x32, 0x8a, 0xe9, 0xd7, 0xa0, 0x48, 0x97, 0x77, 0x0c, 0xae, 0x1b, 0x8e, 0x0f, 0xd7, 0xd1, + 0x65, 0x58, 0x61, 0xe0, 0x8a, 0x23, 0x7f, 0x11, 0x70, 0xd3, 0x0c, 0x37, 0x2c, 0xd3, 0x1f, 0xfc, + 0x44, 0xf3, 0xc8, 0xfb, 0x12, 0x9c, 0x91, 0x78, 0x83, 0x6d, 0xc3, 0x31, 0x6a, 0x25, 0xe0, 0xf6, + 0x83, 0xe0, 0xfb, 0xa1, 0x81, 0xc2, 0x54, 0x00, 0x41, 0xba, 0x43, 0x57, 0x8a, 0x47, 0x5c, 0xf6, + 0x4d, 0xd3, 0x83, 0x81, 0xdd, 0x13, 0x71, 0x95, 0x7e, 0x52, 0xae, 0x20, 0x74, 0x14, 0x78, 0x64, + 0x50, 0xbf, 0x52, 0x42, 0x7d, 0x61, 0x76, 0x30, 0x0d, 0xc8, 0x2b, 0x3f, 0x0d, 0x90, 0x4f, 0x3e, + 0x32, 0x90, 0x97, 0x11, 0x4f, 0x2a, 0x8a, 0x78, 0xfe, 0xa1, 0x84, 0x2b, 0x1c, 0xc0, 0xf2, 0x47, + 0xb3, 0x48, 0x08, 0x5f, 0x32, 0x6c, 0xbd, 0x04, 0x7c, 0x11, 0xc9, 0x56, 0x96, 0xf5, 0x1b, 0x4d, + 0xb6, 0x72, 0x1c, 0xd0, 0x30, 0x02, 0x5d, 0x83, 0x02, 0x3f, 0x44, 0xb6, 0xe3, 0x89, 0x28, 0x75, + 0x5e, 0x9e, 0x2b, 0x2f, 0x0f, 0xae, 0xb3, 0x33, 0xb0, 0xe7, 0x78, 0x5a, 0xde, 0x11, 0x5f, 0x12, + 0x32, 0x2b, 0x44, 0x12, 0x84, 0x0b, 0x50, 0xa0, 0xa3, 0xf7, 0x1c, 0xa3, 0x83, 0x59, 0xc4, 0x29, + 0x68, 0x61, 0x83, 0x7a, 0x1f, 0xd0, 0x64, 0xcc, 0x43, 0x4d, 0xc8, 0xe2, 0x23, 0x6c, 0x11, 0xba, + 0x6a, 0xd4, 0xdc, 0xe7, 0xa6, 0xa0, 0x6f, 0x6c, 0x91, 0xed, 0x2a, 0x35, 0xf2, 0xdf, 0xbf, 0x5d, + 0xab, 0x70, 0xee, 0x17, 0xed, 0xa1, 0x49, 0xf0, 0xd0, 0x21, 0x27, 0x9a, 0x90, 0x57, 0xff, 0x9a, + 0xa4, 0x50, 0x38, 0x12, 0x0f, 0xa7, 0xda, 0xd6, 0x3f, 0x40, 0x49, 0x29, 0x0d, 0x5a, 0xcc, 0xde, + 0xab, 0x00, 0x3d, 0xc3, 0xd3, 0x1f, 0x1a, 0x16, 0xc1, 0x5d, 0x61, 0x74, 0xa9, 0x05, 0xd5, 0x20, + 0x4f, 0xa9, 0x91, 0x87, 0xbb, 0x22, 0x23, 0x0b, 0x68, 0x69, 0x9e, 0xb9, 0x1f, 0x37, 0xcf, 0xa8, + 0x95, 0xf3, 0x63, 0x56, 0x96, 0x60, 0x6a, 0x41, 0x86, 0xa9, 0x74, 0x6c, 0x8e, 0x6b, 0xda, 0xae, + 0x49, 0x4e, 0xd8, 0xd2, 0xa4, 0xb4, 0x80, 0xa6, 0x89, 0xff, 0x10, 0x0f, 0x1d, 0xdb, 0x1e, 0xe8, + 0xdc, 0x79, 0x15, 0x99, 0x68, 0x49, 0x34, 0x36, 0x98, 0x0f, 0xfb, 0x65, 0x32, 0x3c, 0x7e, 0x61, + 0x3a, 0xf2, 0x5f, 0x67, 0x60, 0xf5, 0x37, 0xac, 0x46, 0x11, 0x45, 0x3c, 0xe8, 0x00, 0x56, 0x82, + 0xe3, 0xaf, 0x8f, 0x98, 0x5b, 0xf0, 0x37, 0xf4, 0xa2, 0xfe, 0xa3, 0x72, 0x14, 0x6d, 0xf6, 0xd0, + 0xff, 0xc2, 0xe3, 0x63, 0xae, 0x2d, 0x50, 0x9d, 0x5c, 0xd0, 0xc3, 0x3d, 0x16, 0xf5, 0x70, 0xbe, + 0xe6, 0xd0, 0x56, 0xa9, 0x1f, 0x79, 0xe8, 0x76, 0x68, 0xda, 0x2b, 0xe3, 0xb7, 0xa9, 0xab, 0x7f, + 0x09, 0x96, 0x5c, 0x4c, 0x0c, 0xd3, 0xd2, 0x23, 0x85, 0x85, 0x12, 0x6f, 0x14, 0xe5, 0x8a, 0x7d, + 0x78, 0x6c, 0x2a, 0x8e, 0x43, 0xaf, 0x41, 0x21, 0x84, 0x80, 0x4a, 0x4c, 0x8e, 0x1e, 0xe4, 0x9d, + 0x21, 0xaf, 0xfa, 0x27, 0x25, 0x54, 0x19, 0xcd, 0x64, 0x1b, 0x90, 0x75, 0xb1, 0x37, 0x1a, 0xf0, + 0xdc, 0xb2, 0xbc, 0xf9, 0xd2, 0x62, 0x08, 0x90, 0xb6, 0x8e, 0x06, 0x44, 0x13, 0xc2, 0xea, 0x7d, + 0xc8, 0xf2, 0x16, 0x54, 0x84, 0xdc, 0x9d, 0xdd, 0x5b, 0xbb, 0x7b, 0xf7, 0x76, 0x2b, 0x09, 0x04, + 0x90, 0xdd, 0xaa, 0xd7, 0x1b, 0xfb, 0xad, 0x8a, 0x82, 0x0a, 0x90, 0xd9, 0xda, 0xde, 0xd3, 0x5a, + 0x95, 0x24, 0x6d, 0xd6, 0x1a, 0xef, 0x35, 0xea, 0xad, 0x4a, 0x0a, 0xad, 0xc0, 0x12, 0xff, 0xd6, + 0x6f, 0xec, 0x69, 0xef, 0x6f, 0xb5, 0x2a, 0x69, 0xa9, 0xe9, 0xa0, 0xb1, 0x7b, 0xbd, 0xa1, 0x55, + 0x32, 0xea, 0x2b, 0x34, 0x8d, 0x8c, 0xc1, 0x8c, 0x61, 0x9a, 0xaa, 0x48, 0x69, 0xaa, 0xfa, 0xbb, + 0x24, 0xd4, 0xe2, 0x81, 0x20, 0x7a, 0x6f, 0x6c, 0xe2, 0x9b, 0xa7, 0x40, 0x91, 0x63, 0xb3, 0x47, + 0x4f, 0x43, 0xd9, 0xc5, 0x87, 0x98, 0x74, 0xfa, 0x1c, 0x98, 0xf2, 0x88, 0xb9, 0xa4, 0x2d, 0x89, + 0x56, 0x26, 0xe4, 0x71, 0xb6, 0x4f, 0x70, 0x87, 0xe8, 0xdc, 0x15, 0xf1, 0x4d, 0x57, 0xa0, 0x6c, + 0xb4, 0xf5, 0x80, 0x37, 0xaa, 0x1f, 0x9f, 0xca, 0x96, 0x05, 0xc8, 0x68, 0x8d, 0x96, 0xf6, 0x61, + 0x25, 0x85, 0x10, 0x94, 0xd9, 0xa7, 0x7e, 0xb0, 0xbb, 0xb5, 0x7f, 0xd0, 0xdc, 0xa3, 0xb6, 0x3c, + 0x03, 0xcb, 0xbe, 0x2d, 0xfd, 0xc6, 0x8c, 0xba, 0x11, 0x06, 0xa0, 0x10, 0xc9, 0x46, 0x62, 0xb5, + 0x12, 0x8d, 0xd5, 0x1f, 0x86, 0xa6, 0x9c, 0x44, 0xaa, 0xe8, 0x4d, 0x80, 0xc3, 0x80, 0x12, 0x98, + 0xe3, 0xfc, 0x84, 0x39, 0x43, 0x01, 0x4d, 0x62, 0x57, 0xeb, 0xf0, 0xec, 0x82, 0x98, 0x94, 0x82, + 0x3b, 0x6f, 0xd4, 0xe9, 0x60, 0x8f, 0x03, 0x9b, 0xbc, 0xe6, 0x93, 0xea, 0xbf, 0x15, 0x58, 0x1e, + 0x3b, 0xf1, 0x68, 0x13, 0x32, 0x3c, 0x5b, 0x8b, 0xbb, 0x61, 0x63, 0x0e, 0x4b, 0xb8, 0x07, 0xce, + 0x8a, 0xde, 0x82, 0x3c, 0x16, 0x25, 0xae, 0x69, 0x9e, 0x85, 0x97, 0xe6, 0xfc, 0x22, 0x98, 0x10, + 0x0d, 0x24, 0xd0, 0x3b, 0x50, 0x08, 0x5c, 0x97, 0x28, 0x11, 0x3c, 0x35, 0x29, 0x1e, 0x38, 0x3d, + 0x21, 0x1f, 0xca, 0xa0, 0xd7, 0x43, 0xf4, 0x9a, 0x9e, 0xcc, 0x11, 0x85, 0x38, 0x67, 0x10, 0xc2, + 0x3e, 0xbf, 0x5a, 0x87, 0xa2, 0x34, 0x1f, 0x74, 0x1e, 0x0a, 0x43, 0xe3, 0x58, 0x94, 0x4e, 0x79, + 0xf1, 0x2b, 0x3f, 0x34, 0x8e, 0x79, 0xd5, 0xf4, 0x71, 0xc8, 0xd1, 0x9f, 0x3d, 0x83, 0xbb, 0xcf, + 0x94, 0x96, 0x1d, 0x1a, 0xc7, 0x37, 0x0d, 0x4f, 0xfd, 0x08, 0xca, 0xd1, 0xb2, 0x21, 0x3d, 0x5a, + 0xae, 0x3d, 0xb2, 0xba, 0x4c, 0x47, 0x46, 0xe3, 0x04, 0xba, 0x0a, 0x99, 0x23, 0x9b, 0x7b, 0xdf, + 0xe9, 0x3e, 0xe8, 0xae, 0x4d, 0xb0, 0x54, 0x76, 0xe4, 0xdc, 0xea, 0x67, 0x90, 0x61, 0xde, 0x94, + 0x7a, 0x46, 0x56, 0x00, 0x14, 0xc8, 0x9d, 0x7e, 0xa3, 0x8f, 0x00, 0x0c, 0x42, 0x5c, 0xb3, 0x3d, + 0x0a, 0x15, 0xaf, 0x4d, 0xf7, 0xc6, 0x5b, 0x3e, 0xdf, 0xf6, 0x05, 0xe1, 0x96, 0xcf, 0x86, 0xa2, + 0x92, 0x6b, 0x96, 0x14, 0xaa, 0xbb, 0x50, 0x8e, 0xca, 0xca, 0xa5, 0xf8, 0xd2, 0x94, 0x52, 0x7c, + 0x80, 0x0e, 0x03, 0x6c, 0x99, 0xe2, 0xc5, 0x5e, 0x46, 0xa8, 0x9f, 0x2b, 0x90, 0x6f, 0x1d, 0x8b, + 0x73, 0x1a, 0x53, 0x67, 0x0c, 0x45, 0x93, 0x72, 0x55, 0x8d, 0x17, 0x2e, 0x53, 0x41, 0x39, 0xf4, + 0xdd, 0xc0, 0x13, 0xa5, 0x17, 0xad, 0x4d, 0xf8, 0x75, 0x61, 0xe1, 0x7d, 0xdf, 0x84, 0x42, 0xb0, + 0xab, 0xe8, 0x29, 0x31, 0xba, 0x5d, 0xd7, 0x3f, 0x25, 0xf4, 0x14, 0x73, 0x92, 0x95, 0xad, 0xed, + 0x87, 0xa2, 0x6e, 0x97, 0xd2, 0x38, 0xa1, 0x76, 0x61, 0x79, 0x2c, 0x0e, 0xa3, 0x37, 0x21, 0xe7, + 0x8c, 0xda, 0xba, 0x6f, 0x9e, 0xb1, 0xc3, 0xe3, 0xc3, 0xe1, 0x51, 0x7b, 0x60, 0x76, 0x6e, 0xe1, + 0x13, 0x7f, 0x30, 0xce, 0xa8, 0x7d, 0x8b, 0x5b, 0x91, 0xf7, 0x92, 0x94, 0x7b, 0x39, 0x82, 0xbc, + 0xbf, 0x29, 0xd0, 0xdb, 0xf2, 0x39, 0xf1, 0x2f, 0x33, 0x62, 0xb1, 0x81, 0x50, 0x2f, 0x1d, 0x93, + 0xcb, 0xb0, 0xe2, 0x99, 0x3d, 0x0b, 0x77, 0xf5, 0x30, 0x09, 0x63, 0xbd, 0xe5, 0xb5, 0x65, 0xfe, + 0xe3, 0xb6, 0x9f, 0x81, 0xa9, 0xff, 0x52, 0x20, 0xef, 0x1f, 0x58, 0xf4, 0x8a, 0xb4, 0xef, 0xca, + 0x53, 0xea, 0x70, 0x3e, 0x63, 0x58, 0x79, 0x8e, 0x8e, 0x35, 0x79, 0xfa, 0xb1, 0xc6, 0x5d, 0x21, + 0xf8, 0x77, 0x39, 0xe9, 0x53, 0xdf, 0xe5, 0xbc, 0x08, 0x88, 0xd8, 0xc4, 0x18, 0xe8, 0x47, 0x36, + 0x31, 0xad, 0x9e, 0xce, 0x8d, 0xcd, 0x21, 0x62, 0x85, 0xfd, 0xb9, 0xcb, 0x7e, 0xec, 0x33, 0xbb, + 0xff, 0x5c, 0x81, 0x7c, 0x10, 0xec, 0x4f, 0x5b, 0x48, 0x3e, 0x07, 0x59, 0x11, 0xcf, 0x78, 0x25, + 0x59, 0x50, 0xc1, 0x9d, 0x46, 0x5a, 0xba, 0xd3, 0xa8, 0x41, 0x7e, 0x88, 0x89, 0xc1, 0x10, 0x0f, + 0xcf, 0x83, 0x03, 0x5a, 0xfd, 0xa7, 0x02, 0x20, 0xc5, 0x8b, 0xa7, 0xa0, 0x14, 0x49, 0xb2, 0xf9, + 0xa1, 0x29, 0xb6, 0xa5, 0x04, 0x9b, 0x6e, 0x62, 0x1e, 0x7b, 0xc6, 0x0a, 0xe5, 0xe8, 0x03, 0x28, + 0xb1, 0x6b, 0xa1, 0x7b, 0x26, 0xb1, 0xe8, 0x1e, 0xe7, 0xb8, 0xed, 0xa5, 0x19, 0xe1, 0x66, 0xfd, + 0x40, 0xe2, 0x6f, 0x58, 0xc4, 0x3d, 0xd1, 0x22, 0x2a, 0x6a, 0xf7, 0x61, 0x65, 0x82, 0x65, 0xca, + 0x4d, 0xdd, 0x15, 0xd9, 0x3d, 0x4c, 0x2b, 0xe3, 0xca, 0x4a, 0x84, 0xf7, 0x78, 0x23, 0x79, 0x4d, + 0x51, 0xff, 0xa0, 0x40, 0x49, 0xfe, 0x87, 0xae, 0x42, 0xde, 0x4f, 0x38, 0xa7, 0xed, 0xff, 0x68, + 0xbe, 0xa9, 0xe5, 0x44, 0xba, 0x49, 0x4d, 0xec, 0xda, 0x36, 0x91, 0xac, 0x12, 0xd0, 0xe8, 0x6d, + 0x28, 0x3e, 0xe4, 0xda, 0xaf, 0xd3, 0x15, 0xe0, 0x56, 0x99, 0x8c, 0x79, 0xf7, 0x42, 0x1e, 0x4d, + 0x16, 0x50, 0x7b, 0x50, 0x94, 0xfe, 0x2d, 0xec, 0x1c, 0x5f, 0x66, 0x37, 0x61, 0xf6, 0xa1, 0x08, + 0x77, 0xb3, 0xa6, 0xc1, 0x19, 0x2f, 0xbf, 0x0e, 0x45, 0xe9, 0x7e, 0x87, 0x76, 0xb4, 0xdb, 0xb8, + 0x57, 0x49, 0xd4, 0x72, 0x9f, 0x7f, 0x79, 0x31, 0xb5, 0x8b, 0x1f, 0xd2, 0xa5, 0xd7, 0x1a, 0xf5, + 0x66, 0xa3, 0x7e, 0xab, 0xa2, 0xd4, 0x8a, 0x9f, 0x7f, 0x79, 0x31, 0xa7, 0x61, 0x56, 0xca, 0xbd, + 0xdc, 0x84, 0x92, 0x7c, 0x42, 0xa3, 0xf0, 0x08, 0x41, 0xf9, 0xfa, 0x9d, 0xfd, 0xdb, 0x3b, 0xf5, + 0xad, 0x56, 0x43, 0xbf, 0xbb, 0xd7, 0x6a, 0x54, 0x14, 0xf4, 0x38, 0x9c, 0xb9, 0xbd, 0x73, 0xb3, + 0xd9, 0xd2, 0xeb, 0xb7, 0x77, 0x1a, 0xbb, 0x2d, 0x7d, 0xab, 0xd5, 0xda, 0xaa, 0xdf, 0xaa, 0x24, + 0x37, 0xbf, 0x2b, 0xc1, 0xf2, 0xd6, 0x76, 0x7d, 0x87, 0x42, 0x3b, 0xb3, 0x63, 0x88, 0x52, 0x79, + 0x9a, 0x95, 0xa4, 0x66, 0x3e, 0xc5, 0xa9, 0xcd, 0xbe, 0x29, 0x40, 0x37, 0x20, 0xc3, 0xaa, 0x55, + 0x68, 0xf6, 0xdb, 0x9c, 0xda, 0x9c, 0xab, 0x03, 0x3a, 0x18, 0xe6, 0x2a, 0x67, 0x3e, 0xd6, 0xa9, + 0xcd, 0xbe, 0x49, 0x40, 0x1a, 0x14, 0xc2, 0x72, 0xd3, 0xfc, 0xc7, 0x3b, 0xb5, 0x05, 0x6e, 0x17, + 0xa8, 0xce, 0x30, 0xe7, 0x9d, 0xff, 0x98, 0xa5, 0xb6, 0x40, 0x30, 0x43, 0xb7, 0x21, 0xe7, 0x97, + 0x29, 0xe6, 0x3d, 0xaf, 0xa9, 0xcd, 0xad, 0xfc, 0xd3, 0x25, 0xe0, 0xe5, 0xa4, 0xd9, 0x6f, 0x85, + 0x6a, 0x73, 0xae, 0x31, 0xd0, 0x0e, 0x64, 0x45, 0x22, 0x37, 0xe7, 0xc9, 0x4c, 0x6d, 0x5e, 0x25, + 0x9f, 0x1a, 0x2d, 0xac, 0xd3, 0xcd, 0x7f, 0x01, 0x55, 0x5b, 0xe0, 0x86, 0x06, 0xdd, 0x01, 0x90, + 0x8a, 0x47, 0x0b, 0x3c, 0x6d, 0xaa, 0x2d, 0x72, 0xf3, 0x82, 0xf6, 0x20, 0x1f, 0xe4, 0xf2, 0x73, + 0x1f, 0x1a, 0xd5, 0xe6, 0x5f, 0x81, 0xa0, 0xfb, 0xb0, 0x14, 0x4d, 0x62, 0x17, 0x7b, 0x3e, 0x54, + 0x5b, 0xf0, 0x6e, 0x83, 0xea, 0x8f, 0x66, 0xb4, 0x8b, 0x3d, 0x27, 0xaa, 0x2d, 0x78, 0xd5, 0x81, + 0x3e, 0x81, 0x95, 0xc9, 0x8c, 0x73, 0xf1, 0xd7, 0x45, 0xb5, 0x53, 0x5c, 0x7e, 0xa0, 0x21, 0xa0, + 0x29, 0x99, 0xea, 0x29, 0x1e, 0x1b, 0xd5, 0x4e, 0x73, 0x17, 0x42, 0xb7, 0x90, 0x94, 0xfe, 0x2d, + 0xf0, 0xf6, 0xa8, 0xb6, 0xc8, 0x8d, 0x08, 0x9d, 0xc5, 0x94, 0x24, 0xf1, 0x14, 0x4f, 0x91, 0x6a, + 0xa7, 0xb9, 0x27, 0x41, 0xbf, 0x55, 0x60, 0x6d, 0x5e, 0xe6, 0xf8, 0xa8, 0xef, 0x92, 0x6a, 0x8f, + 0x7c, 0x81, 0xb2, 0xdd, 0xf8, 0xfa, 0xfb, 0x55, 0xe5, 0x9b, 0xef, 0x57, 0x95, 0xef, 0xbe, 0x5f, + 0x55, 0xbe, 0xf8, 0x61, 0x35, 0xf1, 0xcd, 0x0f, 0xab, 0x89, 0xbf, 0xfc, 0xb0, 0x9a, 0xf8, 0xbf, + 0x17, 0x7a, 0x26, 0xe9, 0x8f, 0xda, 0xeb, 0x1d, 0x7b, 0xb8, 0x21, 0x3f, 0x33, 0x9d, 0xf6, 0xf4, + 0xb5, 0x9d, 0x65, 0x88, 0xf0, 0xca, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0xdd, 0x38, 0x7f, 0x77, + 0x1a, 0x2b, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -3429,6 +3976,9 @@ type ABCIApplicationClient interface { OfferSnapshot(ctx context.Context, in *RequestOfferSnapshot, opts ...grpc.CallOption) (*ResponseOfferSnapshot, error) LoadSnapshotChunk(ctx context.Context, in *RequestLoadSnapshotChunk, opts ...grpc.CallOption) (*ResponseLoadSnapshotChunk, error) ApplySnapshotChunk(ctx context.Context, in *RequestApplySnapshotChunk, opts ...grpc.CallOption) (*ResponseApplySnapshotChunk, error) + GetAppHash(ctx context.Context, in *RequestGetAppHash, opts ...grpc.CallOption) (*ResponseGetAppHash, error) + GenerateFraudProof(ctx context.Context, in *RequestGenerateFraudProof, opts ...grpc.CallOption) (*ResponseGenerateFraudProof, error) + TriggerFraudProofGenerationMode(ctx context.Context, in *RequestTriggerFraudProofGenerationMode, opts ...grpc.CallOption) (*ResponseTriggerFraudProofGenerationMode, error) } type aBCIApplicationClient struct { @@ -3574,6 +4124,33 @@ func (c *aBCIApplicationClient) ApplySnapshotChunk(ctx context.Context, in *Requ return out, nil } +func (c *aBCIApplicationClient) GetAppHash(ctx context.Context, in *RequestGetAppHash, opts ...grpc.CallOption) (*ResponseGetAppHash, error) { + out := new(ResponseGetAppHash) + err := c.cc.Invoke(ctx, "/tendermint.abci.ABCIApplication/GetAppHash", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *aBCIApplicationClient) GenerateFraudProof(ctx context.Context, in *RequestGenerateFraudProof, opts ...grpc.CallOption) (*ResponseGenerateFraudProof, error) { + out := new(ResponseGenerateFraudProof) + err := c.cc.Invoke(ctx, "/tendermint.abci.ABCIApplication/GenerateFraudProof", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *aBCIApplicationClient) TriggerFraudProofGenerationMode(ctx context.Context, in *RequestTriggerFraudProofGenerationMode, opts ...grpc.CallOption) (*ResponseTriggerFraudProofGenerationMode, error) { + out := new(ResponseTriggerFraudProofGenerationMode) + err := c.cc.Invoke(ctx, "/tendermint.abci.ABCIApplication/TriggerFraudProofGenerationMode", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // ABCIApplicationServer is the server API for ABCIApplication service. type ABCIApplicationServer interface { Echo(context.Context, *RequestEcho) (*ResponseEcho, error) @@ -3591,6 +4168,9 @@ type ABCIApplicationServer interface { OfferSnapshot(context.Context, *RequestOfferSnapshot) (*ResponseOfferSnapshot, error) LoadSnapshotChunk(context.Context, *RequestLoadSnapshotChunk) (*ResponseLoadSnapshotChunk, error) ApplySnapshotChunk(context.Context, *RequestApplySnapshotChunk) (*ResponseApplySnapshotChunk, error) + GetAppHash(context.Context, *RequestGetAppHash) (*ResponseGetAppHash, error) + GenerateFraudProof(context.Context, *RequestGenerateFraudProof) (*ResponseGenerateFraudProof, error) + TriggerFraudProofGenerationMode(context.Context, *RequestTriggerFraudProofGenerationMode) (*ResponseTriggerFraudProofGenerationMode, error) } // UnimplementedABCIApplicationServer can be embedded to have forward compatible implementations. @@ -3642,6 +4222,15 @@ func (*UnimplementedABCIApplicationServer) LoadSnapshotChunk(ctx context.Context func (*UnimplementedABCIApplicationServer) ApplySnapshotChunk(ctx context.Context, req *RequestApplySnapshotChunk) (*ResponseApplySnapshotChunk, error) { return nil, status.Errorf(codes.Unimplemented, "method ApplySnapshotChunk not implemented") } +func (*UnimplementedABCIApplicationServer) GetAppHash(ctx context.Context, req *RequestGetAppHash) (*ResponseGetAppHash, error) { + return nil, status.Errorf(codes.Unimplemented, "method GetAppHash not implemented") +} +func (*UnimplementedABCIApplicationServer) GenerateFraudProof(ctx context.Context, req *RequestGenerateFraudProof) (*ResponseGenerateFraudProof, error) { + return nil, status.Errorf(codes.Unimplemented, "method GenerateFraudProof not implemented") +} +func (*UnimplementedABCIApplicationServer) TriggerFraudProofGenerationMode(ctx context.Context, req *RequestTriggerFraudProofGenerationMode) (*ResponseTriggerFraudProofGenerationMode, error) { + return nil, status.Errorf(codes.Unimplemented, "method TriggerFraudProofGenerationMode not implemented") +} func RegisterABCIApplicationServer(s *grpc.Server, srv ABCIApplicationServer) { s.RegisterService(&_ABCIApplication_serviceDesc, srv) @@ -3917,6 +4506,60 @@ func _ABCIApplication_ApplySnapshotChunk_Handler(srv interface{}, ctx context.Co return interceptor(ctx, in, info, handler) } +func _ABCIApplication_GetAppHash_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(RequestGetAppHash) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ABCIApplicationServer).GetAppHash(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/tendermint.abci.ABCIApplication/GetAppHash", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ABCIApplicationServer).GetAppHash(ctx, req.(*RequestGetAppHash)) + } + return interceptor(ctx, in, info, handler) +} + +func _ABCIApplication_GenerateFraudProof_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(RequestGenerateFraudProof) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ABCIApplicationServer).GenerateFraudProof(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/tendermint.abci.ABCIApplication/GenerateFraudProof", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ABCIApplicationServer).GenerateFraudProof(ctx, req.(*RequestGenerateFraudProof)) + } + return interceptor(ctx, in, info, handler) +} + +func _ABCIApplication_TriggerFraudProofGenerationMode_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(RequestTriggerFraudProofGenerationMode) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ABCIApplicationServer).TriggerFraudProofGenerationMode(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/tendermint.abci.ABCIApplication/TriggerFraudProofGenerationMode", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ABCIApplicationServer).TriggerFraudProofGenerationMode(ctx, req.(*RequestTriggerFraudProofGenerationMode)) + } + return interceptor(ctx, in, info, handler) +} + var _ABCIApplication_serviceDesc = grpc.ServiceDesc{ ServiceName: "tendermint.abci.ABCIApplication", HandlerType: (*ABCIApplicationServer)(nil), @@ -3981,6 +4624,18 @@ var _ABCIApplication_serviceDesc = grpc.ServiceDesc{ MethodName: "ApplySnapshotChunk", Handler: _ABCIApplication_ApplySnapshotChunk_Handler, }, + { + MethodName: "GetAppHash", + Handler: _ABCIApplication_GetAppHash_Handler, + }, + { + MethodName: "GenerateFraudProof", + Handler: _ABCIApplication_GenerateFraudProof_Handler, + }, + { + MethodName: "TriggerFraudProofGenerationMode", + Handler: _ABCIApplication_TriggerFraudProofGenerationMode_Handler, + }, }, Streams: []grpc.StreamDesc{}, Metadata: "tendermint/abci/types.proto", @@ -4333,59 +4988,128 @@ func (m *Request_ApplySnapshotChunk) MarshalToSizedBuffer(dAtA []byte) (int, err } return len(dAtA) - i, nil } -func (m *RequestEcho) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *RequestEcho) MarshalTo(dAtA []byte) (int, error) { +func (m *Request_GetAppHash) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *RequestEcho) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *Request_GetAppHash) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) - _ = i - var l int - _ = l - if len(m.Message) > 0 { - i -= len(m.Message) - copy(dAtA[i:], m.Message) - i = encodeVarintTypes(dAtA, i, uint64(len(m.Message))) + if m.GetAppHash != nil { + { + size, err := m.GetAppHash.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } i-- - dAtA[i] = 0xa + dAtA[i] = 0x1 + i-- + dAtA[i] = 0x82 } return len(dAtA) - i, nil } - -func (m *RequestFlush) Marshal() (dAtA []byte, err error) { - size := m.Size() - dAtA = make([]byte, size) - n, err := m.MarshalToSizedBuffer(dAtA[:size]) - if err != nil { - return nil, err - } - return dAtA[:n], nil -} - -func (m *RequestFlush) MarshalTo(dAtA []byte) (int, error) { +func (m *Request_GenerateFraudProof) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *RequestFlush) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *Request_GenerateFraudProof) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) - _ = i - var l int - _ = l - return len(dAtA) - i, nil -} - + if m.GenerateFraudProof != nil { + { + size, err := m.GenerateFraudProof.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0x8a + } + return len(dAtA) - i, nil +} +func (m *Request_TriggerFraudProofGenerationMode) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *Request_TriggerFraudProofGenerationMode) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + if m.TriggerFraudProofGenerationMode != nil { + { + size, err := m.TriggerFraudProofGenerationMode.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0x92 + } + return len(dAtA) - i, nil +} +func (m *RequestEcho) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *RequestEcho) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *RequestEcho) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Message) > 0 { + i -= len(m.Message) + copy(dAtA[i:], m.Message) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Message))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *RequestFlush) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *RequestFlush) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *RequestFlush) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + return len(dAtA) - i, nil +} + func (m *RequestInfo) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -4528,12 +5252,12 @@ func (m *RequestInitChain) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x12 } - n17, err17 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Time, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Time):]) - if err17 != nil { - return 0, err17 + n20, err20 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Time, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Time):]) + if err20 != nil { + return 0, err20 } - i -= n17 - i = encodeVarintTypes(dAtA, i, uint64(n17)) + i -= n20 + i = encodeVarintTypes(dAtA, i, uint64(n20)) i-- dAtA[i] = 0xa return len(dAtA) - i, nil @@ -4916,6 +5640,75 @@ func (m *RequestApplySnapshotChunk) MarshalToSizedBuffer(dAtA []byte) (int, erro return len(dAtA) - i, nil } +func (m *RequestGetAppHash) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *RequestGetAppHash) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *RequestGetAppHash) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + return len(dAtA) - i, nil +} + +func (m *RequestGenerateFraudProof) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *RequestGenerateFraudProof) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *RequestGenerateFraudProof) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + return len(dAtA) - i, nil +} + +func (m *RequestTriggerFraudProofGenerationMode) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *RequestTriggerFraudProofGenerationMode) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *RequestTriggerFraudProofGenerationMode) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + return len(dAtA) - i, nil +} + func (m *Response) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -5286,6 +6079,75 @@ func (m *Response_ApplySnapshotChunk) MarshalToSizedBuffer(dAtA []byte) (int, er } return len(dAtA) - i, nil } +func (m *Response_GetAppHash) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *Response_GetAppHash) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + if m.GetAppHash != nil { + { + size, err := m.GetAppHash.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0x8a + } + return len(dAtA) - i, nil +} +func (m *Response_GenerateFraudProof) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *Response_GenerateFraudProof) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + if m.GenerateFraudProof != nil { + { + size, err := m.GenerateFraudProof.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0x92 + } + return len(dAtA) - i, nil +} +func (m *Response_TriggerFraudProofGenerationMode) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *Response_TriggerFraudProofGenerationMode) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + if m.TriggerFraudProofGenerationMode != nil { + { + size, err := m.TriggerFraudProofGenerationMode.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1 + i-- + dAtA[i] = 0x9a + } + return len(dAtA) - i, nil +} func (m *ResponseException) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -6045,20 +6907,20 @@ func (m *ResponseApplySnapshotChunk) MarshalToSizedBuffer(dAtA []byte) (int, err } } if len(m.RefetchChunks) > 0 { - dAtA41 := make([]byte, len(m.RefetchChunks)*10) - var j40 int + dAtA47 := make([]byte, len(m.RefetchChunks)*10) + var j46 int for _, num := range m.RefetchChunks { for num >= 1<<7 { - dAtA41[j40] = uint8(uint64(num)&0x7f | 0x80) + dAtA47[j46] = uint8(uint64(num)&0x7f | 0x80) num >>= 7 - j40++ + j46++ } - dAtA41[j40] = uint8(num) - j40++ + dAtA47[j46] = uint8(num) + j46++ } - i -= j40 - copy(dAtA[i:], dAtA41[:j40]) - i = encodeVarintTypes(dAtA, i, uint64(j40)) + i -= j46 + copy(dAtA[i:], dAtA47[:j46]) + i = encodeVarintTypes(dAtA, i, uint64(j46)) i-- dAtA[i] = 0x12 } @@ -6070,7 +6932,7 @@ func (m *ResponseApplySnapshotChunk) MarshalToSizedBuffer(dAtA []byte) (int, err return len(dAtA) - i, nil } -func (m *ConsensusParams) Marshal() (dAtA []byte, err error) { +func (m *ResponseGetAppHash) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -6080,68 +6942,27 @@ func (m *ConsensusParams) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *ConsensusParams) MarshalTo(dAtA []byte) (int, error) { +func (m *ResponseGetAppHash) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *ConsensusParams) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *ResponseGetAppHash) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int _ = l - if m.Version != nil { - { - size, err := m.Version.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintTypes(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x22 - } - if m.Validator != nil { - { - size, err := m.Validator.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintTypes(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x1a - } - if m.Evidence != nil { - { - size, err := m.Evidence.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintTypes(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x12 - } - if m.Block != nil { - { - size, err := m.Block.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintTypes(dAtA, i, uint64(size)) - } + if len(m.AppHash) > 0 { + i -= len(m.AppHash) + copy(dAtA[i:], m.AppHash) + i = encodeVarintTypes(dAtA, i, uint64(len(m.AppHash))) i-- dAtA[i] = 0xa } return len(dAtA) - i, nil } -func (m *BlockParams) Marshal() (dAtA []byte, err error) { +func (m *ResponseGenerateFraudProof) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -6151,19 +6972,158 @@ func (m *BlockParams) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *BlockParams) MarshalTo(dAtA []byte) (int, error) { +func (m *ResponseGenerateFraudProof) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *BlockParams) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *ResponseGenerateFraudProof) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int _ = l - if m.MaxGas != 0 { - i = encodeVarintTypes(dAtA, i, uint64(m.MaxGas)) - i-- + if m.FraudProof != nil { + { + size, err := m.FraudProof.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *ResponseTriggerFraudProofGenerationMode) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *ResponseTriggerFraudProofGenerationMode) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *ResponseTriggerFraudProofGenerationMode) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.Success { + i-- + if m.Success { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + +func (m *ConsensusParams) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *ConsensusParams) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *ConsensusParams) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.Version != nil { + { + size, err := m.Version.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x22 + } + if m.Validator != nil { + { + size, err := m.Validator.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + } + if m.Evidence != nil { + { + size, err := m.Evidence.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + if m.Block != nil { + { + size, err := m.Block.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *BlockParams) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *BlockParams) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *BlockParams) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.MaxGas != 0 { + i = encodeVarintTypes(dAtA, i, uint64(m.MaxGas)) + i-- dAtA[i] = 0x10 } if m.MaxBytes != 0 { @@ -6498,12 +7458,12 @@ func (m *Evidence) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x28 } - n49, err49 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Time, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Time):]) - if err49 != nil { - return 0, err49 + n56, err56 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.Time, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.Time):]) + if err56 != nil { + return 0, err56 } - i -= n49 - i = encodeVarintTypes(dAtA, i, uint64(n49)) + i -= n56 + i = encodeVarintTypes(dAtA, i, uint64(n56)) i-- dAtA[i] = 0x22 if m.Height != 0 { @@ -6581,79 +7541,245 @@ func (m *Snapshot) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } -func encodeVarintTypes(dAtA []byte, offset int, v uint64) int { - offset -= sovTypes(v) - base := offset - for v >= 1<<7 { - dAtA[offset] = uint8(v&0x7f | 0x80) - v >>= 7 - offset++ +func (m *FraudProof) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err } - dAtA[offset] = uint8(v) - return base + return dAtA[:n], nil } -func (m *Request) Size() (n int) { - if m == nil { - return 0 - } - var l int - _ = l - if m.Value != nil { - n += m.Value.Size() - } - return n + +func (m *FraudProof) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *Request_Echo) Size() (n int) { - if m == nil { - return 0 - } +func (m *FraudProof) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i var l int _ = l - if m.Echo != nil { - l = m.Echo.Size() - n += 1 + l + sovTypes(uint64(l)) + if len(m.StateWitness) > 0 { + for k := range m.StateWitness { + v := m.StateWitness[k] + baseI := i + if v != nil { + { + size, err := v.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + i -= len(k) + copy(dAtA[i:], k) + i = encodeVarintTypes(dAtA, i, uint64(len(k))) + i-- + dAtA[i] = 0xa + i = encodeVarintTypes(dAtA, i, uint64(baseI-i)) + i-- + dAtA[i] = 0x1a + } } - return n -} -func (m *Request_Flush) Size() (n int) { - if m == nil { - return 0 + if len(m.AppHash) > 0 { + i -= len(m.AppHash) + copy(dAtA[i:], m.AppHash) + i = encodeVarintTypes(dAtA, i, uint64(len(m.AppHash))) + i-- + dAtA[i] = 0x12 } - var l int - _ = l - if m.Flush != nil { - l = m.Flush.Size() - n += 1 + l + sovTypes(uint64(l)) + if m.BlockHeight != 0 { + i = encodeVarintTypes(dAtA, i, uint64(m.BlockHeight)) + i-- + dAtA[i] = 0x8 } - return n + return len(dAtA) - i, nil } -func (m *Request_Info) Size() (n int) { - if m == nil { - return 0 + +func (m *StateWitness) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err } + return dAtA[:n], nil +} + +func (m *StateWitness) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *StateWitness) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i var l int _ = l - if m.Info != nil { - l = m.Info.Size() - n += 1 + l + sovTypes(uint64(l)) + if len(m.WitnessData) > 0 { + for iNdEx := len(m.WitnessData) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.WitnessData[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + } } - return n -} -func (m *Request_SetOption) Size() (n int) { - if m == nil { - return 0 + if len(m.RootHash) > 0 { + i -= len(m.RootHash) + copy(dAtA[i:], m.RootHash) + i = encodeVarintTypes(dAtA, i, uint64(len(m.RootHash))) + i-- + dAtA[i] = 0x12 } - var l int - _ = l - if m.SetOption != nil { - l = m.SetOption.Size() - n += 1 + l + sovTypes(uint64(l)) + if m.ProofOp != nil { + { + size, err := m.ProofOp.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa } - return n + return len(dAtA) - i, nil } -func (m *Request_InitChain) Size() (n int) { - if m == nil { + +func (m *WitnessData) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *WitnessData) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *WitnessData) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.Proof != nil { + { + size, err := m.Proof.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + } + if len(m.Value) > 0 { + i -= len(m.Value) + copy(dAtA[i:], m.Value) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Value))) + i-- + dAtA[i] = 0x12 + } + if len(m.Key) > 0 { + i -= len(m.Key) + copy(dAtA[i:], m.Key) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Key))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func encodeVarintTypes(dAtA []byte, offset int, v uint64) int { + offset -= sovTypes(v) + base := offset + for v >= 1<<7 { + dAtA[offset] = uint8(v&0x7f | 0x80) + v >>= 7 + offset++ + } + dAtA[offset] = uint8(v) + return base +} +func (m *Request) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Value != nil { + n += m.Value.Size() + } + return n +} + +func (m *Request_Echo) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Echo != nil { + l = m.Echo.Size() + n += 1 + l + sovTypes(uint64(l)) + } + return n +} +func (m *Request_Flush) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Flush != nil { + l = m.Flush.Size() + n += 1 + l + sovTypes(uint64(l)) + } + return n +} +func (m *Request_Info) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Info != nil { + l = m.Info.Size() + n += 1 + l + sovTypes(uint64(l)) + } + return n +} +func (m *Request_SetOption) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.SetOption != nil { + l = m.SetOption.Size() + n += 1 + l + sovTypes(uint64(l)) + } + return n +} +func (m *Request_InitChain) Size() (n int) { + if m == nil { return 0 } var l int @@ -6784,6 +7910,42 @@ func (m *Request_ApplySnapshotChunk) Size() (n int) { } return n } +func (m *Request_GetAppHash) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.GetAppHash != nil { + l = m.GetAppHash.Size() + n += 2 + l + sovTypes(uint64(l)) + } + return n +} +func (m *Request_GenerateFraudProof) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.GenerateFraudProof != nil { + l = m.GenerateFraudProof.Size() + n += 2 + l + sovTypes(uint64(l)) + } + return n +} +func (m *Request_TriggerFraudProofGenerationMode) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.TriggerFraudProofGenerationMode != nil { + l = m.TriggerFraudProofGenerationMode.Size() + n += 2 + l + sovTypes(uint64(l)) + } + return n +} func (m *RequestEcho) Size() (n int) { if m == nil { return 0 @@ -7034,6 +8196,33 @@ func (m *RequestApplySnapshotChunk) Size() (n int) { return n } +func (m *RequestGetAppHash) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + return n +} + +func (m *RequestGenerateFraudProof) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + return n +} + +func (m *RequestTriggerFraudProofGenerationMode) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + return n +} + func (m *Response) Size() (n int) { if m == nil { return 0 @@ -7238,6 +8427,42 @@ func (m *Response_ApplySnapshotChunk) Size() (n int) { } return n } +func (m *Response_GetAppHash) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.GetAppHash != nil { + l = m.GetAppHash.Size() + n += 2 + l + sovTypes(uint64(l)) + } + return n +} +func (m *Response_GenerateFraudProof) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.GenerateFraudProof != nil { + l = m.GenerateFraudProof.Size() + n += 2 + l + sovTypes(uint64(l)) + } + return n +} +func (m *Response_TriggerFraudProofGenerationMode) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.TriggerFraudProofGenerationMode != nil { + l = m.TriggerFraudProofGenerationMode.Size() + n += 2 + l + sovTypes(uint64(l)) + } + return n +} func (m *ResponseException) Size() (n int) { if m == nil { return 0 @@ -7597,6 +8822,44 @@ func (m *ResponseApplySnapshotChunk) Size() (n int) { return n } +func (m *ResponseGetAppHash) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.AppHash) + if l > 0 { + n += 1 + l + sovTypes(uint64(l)) + } + return n +} + +func (m *ResponseGenerateFraudProof) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.FraudProof != nil { + l = m.FraudProof.Size() + n += 1 + l + sovTypes(uint64(l)) + } + return n +} + +func (m *ResponseTriggerFraudProofGenerationMode) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Success { + n += 2 + } + return n +} + func (m *ConsensusParams) Size() (n int) { if m == nil { return 0 @@ -7807,24 +9070,97 @@ func (m *Snapshot) Size() (n int) { return n } -func sovTypes(x uint64) (n int) { - return (math_bits.Len64(x|1) + 6) / 7 -} -func sozTypes(x uint64) (n int) { - return sovTypes(uint64((x << 1) ^ uint64((int64(x) >> 63)))) -} -func (m *Request) Unmarshal(dAtA []byte) error { - l := len(dAtA) - iNdEx := 0 - for iNdEx < l { - preIndex := iNdEx - var wire uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowTypes - } - if iNdEx >= l { - return io.ErrUnexpectedEOF +func (m *FraudProof) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.BlockHeight != 0 { + n += 1 + sovTypes(uint64(m.BlockHeight)) + } + l = len(m.AppHash) + if l > 0 { + n += 1 + l + sovTypes(uint64(l)) + } + if len(m.StateWitness) > 0 { + for k, v := range m.StateWitness { + _ = k + _ = v + l = 0 + if v != nil { + l = v.Size() + l += 1 + sovTypes(uint64(l)) + } + mapEntrySize := 1 + len(k) + sovTypes(uint64(len(k))) + l + n += mapEntrySize + 1 + sovTypes(uint64(mapEntrySize)) + } + } + return n +} + +func (m *StateWitness) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.ProofOp != nil { + l = m.ProofOp.Size() + n += 1 + l + sovTypes(uint64(l)) + } + l = len(m.RootHash) + if l > 0 { + n += 1 + l + sovTypes(uint64(l)) + } + if len(m.WitnessData) > 0 { + for _, e := range m.WitnessData { + l = e.Size() + n += 1 + l + sovTypes(uint64(l)) + } + } + return n +} + +func (m *WitnessData) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Key) + if l > 0 { + n += 1 + l + sovTypes(uint64(l)) + } + l = len(m.Value) + if l > 0 { + n += 1 + l + sovTypes(uint64(l)) + } + if m.Proof != nil { + l = m.Proof.Size() + n += 1 + l + sovTypes(uint64(l)) + } + return n +} + +func sovTypes(x uint64) (n int) { + return (math_bits.Len64(x|1) + 6) / 7 +} +func sozTypes(x uint64) (n int) { + return sovTypes(uint64((x << 1) ^ uint64((int64(x) >> 63)))) +} +func (m *Request) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF } b := dAtA[iNdEx] iNdEx++ @@ -8367,6 +9703,111 @@ func (m *Request) Unmarshal(dAtA []byte) error { } m.Value = &Request_ApplySnapshotChunk{v} iNdEx = postIndex + case 16: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field GetAppHash", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &RequestGetAppHash{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Value = &Request_GetAppHash{v} + iNdEx = postIndex + case 17: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field GenerateFraudProof", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &RequestGenerateFraudProof{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Value = &Request_GenerateFraudProof{v} + iNdEx = postIndex + case 18: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field TriggerFraudProofGenerationMode", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &RequestTriggerFraudProofGenerationMode{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Value = &Request_TriggerFraudProofGenerationMode{v} + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTypes(dAtA[iNdEx:]) @@ -10049,7 +11490,7 @@ func (m *RequestApplySnapshotChunk) Unmarshal(dAtA []byte) error { } return nil } -func (m *Response) Unmarshal(dAtA []byte) error { +func (m *RequestGetAppHash) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -10072,79 +11513,229 @@ func (m *Response) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: Response: wiretype end group for non-group") + return fmt.Errorf("proto: RequestGetAppHash: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: Response: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: RequestGetAppHash: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { - case 1: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Exception", wireType) - } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowTypes - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } - } - if msglen < 0 { - return ErrInvalidLengthTypes + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err } - postIndex := iNdEx + msglen - if postIndex < 0 { + if (skippy < 0) || (iNdEx+skippy) < 0 { return ErrInvalidLengthTypes } - if postIndex > l { + if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - v := &ResponseException{} - if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *RequestGenerateFraudProof) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes } - m.Value = &Response_Exception{v} - iNdEx = postIndex - case 2: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Echo", wireType) + if iNdEx >= l { + return io.ErrUnexpectedEOF } - var msglen int - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowTypes - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - msglen |= int(b&0x7F) << shift - if b < 0x80 { - break - } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break } - if msglen < 0 { - return ErrInvalidLengthTypes + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: RequestGenerateFraudProof: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: RequestGenerateFraudProof: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err } - postIndex := iNdEx + msglen - if postIndex < 0 { + if (skippy < 0) || (iNdEx+skippy) < 0 { return ErrInvalidLengthTypes } - if postIndex > l { + if (iNdEx + skippy) > l { return io.ErrUnexpectedEOF } - v := &ResponseEcho{} - if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *RequestTriggerFraudProofGenerationMode) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: RequestTriggerFraudProofGenerationMode: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: RequestTriggerFraudProofGenerationMode: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *Response) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: Response: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: Response: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Exception", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &ResponseException{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Value = &Response_Exception{v} + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Echo", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &ResponseEcho{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err } m.Value = &Response_Echo{v} iNdEx = postIndex @@ -10638,6 +12229,111 @@ func (m *Response) Unmarshal(dAtA []byte) error { } m.Value = &Response_ApplySnapshotChunk{v} iNdEx = postIndex + case 17: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field GetAppHash", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &ResponseGetAppHash{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Value = &Response_GetAppHash{v} + iNdEx = postIndex + case 18: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field GenerateFraudProof", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &ResponseGenerateFraudProof{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Value = &Response_GenerateFraudProof{v} + iNdEx = postIndex + case 19: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field TriggerFraudProofGenerationMode", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &ResponseTriggerFraudProofGenerationMode{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.Value = &Response_TriggerFraudProofGenerationMode{v} + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTypes(dAtA[iNdEx:]) @@ -13033,7 +14729,7 @@ func (m *ResponseApplySnapshotChunk) Unmarshal(dAtA []byte) error { } return nil } -func (m *ConsensusParams) Unmarshal(dAtA []byte) error { +func (m *ResponseGetAppHash) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -13056,17 +14752,17 @@ func (m *ConsensusParams) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: ConsensusParams: wiretype end group for non-group") + return fmt.Errorf("proto: ResponseGetAppHash: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: ConsensusParams: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: ResponseGetAppHash: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field Block", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field AppHash", wireType) } - var msglen int + var byteLen int for shift := uint(0); ; shift += 7 { if shift >= 64 { return ErrIntOverflowTypes @@ -13076,12 +14772,252 @@ func (m *ConsensusParams) Unmarshal(dAtA []byte) error { } b := dAtA[iNdEx] iNdEx++ - msglen |= int(b&0x7F) << shift + byteLen |= int(b&0x7F) << shift if b < 0x80 { break } } - if msglen < 0 { + if byteLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.AppHash = append(m.AppHash[:0], dAtA[iNdEx:postIndex]...) + if m.AppHash == nil { + m.AppHash = []byte{} + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *ResponseGenerateFraudProof) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: ResponseGenerateFraudProof: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ResponseGenerateFraudProof: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field FraudProof", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.FraudProof == nil { + m.FraudProof = &FraudProof{} + } + if err := m.FraudProof.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *ResponseTriggerFraudProofGenerationMode) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: ResponseTriggerFraudProofGenerationMode: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ResponseTriggerFraudProofGenerationMode: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Success", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.Success = bool(v != 0) + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *ConsensusParams) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: ConsensusParams: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ConsensusParams: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Block", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { return ErrInvalidLengthTypes } postIndex := iNdEx + msglen @@ -14483,6 +16419,546 @@ func (m *Snapshot) Unmarshal(dAtA []byte) error { } return nil } +func (m *FraudProof) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: FraudProof: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: FraudProof: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field BlockHeight", wireType) + } + m.BlockHeight = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.BlockHeight |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field AppHash", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.AppHash = append(m.AppHash[:0], dAtA[iNdEx:postIndex]...) + if m.AppHash == nil { + m.AppHash = []byte{} + } + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field StateWitness", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.StateWitness == nil { + m.StateWitness = make(map[string]*StateWitness) + } + var mapkey string + var mapvalue *StateWitness + for iNdEx < postIndex { + entryPreIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + if fieldNum == 1 { + var stringLenmapkey uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLenmapkey |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLenmapkey := int(stringLenmapkey) + if intStringLenmapkey < 0 { + return ErrInvalidLengthTypes + } + postStringIndexmapkey := iNdEx + intStringLenmapkey + if postStringIndexmapkey < 0 { + return ErrInvalidLengthTypes + } + if postStringIndexmapkey > l { + return io.ErrUnexpectedEOF + } + mapkey = string(dAtA[iNdEx:postStringIndexmapkey]) + iNdEx = postStringIndexmapkey + } else if fieldNum == 2 { + var mapmsglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + mapmsglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if mapmsglen < 0 { + return ErrInvalidLengthTypes + } + postmsgIndex := iNdEx + mapmsglen + if postmsgIndex < 0 { + return ErrInvalidLengthTypes + } + if postmsgIndex > l { + return io.ErrUnexpectedEOF + } + mapvalue = &StateWitness{} + if err := mapvalue.Unmarshal(dAtA[iNdEx:postmsgIndex]); err != nil { + return err + } + iNdEx = postmsgIndex + } else { + iNdEx = entryPreIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > postIndex { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + m.StateWitness[mapkey] = mapvalue + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *StateWitness) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: StateWitness: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: StateWitness: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ProofOp", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.ProofOp == nil { + m.ProofOp = &crypto.ProofOp{} + } + if err := m.ProofOp.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field RootHash", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.RootHash = append(m.RootHash[:0], dAtA[iNdEx:postIndex]...) + if m.RootHash == nil { + m.RootHash = []byte{} + } + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field WitnessData", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.WitnessData = append(m.WitnessData, &WitnessData{}) + if err := m.WitnessData[len(m.WitnessData)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *WitnessData) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: WitnessData: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: WitnessData: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Key = append(m.Key[:0], dAtA[iNdEx:postIndex]...) + if m.Key == nil { + m.Key = []byte{} + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Value = append(m.Value[:0], dAtA[iNdEx:postIndex]...) + if m.Value == nil { + m.Value = []byte{} + } + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Proof", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Proof == nil { + m.Proof = &crypto.ProofOp{} + } + if err := m.Proof.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func skipTypes(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 diff --git a/proto/tendermint/abci/types.proto b/proto/tendermint/abci/types.proto index 340800f46b4..0e02d0ad441 100644 --- a/proto/tendermint/abci/types.proto +++ b/proto/tendermint/abci/types.proto @@ -36,6 +36,9 @@ message Request { RequestOfferSnapshot offer_snapshot = 13; RequestLoadSnapshotChunk load_snapshot_chunk = 14; RequestApplySnapshotChunk apply_snapshot_chunk = 15; + RequestGetAppHash get_app_hash = 16; + RequestGenerateFraudProof generate_fraud_proof = 17; + RequestTriggerFraudProofGenerationMode trigger_fraud_proof_generation_mode = 18; } } @@ -124,6 +127,15 @@ message RequestApplySnapshotChunk { string sender = 3; } +// Gets the current appHash +message RequestGetAppHash {} + +// Generates a fraud proof +message RequestGenerateFraudProof {} + +// Triggers fraud proof generation mode +message RequestTriggerFraudProofGenerationMode {} + //---------------------------------------- // Response types @@ -145,6 +157,9 @@ message Response { ResponseOfferSnapshot offer_snapshot = 14; ResponseLoadSnapshotChunk load_snapshot_chunk = 15; ResponseApplySnapshotChunk apply_snapshot_chunk = 16; + ResponseGetAppHash get_app_hash = 17; + ResponseGenerateFraudProof generate_fraud_proof = 18; + ResponseTriggerFraudProofGenerationMode trigger_fraud_proof_generation_mode = 19; } } @@ -282,6 +297,18 @@ message ResponseApplySnapshotChunk { } } +message ResponseGetAppHash { + bytes app_hash = 1; +} + +message ResponseGenerateFraudProof { + FraudProof fraudProof = 1; +} + +message ResponseTriggerFraudProofGenerationMode { + bool success = 1; +} + //---------------------------------------- // Misc. @@ -389,6 +416,30 @@ message Snapshot { bytes metadata = 5; // Arbitrary application metadata } +// Represents a single-round fraudProof +message FraudProof { + int64 block_height = 1; + bytes appHash = 2; + map stateWitness = 3; +} + +// State witness with a list of all witness data +message StateWitness { + // store level proof + tendermint.crypto.ProofOp proof_op = 1; + // substore level hash + bytes rootHash = 2; + // List of witness data + repeated WitnessData witnessData = 3; +} + +// Witness data containing a key/value pair and a SMT proof for said key/value pair +message WitnessData { + bytes key = 1; + bytes value = 2; + tendermint.crypto.ProofOp proof = 3; +} + //---------------------------------------- // Service Definition @@ -410,4 +461,7 @@ service ABCIApplication { returns (ResponseLoadSnapshotChunk); rpc ApplySnapshotChunk(RequestApplySnapshotChunk) returns (ResponseApplySnapshotChunk); + rpc GetAppHash(RequestGetAppHash) returns (ResponseGetAppHash); + rpc GenerateFraudProof(RequestGenerateFraudProof) returns (ResponseGenerateFraudProof); + rpc TriggerFraudProofGenerationMode(RequestTriggerFraudProofGenerationMode) returns (ResponseTriggerFraudProofGenerationMode); } diff --git a/proxy/app_conn.go b/proxy/app_conn.go index 690c08df9f7..5aa3d78c1d0 100644 --- a/proxy/app_conn.go +++ b/proxy/app_conn.go @@ -20,6 +20,9 @@ type AppConnConsensus interface { DeliverTxAsync(types.RequestDeliverTx) *abcicli.ReqRes EndBlockSync(types.RequestEndBlock) (*types.ResponseEndBlock, error) CommitSync() (*types.ResponseCommit, error) + GetAppHashSync(types.RequestGetAppHash) (*types.ResponseGetAppHash, error) + GenerateFraudProofSync(types.RequestGenerateFraudProof) (*types.ResponseGenerateFraudProof, error) + TriggerFraudProofGenerationModeSync(types.RequestTriggerFraudProofGenerationMode) (*types.ResponseTriggerFraudProofGenerationMode, error) } type AppConnMempool interface { @@ -93,6 +96,18 @@ func (app *appConnConsensus) CommitSync() (*types.ResponseCommit, error) { return app.appConn.CommitSync() } +func (app *appConnConsensus) GetAppHashSync(req types.RequestGetAppHash) (*types.ResponseGetAppHash, error) { + return app.appConn.GetAppHashSync(req) +} + +func (app *appConnConsensus) GenerateFraudProofSync(req types.RequestGenerateFraudProof) (*types.ResponseGenerateFraudProof, error) { + return app.appConn.GenerateFraudProofSync(req) +} + +func (app *appConnConsensus) TriggerFraudProofGenerationModeSync(req types.RequestTriggerFraudProofGenerationMode) (*types.ResponseTriggerFraudProofGenerationMode, error) { + return app.appConn.TriggerFraudProofGenerationModeSync(req) +} + //------------------------------------------------ // Implements AppConnMempool (subset of abcicli.Client) From 6fd335fd69aadcaef944345b46874bf07a0eda22 Mon Sep 17 00:00:00 2001 From: Manav Aggarwal Date: Wed, 24 Aug 2022 00:40:33 -0400 Subject: [PATCH 2/5] Add abci methods to mock --- abci/client/mocks/client.go | 70 +++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) diff --git a/abci/client/mocks/client.go b/abci/client/mocks/client.go index 6d7f99b0f52..3894b05c80a 100644 --- a/abci/client/mocks/client.go +++ b/abci/client/mocks/client.go @@ -614,6 +614,76 @@ func (_m *Client) QuerySync(_a0 types.RequestQuery) (*types.ResponseQuery, error return r0, r1 } +// GetAppHashSync provides a mock function with given fields: _a0 +func (_m *Client) GetAppHashSync(_a0 types.RequestGetAppHash) (*types.ResponseGetAppHash, error) { + ret := _m.Called(_a0) + + var r0 *types.ResponseGetAppHash + if rf, ok := ret.Get(0).(func(types.RequestGetAppHash) *types.ResponseGetAppHash); ok { + r0 = rf(_a0) + } else { + if ret.Get(0) != nil { + r0 = ret.Get(0).(*types.ResponseGetAppHash) + } + } + + var r1 error + if rf, ok := ret.Get(1).(func(types.RequestGetAppHash) error); ok { + r1 = rf(_a0) + } else { + r1 = ret.Error(1) + } + + return r0, r1 +} + + +// GenerateFraudProofSync provides a mock function with given fields: _a0 +func (_m *Client) GenerateFraudProofSync(_a0 types.RequestGenerateFraudProof) (*types.ResponseGenerateFraudProof, error) { + ret := _m.Called(_a0) + + var r0 *types.ResponseGenerateFraudProof + if rf, ok := ret.Get(0).(func(types.RequestGenerateFraudProof) *types.ResponseGenerateFraudProof); ok { + r0 = rf(_a0) + } else { + if ret.Get(0) != nil { + r0 = ret.Get(0).(*types.ResponseGenerateFraudProof) + } + } + + var r1 error + if rf, ok := ret.Get(1).(func(types.RequestGenerateFraudProof) error); ok { + r1 = rf(_a0) + } else { + r1 = ret.Error(1) + } + + return r0, r1 +} + +// GetAppHashSync provides a mock function with given fields: _a0 +func (_m *Client) TriggerFraudProofGenerationModeSync(_a0 types.RequestTriggerFraudProofGenerationMode) (*types.ResponseTriggerFraudProofGenerationMode, error) { + ret := _m.Called(_a0) + + var r0 *types.ResponseTriggerFraudProofGenerationMode + if rf, ok := ret.Get(0).(func(types.RequestTriggerFraudProofGenerationMode) *types.ResponseTriggerFraudProofGenerationMode); ok { + r0 = rf(_a0) + } else { + if ret.Get(0) != nil { + r0 = ret.Get(0).(*types.ResponseTriggerFraudProofGenerationMode) + } + } + + var r1 error + if rf, ok := ret.Get(1).(func(types.RequestTriggerFraudProofGenerationMode) error); ok { + r1 = rf(_a0) + } else { + r1 = ret.Error(1) + } + + return r0, r1 +} + // Quit provides a mock function with given fields: func (_m *Client) Quit() <-chan struct{} { ret := _m.Called() From 96cbf819fc96cf2bc20682f0a474d64e70be9fe4 Mon Sep 17 00:00:00 2001 From: Manav Aggarwal Date: Wed, 24 Aug 2022 13:19:06 -0400 Subject: [PATCH 3/5] fix linter errors --- abci/types/types.pb.go | 410 +++++++++++++++--------------- proto/tendermint/abci/types.proto | 10 +- 2 files changed, 210 insertions(+), 210 deletions(-) diff --git a/abci/types/types.pb.go b/abci/types/types.pb.go index 0c7ba0c7a0a..dbf2ce66c39 100644 --- a/abci/types/types.pb.go +++ b/abci/types/types.pb.go @@ -2725,7 +2725,7 @@ func (m *ResponseGetAppHash) GetAppHash() []byte { } type ResponseGenerateFraudProof struct { - FraudProof *FraudProof `protobuf:"bytes,1,opt,name=fraudProof,proto3" json:"fraudProof,omitempty"` + FraudProof *FraudProof `protobuf:"bytes,1,opt,name=fraud_proof,json=fraudProof,proto3" json:"fraud_proof,omitempty"` } func (m *ResponseGenerateFraudProof) Reset() { *m = ResponseGenerateFraudProof{} } @@ -3499,8 +3499,8 @@ func (m *Snapshot) GetMetadata() []byte { // Represents a single-round fraudProof type FraudProof struct { BlockHeight int64 `protobuf:"varint,1,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"` - AppHash []byte `protobuf:"bytes,2,opt,name=appHash,proto3" json:"appHash,omitempty"` - StateWitness map[string]*StateWitness `protobuf:"bytes,3,rep,name=stateWitness,proto3" json:"stateWitness,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + AppHash []byte `protobuf:"bytes,2,opt,name=app_hash,json=appHash,proto3" json:"app_hash,omitempty"` + StateWitness map[string]*StateWitness `protobuf:"bytes,3,rep,name=state_witness,json=stateWitness,proto3" json:"state_witness,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` } func (m *FraudProof) Reset() { *m = FraudProof{} } @@ -3562,9 +3562,9 @@ type StateWitness struct { // store level proof ProofOp *crypto.ProofOp `protobuf:"bytes,1,opt,name=proof_op,json=proofOp,proto3" json:"proof_op,omitempty"` // substore level hash - RootHash []byte `protobuf:"bytes,2,opt,name=rootHash,proto3" json:"rootHash,omitempty"` + RootHash []byte `protobuf:"bytes,2,opt,name=root_hash,json=rootHash,proto3" json:"root_hash,omitempty"` // List of witness data - WitnessData []*WitnessData `protobuf:"bytes,3,rep,name=witnessData,proto3" json:"witnessData,omitempty"` + WitnessData []*WitnessData `protobuf:"bytes,3,rep,name=witness_data,json=witnessData,proto3" json:"witness_data,omitempty"` } func (m *StateWitness) Reset() { *m = StateWitness{} } @@ -3746,207 +3746,207 @@ func init() { func init() { proto.RegisterFile("tendermint/abci/types.proto", fileDescriptor_252557cfdd89a31a) } var fileDescriptor_252557cfdd89a31a = []byte{ - // 3188 bytes of a gzipped FileDescriptorProto + // 3193 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x5a, 0xcb, 0x73, 0x1b, 0xc7, - 0xd1, 0xc7, 0xe2, 0x8d, 0x06, 0x08, 0x82, 0x23, 0x59, 0x86, 0x21, 0x99, 0x94, 0x57, 0xe5, 0x97, - 0x6c, 0x93, 0x36, 0x55, 0xb2, 0xe5, 0xc7, 0x67, 0x9b, 0x84, 0x20, 0x81, 0x96, 0x4c, 0xd2, 0x4b, - 0x48, 0xfa, 0xfc, 0x7d, 0xb1, 0xd6, 0x0b, 0x60, 0x08, 0xac, 0x05, 0xec, 0xae, 0x77, 0x07, 0x14, - 0xe9, 0x63, 0x2a, 0xa9, 0xa4, 0x9c, 0x8b, 0x0f, 0x39, 0xa4, 0x52, 0xe5, 0x43, 0xfe, 0x8b, 0x9c, - 0x72, 0xf1, 0xc5, 0x55, 0xb9, 0xf8, 0x98, 0x43, 0xca, 0x71, 0xd9, 0xb7, 0xfc, 0x03, 0xb9, 0x24, - 0x95, 0xd4, 0x3c, 0x76, 0x77, 0x16, 0xc0, 0x02, 0xa0, 0xec, 0x5b, 0x6e, 0xdb, 0xb3, 0xdd, 0x3d, - 0x33, 0x3d, 0x33, 0xdd, 0xbf, 0xee, 0x19, 0x38, 0x4f, 0xb0, 0xd5, 0xc5, 0xee, 0xd0, 0xb4, 0xc8, - 0x86, 0xd1, 0xee, 0x98, 0x1b, 0xe4, 0xc4, 0xc1, 0xde, 0xba, 0xe3, 0xda, 0xc4, 0x46, 0xcb, 0xe1, - 0xcf, 0x75, 0xfa, 0xb3, 0xf6, 0xa4, 0xc4, 0xdd, 0x71, 0x4f, 0x1c, 0x62, 0x6f, 0x38, 0xae, 0x6d, - 0x1f, 0x72, 0xfe, 0xda, 0x05, 0xe9, 0x37, 0xd3, 0x23, 0x6b, 0x8b, 0xfc, 0x15, 0xc2, 0x0f, 0xf0, - 0x89, 0xff, 0xf7, 0xc9, 0x09, 0x59, 0xc7, 0x70, 0x8d, 0xa1, 0xff, 0x7b, 0xad, 0x67, 0xdb, 0xbd, - 0x01, 0xde, 0x60, 0x54, 0x7b, 0x74, 0xb8, 0x41, 0xcc, 0x21, 0xf6, 0x88, 0x31, 0x74, 0x04, 0xc3, - 0xd9, 0x9e, 0xdd, 0xb3, 0xd9, 0xe7, 0x06, 0xfd, 0xe2, 0xad, 0xea, 0x57, 0x00, 0x39, 0x0d, 0x7f, - 0x3a, 0xc2, 0x1e, 0x41, 0x9b, 0x90, 0xc6, 0x9d, 0xbe, 0x5d, 0x55, 0x2e, 0x2a, 0xcf, 0x15, 0x37, - 0x2f, 0xac, 0x8f, 0x4d, 0x6e, 0x5d, 0xf0, 0x35, 0x3a, 0x7d, 0xbb, 0x99, 0xd0, 0x18, 0x2f, 0xba, - 0x0a, 0x99, 0xc3, 0xc1, 0xc8, 0xeb, 0x57, 0x93, 0x4c, 0xe8, 0xc9, 0x38, 0xa1, 0x1b, 0x94, 0xa9, - 0x99, 0xd0, 0x38, 0x37, 0xed, 0xca, 0xb4, 0x0e, 0xed, 0x6a, 0x6a, 0x76, 0x57, 0x3b, 0xd6, 0x21, - 0xeb, 0x8a, 0xf2, 0xa2, 0x6d, 0x00, 0x0f, 0x13, 0xdd, 0x76, 0x88, 0x69, 0x5b, 0xd5, 0x34, 0x93, - 0x7c, 0x2a, 0x4e, 0xf2, 0x00, 0x93, 0x3d, 0xc6, 0xd8, 0x4c, 0x68, 0x05, 0xcf, 0x27, 0xa8, 0x0e, - 0xd3, 0x32, 0x89, 0xde, 0xe9, 0x1b, 0xa6, 0x55, 0xcd, 0xcc, 0xd6, 0xb1, 0x63, 0x99, 0xa4, 0x4e, - 0x19, 0xa9, 0x0e, 0xd3, 0x27, 0xe8, 0x94, 0x3f, 0x1d, 0x61, 0xf7, 0xa4, 0x9a, 0x9d, 0x3d, 0xe5, - 0x0f, 0x28, 0x13, 0x9d, 0x32, 0xe3, 0x46, 0x0d, 0x28, 0xb6, 0x71, 0xcf, 0xb4, 0xf4, 0xf6, 0xc0, - 0xee, 0x3c, 0xa8, 0xe6, 0x98, 0xb0, 0x1a, 0x27, 0xbc, 0x4d, 0x59, 0xb7, 0x29, 0x67, 0x33, 0xa1, - 0x41, 0x3b, 0xa0, 0xd0, 0x5b, 0x90, 0xef, 0xf4, 0x71, 0xe7, 0x81, 0x4e, 0x8e, 0xab, 0x79, 0xa6, - 0x63, 0x2d, 0x4e, 0x47, 0x9d, 0xf2, 0xb5, 0x8e, 0x9b, 0x09, 0x2d, 0xd7, 0xe1, 0x9f, 0x74, 0xfe, - 0x5d, 0x3c, 0x30, 0x8f, 0xb0, 0x4b, 0xe5, 0x0b, 0xb3, 0xe7, 0x7f, 0x9d, 0x73, 0x32, 0x0d, 0x85, - 0xae, 0x4f, 0xa0, 0x77, 0xa0, 0x80, 0xad, 0xae, 0x98, 0x06, 0x30, 0x15, 0x17, 0x63, 0xf7, 0x8a, - 0xd5, 0xf5, 0x27, 0x91, 0xc7, 0xe2, 0x1b, 0x5d, 0x83, 0x6c, 0xc7, 0x1e, 0x0e, 0x4d, 0x52, 0x2d, - 0x32, 0xe9, 0xd5, 0xd8, 0x09, 0x30, 0xae, 0x66, 0x42, 0x13, 0xfc, 0x68, 0x17, 0xca, 0x03, 0xd3, - 0x23, 0xba, 0x67, 0x19, 0x8e, 0xd7, 0xb7, 0x89, 0x57, 0x2d, 0x31, 0x0d, 0x4f, 0xc7, 0x69, 0xb8, - 0x6d, 0x7a, 0xe4, 0xc0, 0x67, 0x6e, 0x26, 0xb4, 0xa5, 0x81, 0xdc, 0x40, 0xf5, 0xd9, 0x87, 0x87, - 0xd8, 0x0d, 0x14, 0x56, 0x97, 0x66, 0xeb, 0xdb, 0xa3, 0xdc, 0xbe, 0x3c, 0xd5, 0x67, 0xcb, 0x0d, - 0xe8, 0xff, 0xe1, 0xcc, 0xc0, 0x36, 0xba, 0x81, 0x3a, 0xbd, 0xd3, 0x1f, 0x59, 0x0f, 0xaa, 0x65, - 0xa6, 0xf4, 0xf9, 0xd8, 0x41, 0xda, 0x46, 0xd7, 0x57, 0x51, 0xa7, 0x02, 0xcd, 0x84, 0xb6, 0x32, - 0x18, 0x6f, 0x44, 0xf7, 0xe1, 0xac, 0xe1, 0x38, 0x83, 0x93, 0x71, 0xed, 0xcb, 0x4c, 0xfb, 0xe5, - 0x38, 0xed, 0x5b, 0x54, 0x66, 0x5c, 0x3d, 0x32, 0x26, 0x5a, 0xd1, 0x0d, 0x28, 0xf5, 0x30, 0xd1, - 0x0d, 0xc7, 0xd1, 0xfb, 0x86, 0xd7, 0xaf, 0x56, 0x66, 0xef, 0xd0, 0x9b, 0x98, 0xaa, 0x6e, 0x1a, - 0xec, 0x58, 0x43, 0x2f, 0xa0, 0xe8, 0x38, 0x7b, 0xd8, 0xc2, 0xae, 0x41, 0xb0, 0x7e, 0xe8, 0x1a, - 0xa3, 0xae, 0xce, 0x5c, 0x60, 0x75, 0x65, 0xf6, 0x38, 0x6f, 0x0a, 0x99, 0x1b, 0x54, 0x64, 0x9f, - 0x4a, 0xd0, 0x71, 0xf6, 0x26, 0x5a, 0xd1, 0xaf, 0x14, 0xb8, 0x44, 0x5c, 0xb3, 0xd7, 0xc3, 0xae, - 0xac, 0x5f, 0x17, 0xac, 0xa6, 0x6d, 0xe9, 0x43, 0xbb, 0x8b, 0xab, 0x88, 0xf5, 0xf7, 0x5a, 0x5c, - 0x7f, 0x2d, 0xae, 0x22, 0x54, 0x7c, 0x33, 0x90, 0x7f, 0xdf, 0xee, 0xe2, 0x66, 0x42, 0x5b, 0x23, - 0xb3, 0x59, 0xb6, 0x73, 0x90, 0x39, 0x32, 0x06, 0x23, 0xac, 0x3e, 0x0b, 0x45, 0xc9, 0x39, 0xa2, - 0x2a, 0xe4, 0x86, 0xd8, 0xf3, 0x8c, 0x1e, 0x66, 0xbe, 0xb4, 0xa0, 0xf9, 0xa4, 0x5a, 0x86, 0x92, - 0xec, 0x10, 0xd5, 0x61, 0x20, 0x48, 0x5d, 0x1d, 0x15, 0x3c, 0xc2, 0xae, 0x47, 0xfd, 0x9b, 0x10, - 0x14, 0x24, 0xba, 0x04, 0x4b, 0xec, 0xc0, 0xe9, 0xfe, 0x7f, 0xea, 0x6f, 0xd3, 0x5a, 0x89, 0x35, - 0xde, 0x15, 0x4c, 0x6b, 0x50, 0x74, 0x36, 0x9d, 0x80, 0x25, 0xc5, 0x58, 0xc0, 0xd9, 0x74, 0x04, - 0x83, 0xfa, 0x06, 0x54, 0xc6, 0xfd, 0x23, 0xaa, 0x40, 0xea, 0x01, 0x3e, 0x11, 0xfd, 0xd1, 0x4f, - 0x74, 0x56, 0x4c, 0x8b, 0xf5, 0x51, 0xd0, 0xc4, 0x1c, 0xff, 0x9c, 0x0c, 0x84, 0x03, 0xc7, 0x88, - 0xae, 0x41, 0x9a, 0xc6, 0x19, 0x11, 0x32, 0x6a, 0xeb, 0x3c, 0x08, 0xad, 0xfb, 0x41, 0x68, 0xbd, - 0xe5, 0x07, 0xa1, 0xed, 0xfc, 0xd7, 0xdf, 0xae, 0x25, 0xbe, 0xf8, 0xdb, 0x9a, 0xa2, 0x31, 0x09, - 0xf4, 0x04, 0xf5, 0x63, 0x86, 0x69, 0xe9, 0x66, 0x57, 0xf4, 0x93, 0x63, 0xf4, 0x4e, 0x17, 0xdd, - 0x82, 0x4a, 0xc7, 0xb6, 0x3c, 0x6c, 0x79, 0x23, 0x4f, 0xe7, 0x41, 0x4e, 0x04, 0x8a, 0x49, 0x3f, - 0x53, 0xf7, 0x19, 0xf7, 0x19, 0x9f, 0xb6, 0xdc, 0x89, 0x36, 0xa0, 0x1b, 0x00, 0x47, 0xc6, 0xc0, - 0xec, 0x1a, 0xc4, 0x76, 0xbd, 0x6a, 0xfa, 0x62, 0x6a, 0xaa, 0x9a, 0xbb, 0x3e, 0xcb, 0x1d, 0xa7, - 0x6b, 0x10, 0xbc, 0x9d, 0xa6, 0xa3, 0xd5, 0x24, 0x49, 0xf4, 0x0c, 0x2c, 0xd3, 0x93, 0xe1, 0x11, - 0xba, 0xad, 0xdb, 0x27, 0x04, 0x7b, 0x2c, 0x7c, 0x94, 0xb4, 0x25, 0xc3, 0x71, 0x0e, 0x68, 0xeb, - 0x36, 0x6d, 0x44, 0x4f, 0x43, 0x99, 0x86, 0x0a, 0xd3, 0x18, 0xe8, 0x7d, 0x6c, 0xf6, 0xfa, 0x84, - 0x85, 0x89, 0x94, 0xb6, 0x24, 0x5a, 0x9b, 0xac, 0x51, 0xed, 0x06, 0x1b, 0x81, 0x85, 0x09, 0x84, - 0x20, 0xdd, 0x35, 0x88, 0xc1, 0x0c, 0x59, 0xd2, 0xd8, 0x37, 0x6d, 0x73, 0x0c, 0xd2, 0x17, 0xe6, - 0x61, 0xdf, 0xe8, 0x1c, 0x64, 0x85, 0xda, 0x14, 0x53, 0x2b, 0x28, 0xba, 0x66, 0x8e, 0x6b, 0x1f, - 0x61, 0x16, 0x17, 0xf3, 0x1a, 0x27, 0xd4, 0x5f, 0x24, 0x61, 0x65, 0x22, 0xa0, 0x50, 0xbd, 0xec, - 0x80, 0x8b, 0xbe, 0xe8, 0x37, 0x7a, 0x95, 0xea, 0x35, 0xba, 0xd8, 0x15, 0x81, 0xbc, 0x2a, 0x9b, - 0x88, 0x83, 0x94, 0x26, 0xfb, 0x2f, 0x4c, 0x23, 0xb8, 0xd1, 0x1e, 0x54, 0x06, 0x86, 0x47, 0x74, - 0xee, 0xa0, 0x75, 0x29, 0xa8, 0x4f, 0x86, 0xa5, 0xdb, 0x86, 0xef, 0xd2, 0xe9, 0x66, 0x17, 0x8a, - 0xca, 0x83, 0x48, 0x2b, 0xd2, 0xe0, 0x6c, 0xfb, 0xe4, 0x33, 0xc3, 0x22, 0xa6, 0x85, 0xf5, 0x89, - 0x95, 0x7b, 0x62, 0x42, 0x69, 0xe3, 0xc8, 0xec, 0x62, 0xab, 0xe3, 0x2f, 0xd9, 0x99, 0x40, 0x38, - 0x58, 0x52, 0x4f, 0xd5, 0xa0, 0x1c, 0x0d, 0x89, 0xa8, 0x0c, 0x49, 0x72, 0x2c, 0x0c, 0x90, 0x24, - 0xc7, 0xe8, 0x65, 0x48, 0xd3, 0x49, 0xb2, 0xc9, 0x97, 0xa7, 0xe0, 0x11, 0x21, 0xd7, 0x3a, 0x71, - 0xb0, 0xc6, 0x38, 0x55, 0x35, 0x38, 0x0d, 0x41, 0x98, 0x1c, 0xd7, 0xaa, 0x3e, 0x0f, 0xcb, 0x63, - 0x71, 0x50, 0x5a, 0x3f, 0x45, 0x5e, 0x3f, 0x75, 0x19, 0x96, 0x22, 0x41, 0x4f, 0x3d, 0x07, 0x67, - 0xa7, 0xc5, 0x30, 0xb5, 0x1f, 0xb4, 0x47, 0x62, 0x11, 0xba, 0x0a, 0xf9, 0x20, 0x88, 0xf1, 0xd3, - 0x38, 0x69, 0x2b, 0x9f, 0x59, 0x0b, 0x58, 0xe9, 0x31, 0x0c, 0x1c, 0x7e, 0x92, 0x0d, 0x3c, 0x67, - 0x70, 0x3f, 0xae, 0x7e, 0x0c, 0xd5, 0xb8, 0x00, 0x35, 0x36, 0x8d, 0x74, 0xb0, 0x0d, 0xcf, 0x41, - 0xf6, 0xd0, 0x76, 0x87, 0x06, 0x61, 0xca, 0x96, 0x34, 0x41, 0xd1, 0xed, 0xc9, 0x83, 0x55, 0x8a, - 0x35, 0x73, 0x42, 0xd5, 0xe1, 0x89, 0xd8, 0x20, 0x45, 0x45, 0x4c, 0xab, 0x8b, 0xb9, 0x3d, 0x97, - 0x34, 0x4e, 0x84, 0x8a, 0xf8, 0x60, 0x39, 0x41, 0xbb, 0xf5, 0xd8, 0x5c, 0x99, 0xfe, 0x82, 0x26, - 0x28, 0xf5, 0x4c, 0xb0, 0xfd, 0xc3, 0x68, 0xa5, 0x9e, 0x0f, 0x7a, 0x9d, 0x0c, 0x39, 0xea, 0x73, - 0xf0, 0xcc, 0x62, 0xf1, 0x41, 0xfd, 0x7d, 0x11, 0xf2, 0x1a, 0xf6, 0x1c, 0xea, 0x6f, 0xd0, 0x36, - 0x14, 0xf0, 0x71, 0x07, 0x73, 0x68, 0xaa, 0xc4, 0x06, 0x4e, 0xce, 0xdd, 0xf0, 0x39, 0x29, 0xae, - 0x0a, 0xc4, 0xd0, 0x15, 0x01, 0xbf, 0xe3, 0x91, 0xb4, 0x10, 0x97, 0xf1, 0xf7, 0xab, 0x3e, 0xfe, - 0x4e, 0xc5, 0x42, 0x29, 0x2e, 0x35, 0x06, 0xc0, 0xaf, 0x08, 0x00, 0x9e, 0x9e, 0xd3, 0x59, 0x04, - 0x81, 0xd7, 0x23, 0x08, 0x3c, 0x33, 0x67, 0x9a, 0x31, 0x10, 0xbc, 0x1e, 0x81, 0xe0, 0xd9, 0x39, - 0x4a, 0x62, 0x30, 0xf8, 0xab, 0x3e, 0x06, 0xcf, 0xcd, 0x99, 0xf6, 0x18, 0x08, 0xbf, 0x11, 0x05, - 0xe1, 0x1c, 0x40, 0x5f, 0x8a, 0x95, 0x8e, 0x45, 0xe1, 0xff, 0x23, 0xa1, 0xf0, 0x42, 0x2c, 0x04, - 0xe6, 0x4a, 0xa6, 0xc0, 0xf0, 0x7a, 0x04, 0x86, 0xc3, 0x1c, 0x1b, 0xc4, 0xe0, 0xf0, 0x77, 0x65, - 0x1c, 0x5e, 0x8c, 0x85, 0xf2, 0x62, 0xd3, 0x4c, 0x03, 0xe2, 0xaf, 0x07, 0x40, 0xbc, 0x14, 0x9b, - 0x49, 0x88, 0x39, 0x8c, 0x23, 0xf1, 0xbd, 0x09, 0x24, 0xce, 0x91, 0xf3, 0x33, 0xb1, 0x2a, 0xe6, - 0x40, 0xf1, 0xbd, 0x09, 0x28, 0x5e, 0x9e, 0xa3, 0x70, 0x0e, 0x16, 0xff, 0xd9, 0x74, 0x2c, 0x1e, - 0x8f, 0x96, 0xc5, 0x30, 0x17, 0x03, 0xe3, 0x7a, 0x0c, 0x18, 0xe7, 0xa0, 0xf9, 0x85, 0x58, 0xf5, - 0x0b, 0xa3, 0xf1, 0x9b, 0x63, 0x68, 0x7c, 0x65, 0xce, 0x56, 0x8d, 0x85, 0xe3, 0x7a, 0x0c, 0x1c, - 0x47, 0x73, 0x46, 0xba, 0x30, 0x1e, 0xff, 0xf5, 0x82, 0x78, 0xfc, 0x0c, 0xeb, 0xf0, 0x5a, 0x6c, - 0x87, 0x3f, 0x25, 0x20, 0x7f, 0x9e, 0x3a, 0xfe, 0x31, 0x6f, 0x4b, 0x63, 0x07, 0x76, 0x5d, 0xdb, - 0x15, 0x58, 0x97, 0x13, 0xea, 0x73, 0x14, 0x89, 0x85, 0x9e, 0x75, 0x06, 0x78, 0x67, 0x31, 0x5a, - 0xf2, 0xa6, 0xea, 0x1f, 0x95, 0x50, 0x96, 0x81, 0x17, 0x19, 0xc5, 0x15, 0x04, 0x8a, 0x93, 0x30, - 0x7d, 0x32, 0x8a, 0xe9, 0xd7, 0xa0, 0x48, 0x97, 0x77, 0x0c, 0xae, 0x1b, 0x8e, 0x0f, 0xd7, 0xd1, - 0x65, 0x58, 0x61, 0xe0, 0x8a, 0x23, 0x7f, 0x11, 0x70, 0xd3, 0x0c, 0x37, 0x2c, 0xd3, 0x1f, 0xfc, - 0x44, 0xf3, 0xc8, 0xfb, 0x12, 0x9c, 0x91, 0x78, 0x83, 0x6d, 0xc3, 0x31, 0x6a, 0x25, 0xe0, 0xf6, - 0x83, 0xe0, 0xfb, 0xa1, 0x81, 0xc2, 0x54, 0x00, 0x41, 0xba, 0x43, 0x57, 0x8a, 0x47, 0x5c, 0xf6, - 0x4d, 0xd3, 0x83, 0x81, 0xdd, 0x13, 0x71, 0x95, 0x7e, 0x52, 0xae, 0x20, 0x74, 0x14, 0x78, 0x64, - 0x50, 0xbf, 0x52, 0x42, 0x7d, 0x61, 0x76, 0x30, 0x0d, 0xc8, 0x2b, 0x3f, 0x0d, 0x90, 0x4f, 0x3e, - 0x32, 0x90, 0x97, 0x11, 0x4f, 0x2a, 0x8a, 0x78, 0xfe, 0xa1, 0x84, 0x2b, 0x1c, 0xc0, 0xf2, 0x47, - 0xb3, 0x48, 0x08, 0x5f, 0x32, 0x6c, 0xbd, 0x04, 0x7c, 0x11, 0xc9, 0x56, 0x96, 0xf5, 0x1b, 0x4d, - 0xb6, 0x72, 0x1c, 0xd0, 0x30, 0x02, 0x5d, 0x83, 0x02, 0x3f, 0x44, 0xb6, 0xe3, 0x89, 0x28, 0x75, - 0x5e, 0x9e, 0x2b, 0x2f, 0x0f, 0xae, 0xb3, 0x33, 0xb0, 0xe7, 0x78, 0x5a, 0xde, 0x11, 0x5f, 0x12, - 0x32, 0x2b, 0x44, 0x12, 0x84, 0x0b, 0x50, 0xa0, 0xa3, 0xf7, 0x1c, 0xa3, 0x83, 0x59, 0xc4, 0x29, - 0x68, 0x61, 0x83, 0x7a, 0x1f, 0xd0, 0x64, 0xcc, 0x43, 0x4d, 0xc8, 0xe2, 0x23, 0x6c, 0x11, 0xba, - 0x6a, 0xd4, 0xdc, 0xe7, 0xa6, 0xa0, 0x6f, 0x6c, 0x91, 0xed, 0x2a, 0x35, 0xf2, 0xdf, 0xbf, 0x5d, - 0xab, 0x70, 0xee, 0x17, 0xed, 0xa1, 0x49, 0xf0, 0xd0, 0x21, 0x27, 0x9a, 0x90, 0x57, 0xff, 0x9a, - 0xa4, 0x50, 0x38, 0x12, 0x0f, 0xa7, 0xda, 0xd6, 0x3f, 0x40, 0x49, 0x29, 0x0d, 0x5a, 0xcc, 0xde, - 0xab, 0x00, 0x3d, 0xc3, 0xd3, 0x1f, 0x1a, 0x16, 0xc1, 0x5d, 0x61, 0x74, 0xa9, 0x05, 0xd5, 0x20, - 0x4f, 0xa9, 0x91, 0x87, 0xbb, 0x22, 0x23, 0x0b, 0x68, 0x69, 0x9e, 0xb9, 0x1f, 0x37, 0xcf, 0xa8, - 0x95, 0xf3, 0x63, 0x56, 0x96, 0x60, 0x6a, 0x41, 0x86, 0xa9, 0x74, 0x6c, 0x8e, 0x6b, 0xda, 0xae, - 0x49, 0x4e, 0xd8, 0xd2, 0xa4, 0xb4, 0x80, 0xa6, 0x89, 0xff, 0x10, 0x0f, 0x1d, 0xdb, 0x1e, 0xe8, - 0xdc, 0x79, 0x15, 0x99, 0x68, 0x49, 0x34, 0x36, 0x98, 0x0f, 0xfb, 0x65, 0x32, 0x3c, 0x7e, 0x61, - 0x3a, 0xf2, 0x5f, 0x67, 0x60, 0xf5, 0x37, 0xac, 0x46, 0x11, 0x45, 0x3c, 0xe8, 0x00, 0x56, 0x82, - 0xe3, 0xaf, 0x8f, 0x98, 0x5b, 0xf0, 0x37, 0xf4, 0xa2, 0xfe, 0xa3, 0x72, 0x14, 0x6d, 0xf6, 0xd0, - 0xff, 0xc2, 0xe3, 0x63, 0xae, 0x2d, 0x50, 0x9d, 0x5c, 0xd0, 0xc3, 0x3d, 0x16, 0xf5, 0x70, 0xbe, - 0xe6, 0xd0, 0x56, 0xa9, 0x1f, 0x79, 0xe8, 0x76, 0x68, 0xda, 0x2b, 0xe3, 0xb7, 0xa9, 0xab, 0x7f, - 0x09, 0x96, 0x5c, 0x4c, 0x0c, 0xd3, 0xd2, 0x23, 0x85, 0x85, 0x12, 0x6f, 0x14, 0xe5, 0x8a, 0x7d, - 0x78, 0x6c, 0x2a, 0x8e, 0x43, 0xaf, 0x41, 0x21, 0x84, 0x80, 0x4a, 0x4c, 0x8e, 0x1e, 0xe4, 0x9d, - 0x21, 0xaf, 0xfa, 0x27, 0x25, 0x54, 0x19, 0xcd, 0x64, 0x1b, 0x90, 0x75, 0xb1, 0x37, 0x1a, 0xf0, - 0xdc, 0xb2, 0xbc, 0xf9, 0xd2, 0x62, 0x08, 0x90, 0xb6, 0x8e, 0x06, 0x44, 0x13, 0xc2, 0xea, 0x7d, - 0xc8, 0xf2, 0x16, 0x54, 0x84, 0xdc, 0x9d, 0xdd, 0x5b, 0xbb, 0x7b, 0xf7, 0x76, 0x2b, 0x09, 0x04, - 0x90, 0xdd, 0xaa, 0xd7, 0x1b, 0xfb, 0xad, 0x8a, 0x82, 0x0a, 0x90, 0xd9, 0xda, 0xde, 0xd3, 0x5a, - 0x95, 0x24, 0x6d, 0xd6, 0x1a, 0xef, 0x35, 0xea, 0xad, 0x4a, 0x0a, 0xad, 0xc0, 0x12, 0xff, 0xd6, - 0x6f, 0xec, 0x69, 0xef, 0x6f, 0xb5, 0x2a, 0x69, 0xa9, 0xe9, 0xa0, 0xb1, 0x7b, 0xbd, 0xa1, 0x55, - 0x32, 0xea, 0x2b, 0x34, 0x8d, 0x8c, 0xc1, 0x8c, 0x61, 0x9a, 0xaa, 0x48, 0x69, 0xaa, 0xfa, 0xbb, - 0x24, 0xd4, 0xe2, 0x81, 0x20, 0x7a, 0x6f, 0x6c, 0xe2, 0x9b, 0xa7, 0x40, 0x91, 0x63, 0xb3, 0x47, - 0x4f, 0x43, 0xd9, 0xc5, 0x87, 0x98, 0x74, 0xfa, 0x1c, 0x98, 0xf2, 0x88, 0xb9, 0xa4, 0x2d, 0x89, - 0x56, 0x26, 0xe4, 0x71, 0xb6, 0x4f, 0x70, 0x87, 0xe8, 0xdc, 0x15, 0xf1, 0x4d, 0x57, 0xa0, 0x6c, - 0xb4, 0xf5, 0x80, 0x37, 0xaa, 0x1f, 0x9f, 0xca, 0x96, 0x05, 0xc8, 0x68, 0x8d, 0x96, 0xf6, 0x61, - 0x25, 0x85, 0x10, 0x94, 0xd9, 0xa7, 0x7e, 0xb0, 0xbb, 0xb5, 0x7f, 0xd0, 0xdc, 0xa3, 0xb6, 0x3c, - 0x03, 0xcb, 0xbe, 0x2d, 0xfd, 0xc6, 0x8c, 0xba, 0x11, 0x06, 0xa0, 0x10, 0xc9, 0x46, 0x62, 0xb5, - 0x12, 0x8d, 0xd5, 0x1f, 0x86, 0xa6, 0x9c, 0x44, 0xaa, 0xe8, 0x4d, 0x80, 0xc3, 0x80, 0x12, 0x98, - 0xe3, 0xfc, 0x84, 0x39, 0x43, 0x01, 0x4d, 0x62, 0x57, 0xeb, 0xf0, 0xec, 0x82, 0x98, 0x94, 0x82, - 0x3b, 0x6f, 0xd4, 0xe9, 0x60, 0x8f, 0x03, 0x9b, 0xbc, 0xe6, 0x93, 0xea, 0xbf, 0x15, 0x58, 0x1e, - 0x3b, 0xf1, 0x68, 0x13, 0x32, 0x3c, 0x5b, 0x8b, 0xbb, 0x61, 0x63, 0x0e, 0x4b, 0xb8, 0x07, 0xce, - 0x8a, 0xde, 0x82, 0x3c, 0x16, 0x25, 0xae, 0x69, 0x9e, 0x85, 0x97, 0xe6, 0xfc, 0x22, 0x98, 0x10, - 0x0d, 0x24, 0xd0, 0x3b, 0x50, 0x08, 0x5c, 0x97, 0x28, 0x11, 0x3c, 0x35, 0x29, 0x1e, 0x38, 0x3d, - 0x21, 0x1f, 0xca, 0xa0, 0xd7, 0x43, 0xf4, 0x9a, 0x9e, 0xcc, 0x11, 0x85, 0x38, 0x67, 0x10, 0xc2, - 0x3e, 0xbf, 0x5a, 0x87, 0xa2, 0x34, 0x1f, 0x74, 0x1e, 0x0a, 0x43, 0xe3, 0x58, 0x94, 0x4e, 0x79, - 0xf1, 0x2b, 0x3f, 0x34, 0x8e, 0x79, 0xd5, 0xf4, 0x71, 0xc8, 0xd1, 0x9f, 0x3d, 0x83, 0xbb, 0xcf, - 0x94, 0x96, 0x1d, 0x1a, 0xc7, 0x37, 0x0d, 0x4f, 0xfd, 0x08, 0xca, 0xd1, 0xb2, 0x21, 0x3d, 0x5a, - 0xae, 0x3d, 0xb2, 0xba, 0x4c, 0x47, 0x46, 0xe3, 0x04, 0xba, 0x0a, 0x99, 0x23, 0x9b, 0x7b, 0xdf, - 0xe9, 0x3e, 0xe8, 0xae, 0x4d, 0xb0, 0x54, 0x76, 0xe4, 0xdc, 0xea, 0x67, 0x90, 0x61, 0xde, 0x94, - 0x7a, 0x46, 0x56, 0x00, 0x14, 0xc8, 0x9d, 0x7e, 0xa3, 0x8f, 0x00, 0x0c, 0x42, 0x5c, 0xb3, 0x3d, - 0x0a, 0x15, 0xaf, 0x4d, 0xf7, 0xc6, 0x5b, 0x3e, 0xdf, 0xf6, 0x05, 0xe1, 0x96, 0xcf, 0x86, 0xa2, - 0x92, 0x6b, 0x96, 0x14, 0xaa, 0xbb, 0x50, 0x8e, 0xca, 0xca, 0xa5, 0xf8, 0xd2, 0x94, 0x52, 0x7c, - 0x80, 0x0e, 0x03, 0x6c, 0x99, 0xe2, 0xc5, 0x5e, 0x46, 0xa8, 0x9f, 0x2b, 0x90, 0x6f, 0x1d, 0x8b, - 0x73, 0x1a, 0x53, 0x67, 0x0c, 0x45, 0x93, 0x72, 0x55, 0x8d, 0x17, 0x2e, 0x53, 0x41, 0x39, 0xf4, - 0xdd, 0xc0, 0x13, 0xa5, 0x17, 0xad, 0x4d, 0xf8, 0x75, 0x61, 0xe1, 0x7d, 0xdf, 0x84, 0x42, 0xb0, - 0xab, 0xe8, 0x29, 0x31, 0xba, 0x5d, 0xd7, 0x3f, 0x25, 0xf4, 0x14, 0x73, 0x92, 0x95, 0xad, 0xed, - 0x87, 0xa2, 0x6e, 0x97, 0xd2, 0x38, 0xa1, 0x76, 0x61, 0x79, 0x2c, 0x0e, 0xa3, 0x37, 0x21, 0xe7, - 0x8c, 0xda, 0xba, 0x6f, 0x9e, 0xb1, 0xc3, 0xe3, 0xc3, 0xe1, 0x51, 0x7b, 0x60, 0x76, 0x6e, 0xe1, - 0x13, 0x7f, 0x30, 0xce, 0xa8, 0x7d, 0x8b, 0x5b, 0x91, 0xf7, 0x92, 0x94, 0x7b, 0x39, 0x82, 0xbc, - 0xbf, 0x29, 0xd0, 0xdb, 0xf2, 0x39, 0xf1, 0x2f, 0x33, 0x62, 0xb1, 0x81, 0x50, 0x2f, 0x1d, 0x93, - 0xcb, 0xb0, 0xe2, 0x99, 0x3d, 0x0b, 0x77, 0xf5, 0x30, 0x09, 0x63, 0xbd, 0xe5, 0xb5, 0x65, 0xfe, - 0xe3, 0xb6, 0x9f, 0x81, 0xa9, 0xff, 0x52, 0x20, 0xef, 0x1f, 0x58, 0xf4, 0x8a, 0xb4, 0xef, 0xca, - 0x53, 0xea, 0x70, 0x3e, 0x63, 0x58, 0x79, 0x8e, 0x8e, 0x35, 0x79, 0xfa, 0xb1, 0xc6, 0x5d, 0x21, - 0xf8, 0x77, 0x39, 0xe9, 0x53, 0xdf, 0xe5, 0xbc, 0x08, 0x88, 0xd8, 0xc4, 0x18, 0xe8, 0x47, 0x36, - 0x31, 0xad, 0x9e, 0xce, 0x8d, 0xcd, 0x21, 0x62, 0x85, 0xfd, 0xb9, 0xcb, 0x7e, 0xec, 0x33, 0xbb, - 0xff, 0x5c, 0x81, 0x7c, 0x10, 0xec, 0x4f, 0x5b, 0x48, 0x3e, 0x07, 0x59, 0x11, 0xcf, 0x78, 0x25, - 0x59, 0x50, 0xc1, 0x9d, 0x46, 0x5a, 0xba, 0xd3, 0xa8, 0x41, 0x7e, 0x88, 0x89, 0xc1, 0x10, 0x0f, - 0xcf, 0x83, 0x03, 0x5a, 0xfd, 0xa7, 0x02, 0x20, 0xc5, 0x8b, 0xa7, 0xa0, 0x14, 0x49, 0xb2, 0xf9, - 0xa1, 0x29, 0xb6, 0xa5, 0x04, 0x9b, 0x6e, 0x62, 0x1e, 0x7b, 0xc6, 0x0a, 0xe5, 0xe8, 0x03, 0x28, - 0xb1, 0x6b, 0xa1, 0x7b, 0x26, 0xb1, 0xe8, 0x1e, 0xe7, 0xb8, 0xed, 0xa5, 0x19, 0xe1, 0x66, 0xfd, - 0x40, 0xe2, 0x6f, 0x58, 0xc4, 0x3d, 0xd1, 0x22, 0x2a, 0x6a, 0xf7, 0x61, 0x65, 0x82, 0x65, 0xca, - 0x4d, 0xdd, 0x15, 0xd9, 0x3d, 0x4c, 0x2b, 0xe3, 0xca, 0x4a, 0x84, 0xf7, 0x78, 0x23, 0x79, 0x4d, - 0x51, 0xff, 0xa0, 0x40, 0x49, 0xfe, 0x87, 0xae, 0x42, 0xde, 0x4f, 0x38, 0xa7, 0xed, 0xff, 0x68, - 0xbe, 0xa9, 0xe5, 0x44, 0xba, 0x49, 0x4d, 0xec, 0xda, 0x36, 0x91, 0xac, 0x12, 0xd0, 0xe8, 0x6d, - 0x28, 0x3e, 0xe4, 0xda, 0xaf, 0xd3, 0x15, 0xe0, 0x56, 0x99, 0x8c, 0x79, 0xf7, 0x42, 0x1e, 0x4d, - 0x16, 0x50, 0x7b, 0x50, 0x94, 0xfe, 0x2d, 0xec, 0x1c, 0x5f, 0x66, 0x37, 0x61, 0xf6, 0xa1, 0x08, - 0x77, 0xb3, 0xa6, 0xc1, 0x19, 0x2f, 0xbf, 0x0e, 0x45, 0xe9, 0x7e, 0x87, 0x76, 0xb4, 0xdb, 0xb8, - 0x57, 0x49, 0xd4, 0x72, 0x9f, 0x7f, 0x79, 0x31, 0xb5, 0x8b, 0x1f, 0xd2, 0xa5, 0xd7, 0x1a, 0xf5, - 0x66, 0xa3, 0x7e, 0xab, 0xa2, 0xd4, 0x8a, 0x9f, 0x7f, 0x79, 0x31, 0xa7, 0x61, 0x56, 0xca, 0xbd, - 0xdc, 0x84, 0x92, 0x7c, 0x42, 0xa3, 0xf0, 0x08, 0x41, 0xf9, 0xfa, 0x9d, 0xfd, 0xdb, 0x3b, 0xf5, - 0xad, 0x56, 0x43, 0xbf, 0xbb, 0xd7, 0x6a, 0x54, 0x14, 0xf4, 0x38, 0x9c, 0xb9, 0xbd, 0x73, 0xb3, - 0xd9, 0xd2, 0xeb, 0xb7, 0x77, 0x1a, 0xbb, 0x2d, 0x7d, 0xab, 0xd5, 0xda, 0xaa, 0xdf, 0xaa, 0x24, - 0x37, 0xbf, 0x2b, 0xc1, 0xf2, 0xd6, 0x76, 0x7d, 0x87, 0x42, 0x3b, 0xb3, 0x63, 0x88, 0x52, 0x79, - 0x9a, 0x95, 0xa4, 0x66, 0x3e, 0xc5, 0xa9, 0xcd, 0xbe, 0x29, 0x40, 0x37, 0x20, 0xc3, 0xaa, 0x55, - 0x68, 0xf6, 0xdb, 0x9c, 0xda, 0x9c, 0xab, 0x03, 0x3a, 0x18, 0xe6, 0x2a, 0x67, 0x3e, 0xd6, 0xa9, - 0xcd, 0xbe, 0x49, 0x40, 0x1a, 0x14, 0xc2, 0x72, 0xd3, 0xfc, 0xc7, 0x3b, 0xb5, 0x05, 0x6e, 0x17, - 0xa8, 0xce, 0x30, 0xe7, 0x9d, 0xff, 0x98, 0xa5, 0xb6, 0x40, 0x30, 0x43, 0xb7, 0x21, 0xe7, 0x97, - 0x29, 0xe6, 0x3d, 0xaf, 0xa9, 0xcd, 0xad, 0xfc, 0xd3, 0x25, 0xe0, 0xe5, 0xa4, 0xd9, 0x6f, 0x85, - 0x6a, 0x73, 0xae, 0x31, 0xd0, 0x0e, 0x64, 0x45, 0x22, 0x37, 0xe7, 0xc9, 0x4c, 0x6d, 0x5e, 0x25, - 0x9f, 0x1a, 0x2d, 0xac, 0xd3, 0xcd, 0x7f, 0x01, 0x55, 0x5b, 0xe0, 0x86, 0x06, 0xdd, 0x01, 0x90, - 0x8a, 0x47, 0x0b, 0x3c, 0x6d, 0xaa, 0x2d, 0x72, 0xf3, 0x82, 0xf6, 0x20, 0x1f, 0xe4, 0xf2, 0x73, - 0x1f, 0x1a, 0xd5, 0xe6, 0x5f, 0x81, 0xa0, 0xfb, 0xb0, 0x14, 0x4d, 0x62, 0x17, 0x7b, 0x3e, 0x54, - 0x5b, 0xf0, 0x6e, 0x83, 0xea, 0x8f, 0x66, 0xb4, 0x8b, 0x3d, 0x27, 0xaa, 0x2d, 0x78, 0xd5, 0x81, - 0x3e, 0x81, 0x95, 0xc9, 0x8c, 0x73, 0xf1, 0xd7, 0x45, 0xb5, 0x53, 0x5c, 0x7e, 0xa0, 0x21, 0xa0, - 0x29, 0x99, 0xea, 0x29, 0x1e, 0x1b, 0xd5, 0x4e, 0x73, 0x17, 0x42, 0xb7, 0x90, 0x94, 0xfe, 0x2d, - 0xf0, 0xf6, 0xa8, 0xb6, 0xc8, 0x8d, 0x08, 0x9d, 0xc5, 0x94, 0x24, 0xf1, 0x14, 0x4f, 0x91, 0x6a, - 0xa7, 0xb9, 0x27, 0x41, 0xbf, 0x55, 0x60, 0x6d, 0x5e, 0xe6, 0xf8, 0xa8, 0xef, 0x92, 0x6a, 0x8f, - 0x7c, 0x81, 0xb2, 0xdd, 0xf8, 0xfa, 0xfb, 0x55, 0xe5, 0x9b, 0xef, 0x57, 0x95, 0xef, 0xbe, 0x5f, - 0x55, 0xbe, 0xf8, 0x61, 0x35, 0xf1, 0xcd, 0x0f, 0xab, 0x89, 0xbf, 0xfc, 0xb0, 0x9a, 0xf8, 0xbf, - 0x17, 0x7a, 0x26, 0xe9, 0x8f, 0xda, 0xeb, 0x1d, 0x7b, 0xb8, 0x21, 0x3f, 0x33, 0x9d, 0xf6, 0xf4, - 0xb5, 0x9d, 0x65, 0x88, 0xf0, 0xca, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0xdd, 0x38, 0x7f, 0x77, - 0x1a, 0x2b, 0x00, 0x00, + 0xd1, 0xc7, 0xe2, 0x8d, 0xc6, 0x83, 0xe0, 0x48, 0x96, 0x61, 0x48, 0x26, 0xe5, 0x55, 0xf9, 0x25, + 0xdb, 0xa4, 0x4d, 0x95, 0x6c, 0xf9, 0xf1, 0x7d, 0x36, 0x09, 0x41, 0x02, 0x2d, 0x99, 0xd4, 0xb7, + 0x84, 0xe4, 0x2f, 0x4e, 0xac, 0xf5, 0x02, 0x18, 0x02, 0x6b, 0x01, 0xbb, 0xeb, 0xdd, 0x01, 0x45, + 0xfa, 0x98, 0x4a, 0x2a, 0x29, 0xe7, 0xe2, 0x43, 0x0e, 0xa9, 0x54, 0xf9, 0x94, 0x7f, 0x22, 0xa7, + 0x5c, 0x7c, 0x71, 0x55, 0x2e, 0x3e, 0xe6, 0x90, 0x72, 0x5c, 0xf6, 0x2d, 0xff, 0x40, 0x4e, 0x79, + 0xd4, 0x3c, 0x76, 0x77, 0x16, 0xc0, 0x02, 0xa0, 0xec, 0x5b, 0x6e, 0x3b, 0xbd, 0xdd, 0x3d, 0x33, + 0x3d, 0x33, 0xdd, 0xbf, 0xee, 0x19, 0x38, 0x4f, 0xb0, 0xd5, 0xc3, 0xee, 0xc8, 0xb4, 0xc8, 0xa6, + 0xd1, 0xe9, 0x9a, 0x9b, 0xe4, 0xc4, 0xc1, 0xde, 0x86, 0xe3, 0xda, 0xc4, 0x46, 0x2b, 0xe1, 0xcf, + 0x0d, 0xfa, 0xb3, 0xfe, 0xa4, 0xc4, 0xdd, 0x75, 0x4f, 0x1c, 0x62, 0x6f, 0x3a, 0xae, 0x6d, 0x1f, + 0x72, 0xfe, 0xfa, 0x05, 0xe9, 0x37, 0xd3, 0x23, 0x6b, 0x8b, 0xfc, 0x15, 0xc2, 0x0f, 0xf0, 0x89, + 0xff, 0xf7, 0xc9, 0x29, 0x59, 0xc7, 0x70, 0x8d, 0x91, 0xff, 0x7b, 0xbd, 0x6f, 0xdb, 0xfd, 0x21, + 0xde, 0x64, 0xad, 0xce, 0xf8, 0x70, 0x93, 0x98, 0x23, 0xec, 0x11, 0x63, 0xe4, 0x08, 0x86, 0xb3, + 0x7d, 0xbb, 0x6f, 0xb3, 0xcf, 0x4d, 0xfa, 0xc5, 0xa9, 0xea, 0x97, 0x00, 0x39, 0x0d, 0x7f, 0x32, + 0xc6, 0x1e, 0x41, 0x5b, 0x90, 0xc6, 0xdd, 0x81, 0x5d, 0x53, 0x2e, 0x2a, 0xcf, 0x15, 0xb7, 0x2e, + 0x6c, 0x4c, 0x4c, 0x6e, 0x43, 0xf0, 0x35, 0xbb, 0x03, 0xbb, 0x95, 0xd0, 0x18, 0x2f, 0xba, 0x0a, + 0x99, 0xc3, 0xe1, 0xd8, 0x1b, 0xd4, 0x92, 0x4c, 0xe8, 0xc9, 0x38, 0xa1, 0x1b, 0x94, 0xa9, 0x95, + 0xd0, 0x38, 0x37, 0xed, 0xca, 0xb4, 0x0e, 0xed, 0x5a, 0x6a, 0x7e, 0x57, 0xbb, 0xd6, 0x21, 0xeb, + 0x8a, 0xf2, 0xa2, 0x1d, 0x00, 0x0f, 0x13, 0xdd, 0x76, 0x88, 0x69, 0x5b, 0xb5, 0x34, 0x93, 0x7c, + 0x2a, 0x4e, 0xf2, 0x00, 0x93, 0x7d, 0xc6, 0xd8, 0x4a, 0x68, 0x05, 0xcf, 0x6f, 0x50, 0x1d, 0xa6, + 0x65, 0x12, 0xbd, 0x3b, 0x30, 0x4c, 0xab, 0x96, 0x99, 0xaf, 0x63, 0xd7, 0x32, 0x49, 0x83, 0x32, + 0x52, 0x1d, 0xa6, 0xdf, 0xa0, 0x53, 0xfe, 0x64, 0x8c, 0xdd, 0x93, 0x5a, 0x76, 0xfe, 0x94, 0xff, + 0x8f, 0x32, 0xd1, 0x29, 0x33, 0x6e, 0xd4, 0x84, 0x62, 0x07, 0xf7, 0x4d, 0x4b, 0xef, 0x0c, 0xed, + 0xee, 0x83, 0x5a, 0x8e, 0x09, 0xab, 0x71, 0xc2, 0x3b, 0x94, 0x75, 0x87, 0x72, 0xb6, 0x12, 0x1a, + 0x74, 0x82, 0x16, 0x7a, 0x0b, 0xf2, 0xdd, 0x01, 0xee, 0x3e, 0xd0, 0xc9, 0x71, 0x2d, 0xcf, 0x74, + 0xac, 0xc7, 0xe9, 0x68, 0x50, 0xbe, 0xf6, 0x71, 0x2b, 0xa1, 0xe5, 0xba, 0xfc, 0x93, 0xce, 0xbf, + 0x87, 0x87, 0xe6, 0x11, 0x76, 0xa9, 0x7c, 0x61, 0xfe, 0xfc, 0xaf, 0x73, 0x4e, 0xa6, 0xa1, 0xd0, + 0xf3, 0x1b, 0xe8, 0x6d, 0x28, 0x60, 0xab, 0x27, 0xa6, 0x01, 0x4c, 0xc5, 0xc5, 0xd8, 0xbd, 0x62, + 0xf5, 0xfc, 0x49, 0xe4, 0xb1, 0xf8, 0x46, 0xd7, 0x20, 0xdb, 0xb5, 0x47, 0x23, 0x93, 0xd4, 0x8a, + 0x4c, 0x7a, 0x2d, 0x76, 0x02, 0x8c, 0xab, 0x95, 0xd0, 0x04, 0x3f, 0xda, 0x83, 0xca, 0xd0, 0xf4, + 0x88, 0xee, 0x59, 0x86, 0xe3, 0x0d, 0x6c, 0xe2, 0xd5, 0x4a, 0x4c, 0xc3, 0xd3, 0x71, 0x1a, 0x6e, + 0x9b, 0x1e, 0x39, 0xf0, 0x99, 0x5b, 0x09, 0xad, 0x3c, 0x94, 0x09, 0x54, 0x9f, 0x7d, 0x78, 0x88, + 0xdd, 0x40, 0x61, 0xad, 0x3c, 0x5f, 0xdf, 0x3e, 0xe5, 0xf6, 0xe5, 0xa9, 0x3e, 0x5b, 0x26, 0xa0, + 0x9f, 0xc2, 0x99, 0xa1, 0x6d, 0xf4, 0x02, 0x75, 0x7a, 0x77, 0x30, 0xb6, 0x1e, 0xd4, 0x2a, 0x4c, + 0xe9, 0xf3, 0xb1, 0x83, 0xb4, 0x8d, 0x9e, 0xaf, 0xa2, 0x41, 0x05, 0x5a, 0x09, 0x6d, 0x75, 0x38, + 0x49, 0x44, 0xf7, 0xe1, 0xac, 0xe1, 0x38, 0xc3, 0x93, 0x49, 0xed, 0x2b, 0x4c, 0xfb, 0xe5, 0x38, + 0xed, 0xdb, 0x54, 0x66, 0x52, 0x3d, 0x32, 0xa6, 0xa8, 0xe8, 0x06, 0x94, 0xfa, 0x98, 0xe8, 0x86, + 0xe3, 0xe8, 0x03, 0xc3, 0x1b, 0xd4, 0xaa, 0xf3, 0x77, 0xe8, 0x4d, 0x4c, 0x55, 0xb7, 0x0c, 0x76, + 0xac, 0xa1, 0x1f, 0xb4, 0xe8, 0x38, 0xfb, 0xd8, 0xc2, 0xae, 0x41, 0xb0, 0x7e, 0xe8, 0x1a, 0xe3, + 0x9e, 0xce, 0x5c, 0x60, 0x6d, 0x75, 0xfe, 0x38, 0x6f, 0x0a, 0x99, 0x1b, 0x54, 0xe4, 0x0e, 0x95, + 0xa0, 0xe3, 0xec, 0x4f, 0x51, 0xd1, 0xaf, 0x14, 0xb8, 0x44, 0x5c, 0xb3, 0xdf, 0xc7, 0xae, 0xac, + 0x5f, 0x17, 0xac, 0xa6, 0x6d, 0xe9, 0x23, 0xbb, 0x87, 0x6b, 0x88, 0xf5, 0xf7, 0x5a, 0x5c, 0x7f, + 0x6d, 0xae, 0x22, 0x54, 0x7c, 0x33, 0x90, 0x7f, 0xcf, 0xee, 0xe1, 0x56, 0x42, 0x5b, 0x27, 0xf3, + 0x59, 0x76, 0x72, 0x90, 0x39, 0x32, 0x86, 0x63, 0xac, 0x3e, 0x0b, 0x45, 0xc9, 0x39, 0xa2, 0x1a, + 0xe4, 0x46, 0xd8, 0xf3, 0x8c, 0x3e, 0x66, 0xbe, 0xb4, 0xa0, 0xf9, 0x4d, 0xb5, 0x02, 0x25, 0xd9, + 0x21, 0xaa, 0xa3, 0x40, 0x90, 0xba, 0x3a, 0x2a, 0x78, 0x84, 0x5d, 0x8f, 0xfa, 0x37, 0x21, 0x28, + 0x9a, 0xe8, 0x12, 0x94, 0xd9, 0x81, 0xd3, 0xfd, 0xff, 0xd4, 0xdf, 0xa6, 0xb5, 0x12, 0x23, 0xde, + 0x13, 0x4c, 0xeb, 0x50, 0x74, 0xb6, 0x9c, 0x80, 0x25, 0xc5, 0x58, 0xc0, 0xd9, 0x72, 0x04, 0x83, + 0xfa, 0x06, 0x54, 0x27, 0xfd, 0x23, 0xaa, 0x42, 0xea, 0x01, 0x3e, 0x11, 0xfd, 0xd1, 0x4f, 0x74, + 0x56, 0x4c, 0x8b, 0xf5, 0x51, 0xd0, 0xc4, 0x1c, 0xff, 0x9c, 0x0c, 0x84, 0x03, 0xc7, 0x88, 0xae, + 0x41, 0x9a, 0xc6, 0x19, 0x11, 0x32, 0xea, 0x1b, 0x3c, 0x08, 0x6d, 0xf8, 0x41, 0x68, 0xa3, 0xed, + 0x07, 0xa1, 0x9d, 0xfc, 0x57, 0xdf, 0xac, 0x27, 0x3e, 0xff, 0xdb, 0xba, 0xa2, 0x31, 0x09, 0xf4, + 0x04, 0xf5, 0x63, 0x86, 0x69, 0xe9, 0x66, 0x4f, 0xf4, 0x93, 0x63, 0xed, 0xdd, 0x1e, 0xba, 0x05, + 0xd5, 0xae, 0x6d, 0x79, 0xd8, 0xf2, 0xc6, 0x9e, 0xce, 0x83, 0x9c, 0x08, 0x14, 0xd3, 0x7e, 0xa6, + 0xe1, 0x33, 0xde, 0x61, 0x7c, 0xda, 0x4a, 0x37, 0x4a, 0x40, 0x37, 0x00, 0x8e, 0x8c, 0xa1, 0xd9, + 0x33, 0x88, 0xed, 0x7a, 0xb5, 0xf4, 0xc5, 0xd4, 0x4c, 0x35, 0xf7, 0x7c, 0x96, 0xbb, 0x4e, 0xcf, + 0x20, 0x78, 0x27, 0x4d, 0x47, 0xab, 0x49, 0x92, 0xe8, 0x19, 0x58, 0xa1, 0x27, 0xc3, 0x23, 0x74, + 0x5b, 0x77, 0x4e, 0x08, 0xf6, 0x58, 0xf8, 0x28, 0x69, 0x65, 0xc3, 0x71, 0x0e, 0x28, 0x75, 0x87, + 0x12, 0xd1, 0xd3, 0x50, 0xa1, 0xa1, 0xc2, 0x34, 0x86, 0xfa, 0x00, 0x9b, 0xfd, 0x01, 0x61, 0x61, + 0x22, 0xa5, 0x95, 0x05, 0xb5, 0xc5, 0x88, 0x6a, 0x2f, 0xd8, 0x08, 0x2c, 0x4c, 0x20, 0x04, 0xe9, + 0x9e, 0x41, 0x0c, 0x66, 0xc8, 0x92, 0xc6, 0xbe, 0x29, 0xcd, 0x31, 0xc8, 0x40, 0x98, 0x87, 0x7d, + 0xa3, 0x73, 0x90, 0x15, 0x6a, 0x53, 0x4c, 0xad, 0x68, 0xd1, 0x35, 0x73, 0x5c, 0xfb, 0x08, 0xb3, + 0xb8, 0x98, 0xd7, 0x78, 0x43, 0xfd, 0x45, 0x12, 0x56, 0xa7, 0x02, 0x0a, 0xd5, 0xcb, 0x0e, 0xb8, + 0xe8, 0x8b, 0x7e, 0xa3, 0x57, 0xa9, 0x5e, 0xa3, 0x87, 0x5d, 0x11, 0xc8, 0x6b, 0xb2, 0x89, 0x38, + 0x48, 0x69, 0xb1, 0xff, 0xc2, 0x34, 0x82, 0x1b, 0xed, 0x43, 0x75, 0x68, 0x78, 0x44, 0xe7, 0x0e, + 0x5a, 0x97, 0x82, 0xfa, 0x74, 0x58, 0xba, 0x6d, 0xf8, 0x2e, 0x9d, 0x6e, 0x76, 0xa1, 0xa8, 0x32, + 0x8c, 0x50, 0x91, 0x06, 0x67, 0x3b, 0x27, 0x9f, 0x1a, 0x16, 0x31, 0x2d, 0xac, 0x4f, 0xad, 0xdc, + 0x13, 0x53, 0x4a, 0x9b, 0x47, 0x66, 0x0f, 0x5b, 0x5d, 0x7f, 0xc9, 0xce, 0x04, 0xc2, 0xc1, 0x92, + 0x7a, 0xaa, 0x06, 0x95, 0x68, 0x48, 0x44, 0x15, 0x48, 0x92, 0x63, 0x61, 0x80, 0x24, 0x39, 0x46, + 0x2f, 0x43, 0x9a, 0x4e, 0x92, 0x4d, 0xbe, 0x32, 0x03, 0x8f, 0x08, 0xb9, 0xf6, 0x89, 0x83, 0x35, + 0xc6, 0xa9, 0xaa, 0xc1, 0x69, 0x08, 0xc2, 0xe4, 0xa4, 0x56, 0xf5, 0x79, 0x58, 0x99, 0x88, 0x83, + 0xd2, 0xfa, 0x29, 0xf2, 0xfa, 0xa9, 0x2b, 0x50, 0x8e, 0x04, 0x3d, 0xf5, 0x1c, 0x9c, 0x9d, 0x15, + 0xc3, 0xd4, 0x41, 0x40, 0x8f, 0xc4, 0x22, 0x74, 0x15, 0xf2, 0x41, 0x10, 0xe3, 0xa7, 0x71, 0xda, + 0x56, 0x3e, 0xb3, 0x16, 0xb0, 0xd2, 0x63, 0x18, 0x38, 0xfc, 0x24, 0x1b, 0x78, 0xce, 0xe0, 0x7e, + 0x5c, 0xfd, 0x08, 0x6a, 0x71, 0x01, 0x6a, 0x62, 0x1a, 0xe9, 0x60, 0x1b, 0x9e, 0x83, 0xec, 0xa1, + 0xed, 0x8e, 0x0c, 0xc2, 0x94, 0x95, 0x35, 0xd1, 0xa2, 0xdb, 0x93, 0x07, 0xab, 0x14, 0x23, 0xf3, + 0x86, 0xaa, 0xc3, 0x13, 0xb1, 0x41, 0x8a, 0x8a, 0x98, 0x56, 0x0f, 0x73, 0x7b, 0x96, 0x35, 0xde, + 0x08, 0x15, 0xf1, 0xc1, 0xf2, 0x06, 0xed, 0xd6, 0x63, 0x73, 0x65, 0xfa, 0x0b, 0x9a, 0x68, 0xa9, + 0x67, 0x82, 0xed, 0x1f, 0x46, 0x2b, 0xf5, 0x7c, 0xd0, 0xeb, 0x74, 0xc8, 0x51, 0x9f, 0x83, 0x67, + 0x96, 0x8b, 0x0f, 0xea, 0xef, 0x8b, 0x90, 0xd7, 0xb0, 0xe7, 0x50, 0x7f, 0x83, 0x76, 0xa0, 0x80, + 0x8f, 0xbb, 0x98, 0x43, 0x53, 0x25, 0x36, 0x70, 0x72, 0xee, 0xa6, 0xcf, 0x49, 0x71, 0x55, 0x20, + 0x86, 0xae, 0x08, 0xf8, 0x1d, 0x8f, 0xa4, 0x85, 0xb8, 0x8c, 0xbf, 0x5f, 0xf5, 0xf1, 0x77, 0x2a, + 0x16, 0x4a, 0x71, 0xa9, 0x09, 0x00, 0x7e, 0x45, 0x00, 0xf0, 0xf4, 0x82, 0xce, 0x22, 0x08, 0xbc, + 0x11, 0x41, 0xe0, 0x99, 0x05, 0xd3, 0x8c, 0x81, 0xe0, 0x8d, 0x08, 0x04, 0xcf, 0x2e, 0x50, 0x12, + 0x83, 0xc1, 0x5f, 0xf5, 0x31, 0x78, 0x6e, 0xc1, 0xb4, 0x27, 0x40, 0xf8, 0x8d, 0x28, 0x08, 0xe7, + 0x00, 0xfa, 0x52, 0xac, 0x74, 0x2c, 0x0a, 0xff, 0x1f, 0x09, 0x85, 0x17, 0x62, 0x21, 0x30, 0x57, + 0x32, 0x03, 0x86, 0x37, 0x22, 0x30, 0x1c, 0x16, 0xd8, 0x20, 0x06, 0x87, 0xbf, 0x23, 0xe3, 0xf0, + 0x62, 0x2c, 0x94, 0x17, 0x9b, 0x66, 0x16, 0x10, 0x7f, 0x3d, 0x00, 0xe2, 0xa5, 0xd8, 0x4c, 0x42, + 0xcc, 0x61, 0x12, 0x89, 0xef, 0x4f, 0x21, 0x71, 0x8e, 0x9c, 0x9f, 0x89, 0x55, 0xb1, 0x00, 0x8a, + 0xef, 0x4f, 0x41, 0xf1, 0xca, 0x02, 0x85, 0x0b, 0xb0, 0xf8, 0xcf, 0x66, 0x63, 0xf1, 0x78, 0xb4, + 0x2c, 0x86, 0xb9, 0x1c, 0x18, 0xd7, 0x63, 0xc0, 0x38, 0x07, 0xcd, 0x2f, 0xc4, 0xaa, 0x5f, 0x1a, + 0x8d, 0xdf, 0x9c, 0x40, 0xe3, 0xab, 0x0b, 0xb6, 0x6a, 0x2c, 0x1c, 0xd7, 0x63, 0xe0, 0x38, 0x5a, + 0x30, 0xd2, 0xa5, 0xf1, 0xf8, 0xaf, 0x97, 0xc4, 0xe3, 0x67, 0x58, 0x87, 0xd7, 0x62, 0x3b, 0xfc, + 0x31, 0x01, 0xf9, 0xf3, 0xd4, 0xf1, 0x4f, 0x78, 0x5b, 0x1a, 0x3b, 0xb0, 0xeb, 0xda, 0xae, 0xc0, + 0xba, 0xbc, 0xa1, 0x3e, 0x47, 0x91, 0x58, 0xe8, 0x59, 0xe7, 0x80, 0x77, 0x16, 0xa3, 0x25, 0x6f, + 0xaa, 0xfe, 0x51, 0x09, 0x65, 0x19, 0x78, 0x91, 0x51, 0x5c, 0x41, 0xa0, 0x38, 0x09, 0xd3, 0x27, + 0xa3, 0x98, 0x7e, 0x1d, 0x8a, 0x74, 0x79, 0x27, 0xe0, 0xba, 0xe1, 0xf8, 0x70, 0x1d, 0x5d, 0x86, + 0x55, 0x06, 0xae, 0x38, 0xf2, 0x17, 0x01, 0x37, 0xcd, 0x70, 0xc3, 0x0a, 0xfd, 0xc1, 0x4f, 0x34, + 0x8f, 0xbc, 0x2f, 0xc1, 0x19, 0x89, 0x37, 0xd8, 0x36, 0x1c, 0xa3, 0x56, 0x03, 0x6e, 0x3f, 0x08, + 0xbe, 0x17, 0x1a, 0x28, 0x4c, 0x05, 0x10, 0xa4, 0xbb, 0x74, 0xa5, 0x78, 0xc4, 0x65, 0xdf, 0x34, + 0x3d, 0x18, 0xda, 0x7d, 0x11, 0x57, 0xe9, 0x27, 0xe5, 0x0a, 0x42, 0x47, 0x81, 0x47, 0x06, 0xf5, + 0x4b, 0x25, 0xd4, 0x17, 0x66, 0x07, 0xb3, 0x80, 0xbc, 0xf2, 0xe3, 0x00, 0xf9, 0xe4, 0x23, 0x03, + 0x79, 0x19, 0xf1, 0xa4, 0xa2, 0x88, 0xe7, 0x1f, 0x4a, 0xb8, 0xc2, 0x01, 0x2c, 0x7f, 0x34, 0x8b, + 0x84, 0xf0, 0x25, 0xc3, 0xd6, 0x4b, 0xc0, 0x17, 0x91, 0x6c, 0x65, 0x59, 0xbf, 0xd1, 0x64, 0x2b, + 0xc7, 0x01, 0x0d, 0x6b, 0xa0, 0x6b, 0x50, 0xe0, 0x87, 0xc8, 0x76, 0x3c, 0x11, 0xa5, 0xce, 0xcb, + 0x73, 0xe5, 0xe5, 0xc1, 0x0d, 0x76, 0x06, 0xf6, 0x1d, 0x4f, 0xcb, 0x3b, 0xe2, 0x4b, 0x42, 0x66, + 0x85, 0x48, 0x82, 0x70, 0x01, 0x0a, 0x74, 0xf4, 0x9e, 0x63, 0x74, 0x31, 0x8b, 0x38, 0x05, 0x2d, + 0x24, 0xa8, 0xf7, 0x01, 0x4d, 0xc7, 0x3c, 0xd4, 0x82, 0x2c, 0x3e, 0xc2, 0x16, 0xa1, 0xab, 0x46, + 0xcd, 0x7d, 0x6e, 0x06, 0xfa, 0xc6, 0x16, 0xd9, 0xa9, 0x51, 0x23, 0xff, 0xfd, 0x9b, 0xf5, 0x2a, + 0xe7, 0x7e, 0xd1, 0x1e, 0x99, 0x04, 0x8f, 0x1c, 0x72, 0xa2, 0x09, 0x79, 0xf5, 0xaf, 0x49, 0x0a, + 0x85, 0x23, 0xf1, 0x70, 0xa6, 0x6d, 0xfd, 0x03, 0x94, 0x94, 0xd2, 0xa0, 0xe5, 0xec, 0xbd, 0x06, + 0xd0, 0x37, 0x3c, 0xfd, 0xa1, 0x61, 0x11, 0xdc, 0x13, 0x46, 0x97, 0x28, 0xa8, 0x0e, 0x79, 0xda, + 0x1a, 0x7b, 0xb8, 0x27, 0x32, 0xb2, 0xa0, 0x2d, 0xcd, 0x33, 0xf7, 0xc3, 0xe6, 0x19, 0xb5, 0x72, + 0x7e, 0xc2, 0xca, 0x12, 0x4c, 0x2d, 0xc8, 0x30, 0x95, 0x8e, 0xcd, 0x71, 0x4d, 0xdb, 0x35, 0xc9, + 0x09, 0x5b, 0x9a, 0x94, 0x16, 0xb4, 0x69, 0xe2, 0x3f, 0xc2, 0x23, 0xc7, 0xb6, 0x87, 0x3a, 0x77, + 0x5e, 0x45, 0x26, 0x5a, 0x12, 0xc4, 0x26, 0xf3, 0x61, 0xbf, 0x4c, 0x86, 0xc7, 0x2f, 0x4c, 0x47, + 0xfe, 0xeb, 0x0c, 0xac, 0xfe, 0x86, 0xd5, 0x28, 0xa2, 0x88, 0x07, 0x1d, 0xc0, 0x6a, 0x70, 0xfc, + 0xf5, 0x31, 0x73, 0x0b, 0xfe, 0x86, 0x5e, 0xd6, 0x7f, 0x54, 0x8f, 0xa2, 0x64, 0x0f, 0xfd, 0x3f, + 0x3c, 0x3e, 0xe1, 0xda, 0x02, 0xd5, 0xc9, 0x25, 0x3d, 0xdc, 0x63, 0x51, 0x0f, 0xe7, 0x6b, 0x0e, + 0x6d, 0x95, 0xfa, 0x81, 0x87, 0x6e, 0x97, 0xa6, 0xbd, 0x32, 0x7e, 0x9b, 0xb9, 0xfa, 0x97, 0xa0, + 0xec, 0x62, 0x62, 0x98, 0x96, 0x1e, 0x29, 0x2c, 0x94, 0x38, 0x51, 0x94, 0x2b, 0xee, 0xc0, 0x63, + 0x33, 0x71, 0x1c, 0x7a, 0x0d, 0x0a, 0x21, 0x04, 0x54, 0x62, 0x72, 0xf4, 0x20, 0xef, 0x0c, 0x79, + 0xd5, 0x3f, 0x29, 0xa1, 0xca, 0x68, 0x26, 0xdb, 0x84, 0xac, 0x8b, 0xbd, 0xf1, 0x90, 0xe7, 0x96, + 0x95, 0xad, 0x97, 0x96, 0x43, 0x80, 0x94, 0x3a, 0x1e, 0x12, 0x4d, 0x08, 0xab, 0xf7, 0x21, 0xcb, + 0x29, 0xa8, 0x08, 0xb9, 0xbb, 0x7b, 0xb7, 0xf6, 0xf6, 0xdf, 0xdf, 0xab, 0x26, 0x10, 0x40, 0x76, + 0xbb, 0xd1, 0x68, 0xde, 0x69, 0x57, 0x15, 0x54, 0x80, 0xcc, 0xf6, 0xce, 0xbe, 0xd6, 0xae, 0x26, + 0x29, 0x59, 0x6b, 0xbe, 0xdb, 0x6c, 0xb4, 0xab, 0x29, 0xb4, 0x0a, 0x65, 0xfe, 0xad, 0xdf, 0xd8, + 0xd7, 0xde, 0xdb, 0x6e, 0x57, 0xd3, 0x12, 0xe9, 0xa0, 0xb9, 0x77, 0xbd, 0xa9, 0x55, 0x33, 0xea, + 0x2b, 0x34, 0x8d, 0x8c, 0xc1, 0x8c, 0x61, 0x9a, 0xaa, 0x48, 0x69, 0xaa, 0xfa, 0xbb, 0x24, 0xd4, + 0xe3, 0x81, 0x20, 0x7a, 0x77, 0x62, 0xe2, 0x5b, 0xa7, 0x40, 0x91, 0x13, 0xb3, 0x47, 0x4f, 0x43, + 0xc5, 0xc5, 0x87, 0x98, 0x74, 0x07, 0x1c, 0x98, 0xf2, 0x88, 0x59, 0xd6, 0xca, 0x82, 0xca, 0x84, + 0x3c, 0xce, 0xf6, 0x31, 0xee, 0x12, 0x9d, 0xbb, 0x22, 0xbe, 0xe9, 0x0a, 0x94, 0x8d, 0x52, 0x0f, + 0x38, 0x51, 0xfd, 0xe8, 0x54, 0xb6, 0x2c, 0x40, 0x46, 0x6b, 0xb6, 0xb5, 0x9f, 0x54, 0x53, 0x08, + 0x41, 0x85, 0x7d, 0xea, 0x07, 0x7b, 0xdb, 0x77, 0x0e, 0x5a, 0xfb, 0xd4, 0x96, 0x67, 0x60, 0xc5, + 0xb7, 0xa5, 0x4f, 0xcc, 0xa8, 0x9b, 0x61, 0x00, 0x0a, 0x91, 0x6c, 0x24, 0x56, 0x2b, 0xd1, 0x58, + 0xfd, 0x41, 0x68, 0xca, 0x69, 0xa4, 0x8a, 0xde, 0x82, 0xa2, 0x8c, 0x75, 0x95, 0xe9, 0x08, 0xca, + 0xec, 0x19, 0x4a, 0x68, 0x70, 0x18, 0x16, 0x01, 0x1a, 0xf0, 0xec, 0x92, 0xa0, 0x94, 0xa2, 0x3b, + 0x6f, 0xdc, 0xed, 0x62, 0x8f, 0x23, 0x9b, 0xbc, 0xe6, 0x37, 0xd5, 0x7f, 0x2b, 0xb0, 0x32, 0x71, + 0xe4, 0xd1, 0x16, 0x64, 0x78, 0xba, 0x16, 0x77, 0xc5, 0xc6, 0x3c, 0x96, 0xf0, 0x0f, 0x9c, 0x15, + 0xbd, 0x05, 0x79, 0x2c, 0x6a, 0x5c, 0xb3, 0x5c, 0x0b, 0xaf, 0xcd, 0xf9, 0x55, 0x30, 0x21, 0x1a, + 0x48, 0xa0, 0xb7, 0xa1, 0x10, 0xf8, 0x2e, 0x51, 0x23, 0x78, 0x6a, 0x5a, 0x3c, 0xf0, 0x7a, 0x42, + 0x3e, 0x94, 0x41, 0xaf, 0x87, 0xf0, 0x35, 0x3d, 0x9d, 0x24, 0x0a, 0x71, 0xce, 0x20, 0x84, 0x7d, + 0x7e, 0xb5, 0x01, 0x45, 0x69, 0x3e, 0xe8, 0x3c, 0x14, 0x46, 0xc6, 0xb1, 0xa8, 0x9d, 0xf2, 0xea, + 0x57, 0x7e, 0x64, 0x1c, 0xf3, 0xb2, 0xe9, 0xe3, 0x90, 0xa3, 0x3f, 0xfb, 0x06, 0xf7, 0x9f, 0x29, + 0x2d, 0x3b, 0x32, 0x8e, 0x6f, 0x1a, 0x9e, 0xfa, 0x21, 0x54, 0xa2, 0x75, 0x43, 0x7a, 0xb6, 0x5c, + 0x7b, 0x6c, 0xf5, 0x98, 0x8e, 0x8c, 0xc6, 0x1b, 0xe8, 0x2a, 0x64, 0x8e, 0x6c, 0xee, 0x7e, 0x67, + 0x3b, 0xa1, 0x7b, 0x36, 0xc1, 0x52, 0xdd, 0x91, 0x73, 0xab, 0x9f, 0x42, 0x86, 0xb9, 0x53, 0xea, + 0x1a, 0x59, 0x05, 0x50, 0x40, 0x77, 0xfa, 0x8d, 0x3e, 0x04, 0x30, 0x08, 0x71, 0xcd, 0xce, 0x38, + 0x54, 0xbc, 0x3e, 0xdb, 0x1d, 0x6f, 0xfb, 0x7c, 0x3b, 0x17, 0x84, 0x5f, 0x3e, 0x1b, 0x8a, 0x4a, + 0xbe, 0x59, 0x52, 0xa8, 0xee, 0x41, 0x25, 0x2a, 0x2b, 0xd7, 0xe2, 0x4b, 0x33, 0x6a, 0xf1, 0x01, + 0x3c, 0x0c, 0xc0, 0x65, 0x8a, 0x57, 0x7b, 0x59, 0x43, 0xfd, 0x4c, 0x81, 0x7c, 0xfb, 0x58, 0x1c, + 0xd4, 0x98, 0x42, 0x63, 0x28, 0x9a, 0x94, 0xcb, 0x6a, 0xbc, 0x72, 0x99, 0x0a, 0xea, 0xa1, 0xef, + 0x04, 0xae, 0x28, 0xbd, 0x6c, 0x71, 0xc2, 0x2f, 0x0c, 0x0b, 0xf7, 0xfb, 0x26, 0x14, 0x82, 0x5d, + 0x45, 0x4f, 0x89, 0xd1, 0xeb, 0xb9, 0xfe, 0x29, 0xa1, 0xc7, 0x98, 0x37, 0x59, 0xdd, 0xda, 0x7e, + 0x28, 0x0a, 0x77, 0x29, 0x8d, 0x37, 0xd4, 0x1e, 0xac, 0x4c, 0x04, 0x62, 0xf4, 0x26, 0xe4, 0x9c, + 0x71, 0x47, 0xf7, 0xcd, 0x33, 0x71, 0x78, 0x7c, 0x3c, 0x3c, 0xee, 0x0c, 0xcd, 0xee, 0x2d, 0x7c, + 0xe2, 0x0f, 0xc6, 0x19, 0x77, 0x6e, 0x71, 0x2b, 0xf2, 0x5e, 0x92, 0x72, 0x2f, 0x47, 0x90, 0xf7, + 0x37, 0x05, 0xfa, 0x5f, 0xf9, 0x9c, 0xf8, 0xb7, 0x19, 0xb1, 0xe0, 0x40, 0xa8, 0x97, 0x8e, 0xc9, + 0x65, 0x58, 0xf5, 0xcc, 0xbe, 0x85, 0x7b, 0x7a, 0x98, 0x85, 0xb1, 0xde, 0xf2, 0xda, 0x0a, 0xff, + 0x71, 0xdb, 0x4f, 0xc1, 0xd4, 0x7f, 0x2a, 0x90, 0xf7, 0x0f, 0x2c, 0x7a, 0x45, 0xda, 0x77, 0x95, + 0x19, 0x85, 0x38, 0x9f, 0x31, 0x2c, 0x3d, 0x47, 0xc7, 0x9a, 0x3c, 0xfd, 0x58, 0xe3, 0xee, 0x10, + 0xfc, 0xcb, 0x9c, 0xf4, 0xa9, 0x2f, 0x73, 0x5e, 0x04, 0x44, 0x6c, 0x62, 0x0c, 0xf5, 0x23, 0x9b, + 0x98, 0x56, 0x5f, 0xe7, 0xc6, 0xe6, 0x18, 0xb1, 0xca, 0xfe, 0xdc, 0x63, 0x3f, 0xee, 0x30, 0xbb, + 0xff, 0x5c, 0x81, 0x7c, 0x10, 0xed, 0x4f, 0x5b, 0x49, 0x3e, 0x07, 0x59, 0x11, 0xd0, 0x78, 0x29, + 0x59, 0xb4, 0x82, 0x4b, 0x8d, 0xb4, 0x74, 0xa9, 0x51, 0x87, 0xfc, 0x08, 0x13, 0x83, 0x41, 0x1e, + 0x9e, 0x08, 0x07, 0x6d, 0xf5, 0x5f, 0x0a, 0x80, 0x14, 0x30, 0x9e, 0x82, 0x52, 0x24, 0xcb, 0xe6, + 0x87, 0xa6, 0xd8, 0x91, 0x32, 0xec, 0xf8, 0x52, 0x39, 0xd2, 0xa0, 0xcc, 0x2f, 0x86, 0x1e, 0x9a, + 0xc4, 0xa2, 0xbb, 0x9c, 0x43, 0xb7, 0x97, 0xe6, 0x04, 0x9c, 0x0d, 0x76, 0x67, 0xf4, 0x3e, 0xe7, + 0x6f, 0x5a, 0xc4, 0x3d, 0xd1, 0x4a, 0x9e, 0x44, 0xaa, 0xdf, 0x87, 0xd5, 0x29, 0x96, 0x19, 0x97, + 0x75, 0x57, 0x64, 0x07, 0x31, 0xab, 0x92, 0x2b, 0x2b, 0x11, 0xfe, 0xe3, 0x8d, 0xe4, 0x35, 0x45, + 0xfd, 0x83, 0x02, 0x25, 0xf9, 0x1f, 0xba, 0x0a, 0x79, 0x3f, 0xe7, 0x9c, 0x75, 0x02, 0xa2, 0x29, + 0xa7, 0x96, 0x13, 0x19, 0x27, 0x75, 0xeb, 0xae, 0x6d, 0x13, 0xd9, 0x2e, 0x79, 0x4a, 0x60, 0x86, + 0x79, 0x1b, 0x4a, 0xc2, 0x24, 0x3a, 0x5b, 0x05, 0x6e, 0x97, 0xe9, 0xb8, 0x27, 0xc6, 0x70, 0xdd, + 0x20, 0x86, 0x56, 0x7c, 0x18, 0x36, 0xd4, 0x3e, 0x14, 0xa5, 0x7f, 0x4b, 0x3b, 0xc8, 0x97, 0xd9, + 0x75, 0x98, 0x7d, 0x28, 0x42, 0xde, 0xbc, 0x89, 0x70, 0xc6, 0xcb, 0xaf, 0x43, 0x51, 0xba, 0xe4, + 0xa1, 0x1d, 0xed, 0x35, 0xdf, 0xaf, 0x26, 0xea, 0xb9, 0xcf, 0xbe, 0xb8, 0x98, 0xda, 0xc3, 0x0f, + 0xa9, 0x0f, 0xd3, 0x9a, 0x8d, 0x56, 0xb3, 0x71, 0xab, 0xaa, 0xd4, 0x8b, 0x9f, 0x7d, 0x71, 0x31, + 0xa7, 0x61, 0x56, 0xcf, 0xbd, 0xdc, 0x82, 0x92, 0x7c, 0x4a, 0xa3, 0x18, 0x09, 0x41, 0xe5, 0xfa, + 0xdd, 0x3b, 0xb7, 0x77, 0x1b, 0xdb, 0xed, 0xa6, 0x7e, 0x6f, 0xbf, 0xdd, 0xac, 0x2a, 0xe8, 0x71, + 0x38, 0x73, 0x7b, 0xf7, 0x66, 0xab, 0xad, 0x37, 0x6e, 0xef, 0x36, 0xf7, 0xda, 0xfa, 0x76, 0xbb, + 0xbd, 0xdd, 0xb8, 0x55, 0x4d, 0x6e, 0x7d, 0x5b, 0x82, 0x95, 0xed, 0x9d, 0xc6, 0x2e, 0xc5, 0x77, + 0x66, 0xd7, 0x10, 0xf5, 0xf2, 0x34, 0xab, 0x4b, 0xcd, 0x7d, 0x8f, 0x53, 0x9f, 0x7f, 0x5d, 0x80, + 0x6e, 0x40, 0x86, 0x95, 0xac, 0xd0, 0xfc, 0x07, 0x3a, 0xf5, 0x05, 0xf7, 0x07, 0x74, 0x30, 0xcc, + 0x5d, 0xce, 0x7d, 0xb1, 0x53, 0x9f, 0x7f, 0x9d, 0x80, 0x34, 0x28, 0x84, 0x35, 0xa7, 0xc5, 0x2f, + 0x78, 0xea, 0x4b, 0x5c, 0x31, 0x50, 0x9d, 0x61, 0xe2, 0xbb, 0xf8, 0x45, 0x4b, 0x7d, 0x89, 0x80, + 0x86, 0x6e, 0x43, 0xce, 0xaf, 0x55, 0x2c, 0x7a, 0x63, 0x53, 0x5f, 0x58, 0xfe, 0xa7, 0x4b, 0xc0, + 0x6b, 0x4a, 0xf3, 0x1f, 0x0c, 0xd5, 0x17, 0xdc, 0x65, 0xa0, 0x5d, 0xc8, 0x8a, 0x6c, 0x6e, 0xc1, + 0xbb, 0x99, 0xfa, 0xa2, 0x72, 0x3e, 0x35, 0x5a, 0x58, 0xac, 0x5b, 0xfc, 0x0c, 0xaa, 0xbe, 0xc4, + 0x35, 0x0d, 0xba, 0x0b, 0x20, 0x55, 0x90, 0x96, 0x78, 0xdf, 0x54, 0x5f, 0xe6, 0xfa, 0x05, 0xed, + 0x43, 0x3e, 0x48, 0xe8, 0x17, 0xbe, 0x36, 0xaa, 0x2f, 0xbe, 0x07, 0x41, 0xf7, 0xa1, 0x1c, 0xcd, + 0x64, 0x97, 0x7b, 0x43, 0x54, 0x5f, 0xf2, 0x82, 0x83, 0xea, 0x8f, 0xa6, 0xb5, 0xcb, 0xbd, 0x29, + 0xaa, 0x2f, 0x79, 0xdf, 0x81, 0x3e, 0x86, 0xd5, 0xe9, 0xb4, 0x73, 0xf9, 0x27, 0x46, 0xf5, 0x53, + 0xdc, 0x80, 0xa0, 0x11, 0xa0, 0x19, 0xe9, 0xea, 0x29, 0x5e, 0x1c, 0xd5, 0x4f, 0x73, 0x21, 0x42, + 0xb7, 0x90, 0x94, 0x03, 0x2e, 0xf1, 0x00, 0xa9, 0xbe, 0xcc, 0xb5, 0x08, 0x9d, 0xc5, 0x8c, 0x4c, + 0xf1, 0x14, 0xef, 0x91, 0xea, 0xa7, 0xb9, 0x2c, 0x41, 0xbf, 0x55, 0x60, 0x7d, 0x51, 0xf6, 0xf8, + 0xa8, 0x8f, 0x93, 0xea, 0x8f, 0x7c, 0x8b, 0xb2, 0xd3, 0xfc, 0xea, 0xbb, 0x35, 0xe5, 0xeb, 0xef, + 0xd6, 0x94, 0x6f, 0xbf, 0x5b, 0x53, 0x3e, 0xff, 0x7e, 0x2d, 0xf1, 0xf5, 0xf7, 0x6b, 0x89, 0xbf, + 0x7c, 0xbf, 0x96, 0xf8, 0xe0, 0x85, 0xbe, 0x49, 0x06, 0xe3, 0xce, 0x46, 0xd7, 0x1e, 0x6d, 0xca, + 0x6f, 0x4d, 0x67, 0xbd, 0x7f, 0xed, 0x64, 0x19, 0x2a, 0xbc, 0xf2, 0x9f, 0x00, 0x00, 0x00, 0xff, + 0xff, 0x4a, 0x5e, 0xd8, 0x9b, 0x1f, 0x2b, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/proto/tendermint/abci/types.proto b/proto/tendermint/abci/types.proto index 0e02d0ad441..bb0fa214f72 100644 --- a/proto/tendermint/abci/types.proto +++ b/proto/tendermint/abci/types.proto @@ -302,7 +302,7 @@ message ResponseGetAppHash { } message ResponseGenerateFraudProof { - FraudProof fraudProof = 1; + FraudProof fraud_proof = 1; } message ResponseTriggerFraudProofGenerationMode { @@ -419,8 +419,8 @@ message Snapshot { // Represents a single-round fraudProof message FraudProof { int64 block_height = 1; - bytes appHash = 2; - map stateWitness = 3; + bytes app_hash = 2; + map state_witness = 3; } // State witness with a list of all witness data @@ -428,9 +428,9 @@ message StateWitness { // store level proof tendermint.crypto.ProofOp proof_op = 1; // substore level hash - bytes rootHash = 2; + bytes root_hash = 2; // List of witness data - repeated WitnessData witnessData = 3; + repeated WitnessData witness_data = 3; } // Witness data containing a key/value pair and a SMT proof for said key/value pair From 1b81cad7b2bc0cf49badead26a7e1f49a49ff998 Mon Sep 17 00:00:00 2001 From: Manav Aggarwal Date: Tue, 11 Oct 2022 03:41:37 -0400 Subject: [PATCH 4/5] Update proto/tendermint/abci/types.proto MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Tomasz ZdybaƂ --- proto/tendermint/abci/types.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/tendermint/abci/types.proto b/proto/tendermint/abci/types.proto index bb0fa214f72..21cc41a9bed 100644 --- a/proto/tendermint/abci/types.proto +++ b/proto/tendermint/abci/types.proto @@ -433,7 +433,7 @@ message StateWitness { repeated WitnessData witness_data = 3; } -// Witness data containing a key/value pair and a SMT proof for said key/value pair +// Witness data containing a key/value pair and a Merkle proof for said key/value pair message WitnessData { bytes key = 1; bytes value = 2; From f0611bafff8a1ac29b57c7863fd9d61e9baa10b4 Mon Sep 17 00:00:00 2001 From: Manav Aggarwal Date: Tue, 11 Oct 2022 04:04:25 -0400 Subject: [PATCH 5/5] fix linting errors --- abci/client/client.go | 4 +++- abci/client/grpc_client.go | 12 +++++++++--- abci/client/socket_client.go | 8 ++++++-- abci/types/application.go | 28 +++++++++++++++++++--------- proxy/app_conn.go | 12 +++++++++--- 5 files changed, 46 insertions(+), 18 deletions(-) diff --git a/abci/client/client.go b/abci/client/client.go index 92e9758b1a4..d8dfcc96a18 100644 --- a/abci/client/client.go +++ b/abci/client/client.go @@ -58,7 +58,9 @@ type Client interface { ApplySnapshotChunkSync(types.RequestApplySnapshotChunk) (*types.ResponseApplySnapshotChunk, error) GetAppHashSync(types.RequestGetAppHash) (*types.ResponseGetAppHash, error) GenerateFraudProofSync(types.RequestGenerateFraudProof) (*types.ResponseGenerateFraudProof, error) - TriggerFraudProofGenerationModeSync(types.RequestTriggerFraudProofGenerationMode) (*types.ResponseTriggerFraudProofGenerationMode, error) + TriggerFraudProofGenerationModeSync( + types.RequestTriggerFraudProofGenerationMode, + ) (*types.ResponseTriggerFraudProofGenerationMode, error) } //---------------------------------------- diff --git a/abci/client/grpc_client.go b/abci/client/grpc_client.go index 603aaa7eb73..8bb393cf8bd 100644 --- a/abci/client/grpc_client.go +++ b/abci/client/grpc_client.go @@ -318,13 +318,19 @@ func (cli *grpcClient) GenerateFraudProofAsync(params types.RequestGenerateFraud return cli.finishAsyncCall(req, &types.Response{Value: &types.Response_GenerateFraudProof{GenerateFraudProof: res}}) } -func (cli *grpcClient) TriggerFraudProofGenerationModeAsync(params types.RequestTriggerFraudProofGenerationMode) *ReqRes { +func (cli *grpcClient) TriggerFraudProofGenerationModeAsync( + params types.RequestTriggerFraudProofGenerationMode, +) *ReqRes { req := types.ToRequestTriggerFraudProofGenerationMode(params) - res, err := cli.client.TriggerFraudProofGenerationMode(context.Background(), req.GetTriggerFraudProofGenerationMode(), grpc.WaitForReady(true)) + res, err := cli.client.TriggerFraudProofGenerationMode( + context.Background(), req.GetTriggerFraudProofGenerationMode(), grpc.WaitForReady(true), + ) if err != nil { cli.StopForError(err) } - return cli.finishAsyncCall(req, &types.Response{Value: &types.Response_TriggerFraudProofGenerationMode{TriggerFraudProofGenerationMode: res}}) + return cli.finishAsyncCall( + req, &types.Response{Value: &types.Response_TriggerFraudProofGenerationMode{TriggerFraudProofGenerationMode: res}}, + ) } // finishAsyncCall creates a ReqRes for an async call, and immediately populates it diff --git a/abci/client/socket_client.go b/abci/client/socket_client.go index dddb5bc5ca2..e2c33d9f0ca 100644 --- a/abci/client/socket_client.go +++ b/abci/client/socket_client.go @@ -283,11 +283,15 @@ func (cli *socketClient) GetAppHashAsync(req types.RequestGetAppHash) *ReqRes { return cli.queueRequest(types.ToRequestGetAppHash(req)) } -func (cli *socketClient) GenerateFraudProofAsync(req types.RequestGenerateFraudProof) *ReqRes { +func (cli *socketClient) GenerateFraudProofAsync( + req types.RequestGenerateFraudProof, +) *ReqRes { return cli.queueRequest(types.ToRequestGenerateFraudProof(req)) } -func (cli *socketClient) TriggerFraudProofGenerationModeAsync(req types.RequestTriggerFraudProofGenerationMode) *ReqRes { +func (cli *socketClient) TriggerFraudProofGenerationModeAsync( + req types.RequestTriggerFraudProofGenerationMode, +) *ReqRes { return cli.queueRequest(types.ToRequestTriggerFraudProofGenerationMode(req)) } diff --git a/abci/types/application.go b/abci/types/application.go index 1cfc81e2152..8efb5749f80 100644 --- a/abci/types/application.go +++ b/abci/types/application.go @@ -18,14 +18,23 @@ type Application interface { CheckTx(RequestCheckTx) ResponseCheckTx // Validate a tx for the mempool // Consensus Connection - InitChain(RequestInitChain) ResponseInitChain // Initialize blockchain w validators/other info from TendermintCore - BeginBlock(RequestBeginBlock) ResponseBeginBlock // Signals the beginning of a block - DeliverTx(RequestDeliverTx) ResponseDeliverTx // Deliver a tx for full processing - EndBlock(RequestEndBlock) ResponseEndBlock // Signals the end of a block, returns changes to the validator set - Commit() ResponseCommit // Commit the state and return the application Merkle root hash - GetAppHash(RequestGetAppHash) ResponseGetAppHash // Get appHash - GenerateFraudProof(RequestGenerateFraudProof) ResponseGenerateFraudProof // Generate FraudProof - TriggerFraudProofGenerationMode(RequestTriggerFraudProofGenerationMode) ResponseTriggerFraudProofGenerationMode // Trigger Fraud Proof Generation Mode + + // Initialize blockchain w validators/other info from TendermintCore + InitChain(RequestInitChain) ResponseInitChain + // Signals the beginning of a block + BeginBlock(RequestBeginBlock) ResponseBeginBlock + // Deliver a tx for full processing + DeliverTx(RequestDeliverTx) ResponseDeliverTx + // Signals the end of a block, returns changes to the validator set + EndBlock(RequestEndBlock) ResponseEndBlock + // Commit the state and return the application Merkle root hash + Commit() ResponseCommit + // Get appHash + GetAppHash(RequestGetAppHash) ResponseGetAppHash + // Generate FraudProof + GenerateFraudProof(RequestGenerateFraudProof) ResponseGenerateFraudProof + // Trigger Fraud Proof Generation Mode + TriggerFraudProofGenerationMode(RequestTriggerFraudProofGenerationMode) ResponseTriggerFraudProofGenerationMode // State Sync Connection ListSnapshots(RequestListSnapshots) ResponseListSnapshots // List available snapshots @@ -106,7 +115,8 @@ func (BaseApplication) GenerateFraudProof(req RequestGenerateFraudProof) Respons return ResponseGenerateFraudProof{} } -func (BaseApplication) TriggerFraudProofGenerationMode(req RequestTriggerFraudProofGenerationMode) ResponseTriggerFraudProofGenerationMode { +func (BaseApplication) TriggerFraudProofGenerationMode( + req RequestTriggerFraudProofGenerationMode) ResponseTriggerFraudProofGenerationMode { return ResponseTriggerFraudProofGenerationMode{} } diff --git a/proxy/app_conn.go b/proxy/app_conn.go index 5aa3d78c1d0..4715204a445 100644 --- a/proxy/app_conn.go +++ b/proxy/app_conn.go @@ -22,7 +22,9 @@ type AppConnConsensus interface { CommitSync() (*types.ResponseCommit, error) GetAppHashSync(types.RequestGetAppHash) (*types.ResponseGetAppHash, error) GenerateFraudProofSync(types.RequestGenerateFraudProof) (*types.ResponseGenerateFraudProof, error) - TriggerFraudProofGenerationModeSync(types.RequestTriggerFraudProofGenerationMode) (*types.ResponseTriggerFraudProofGenerationMode, error) + TriggerFraudProofGenerationModeSync( + types.RequestTriggerFraudProofGenerationMode, + ) (*types.ResponseTriggerFraudProofGenerationMode, error) } type AppConnMempool interface { @@ -100,11 +102,15 @@ func (app *appConnConsensus) GetAppHashSync(req types.RequestGetAppHash) (*types return app.appConn.GetAppHashSync(req) } -func (app *appConnConsensus) GenerateFraudProofSync(req types.RequestGenerateFraudProof) (*types.ResponseGenerateFraudProof, error) { +func (app *appConnConsensus) GenerateFraudProofSync( + req types.RequestGenerateFraudProof, +) (*types.ResponseGenerateFraudProof, error) { return app.appConn.GenerateFraudProofSync(req) } -func (app *appConnConsensus) TriggerFraudProofGenerationModeSync(req types.RequestTriggerFraudProofGenerationMode) (*types.ResponseTriggerFraudProofGenerationMode, error) { +func (app *appConnConsensus) TriggerFraudProofGenerationModeSync( + req types.RequestTriggerFraudProofGenerationMode, +) (*types.ResponseTriggerFraudProofGenerationMode, error) { return app.appConn.TriggerFraudProofGenerationModeSync(req) }