From 156b93a6ba16bb9adf39241c2bb5814c66e4de7c Mon Sep 17 00:00:00 2001 From: insumity Date: Thu, 16 May 2024 16:42:46 +0200 Subject: [PATCH] took into account comments --- .../ccv/provider/v1/query.proto | 16 +- x/ccv/provider/client/cli/query.go | 8 +- x/ccv/provider/keeper/grpc_query.go | 10 +- x/ccv/provider/keeper/grpc_query_test.go | 12 +- x/ccv/provider/types/query.pb.go | 431 +++++++++--------- x/ccv/provider/types/query.pb.gw.go | 28 +- 6 files changed, 250 insertions(+), 255 deletions(-) diff --git a/proto/interchain_security/ccv/provider/v1/query.proto b/proto/interchain_security/ccv/provider/v1/query.proto index 2651f15102..14c9060137 100644 --- a/proto/interchain_security/ccv/provider/v1/query.proto +++ b/proto/interchain_security/ccv/provider/v1/query.proto @@ -135,9 +135,11 @@ service Query { "/interchain_security/ccv/provider/oldest_unconfirmed_vsc/{chain_id}"; } - // QueryConsumerChainConsumerValidators returns the latest set consumer-validator set for a given chainID - rpc QueryConsumerChainConsumerValidators(QueryConsumerChainConsumerValidatorsRequest) - returns (QueryConsumerChainConsumerValidatorsResponse) { + // QueryConsumerValidators returns the latest set consumer-validator set for a given chainID + // Note that this does not necessarily mean that the consumer chain is using this validator set at this exact moment + // because a VSCPacket could be delayed to be delivered on the consumer chain. + rpc QueryConsumerValidators(QueryConsumerValidatorsRequest) + returns (QueryConsumerValidatorsResponse) { option (google.api.http).get = "/interchain_security/ccv/provider/consumer_validators/{chain_id}"; } @@ -265,11 +267,11 @@ message QueryConsumerChainOptedInValidatorsResponse { repeated string validators_provider_addresses = 1; } -message QueryConsumerChainConsumerValidatorsRequest { +message QueryConsumerValidatorsRequest { string chain_id = 1; } -message QueryConsumerChainConsumerValidator { +message QueryConsumerValidatorsValidator { // The consensus address of the validator on the provider chain string provider_address = 1 [ (gogoproto.moretags) = "yaml:\"address\"" ]; // The consumer public key of the validator used on the consumer chain @@ -278,8 +280,8 @@ message QueryConsumerChainConsumerValidator { int64 power = 3; } -message QueryConsumerChainConsumerValidatorsResponse { - repeated QueryConsumerChainConsumerValidator validators = 1; +message QueryConsumerValidatorsResponse { + repeated QueryConsumerValidatorsValidator validators = 1; } message QueryConsumerChainsValidatorHasToValidateRequest { diff --git a/x/ccv/provider/client/cli/query.go b/x/ccv/provider/client/cli/query.go index 2ce2fe1c87..22f82419b2 100644 --- a/x/ccv/provider/client/cli/query.go +++ b/x/ccv/provider/client/cli/query.go @@ -36,7 +36,7 @@ func NewQueryCmd() *cobra.Command { cmd.AddCommand(CmdAllPairsValConAddrByConsumerChainID()) cmd.AddCommand(CmdProviderParameters()) cmd.AddCommand(CmdConsumerChainOptedInValidators()) - cmd.AddCommand(CmdConsumerChainConsumerValidators()) + cmd.AddCommand(CmdConsumerValidators()) cmd.AddCommand(CmdConsumerChainsValidatorHasToValidate()) cmd.AddCommand(CmdValidatorConsumerCommissionRate()) cmd.AddCommand(CmdOldestUnconfirmedVsc()) @@ -450,7 +450,7 @@ $ %s consumer-opted-in-validators foochain } // Command to query the consumer validators by consumer chain ID -func CmdConsumerChainConsumerValidators() *cobra.Command { +func CmdConsumerValidators() *cobra.Command { cmd := &cobra.Command{ Use: "consumer-validators [chainid]", Short: "Query the last set consumer-validator set for a given consumer chain", @@ -469,8 +469,8 @@ $ %s consumer-validators foochain } queryClient := types.NewQueryClient(clientCtx) - res, err := queryClient.QueryConsumerChainConsumerValidators(cmd.Context(), - &types.QueryConsumerChainConsumerValidatorsRequest{ChainId: args[0]}) + res, err := queryClient.QueryConsumerValidators(cmd.Context(), + &types.QueryConsumerValidatorsRequest{ChainId: args[0]}) if err != nil { return err } diff --git a/x/ccv/provider/keeper/grpc_query.go b/x/ccv/provider/keeper/grpc_query.go index 2584d6f36d..019c1dc957 100644 --- a/x/ccv/provider/keeper/grpc_query.go +++ b/x/ccv/provider/keeper/grpc_query.go @@ -252,8 +252,8 @@ func (k Keeper) QueryConsumerChainOptedInValidators(goCtx context.Context, req * }, nil } -// QueryConsumerChainConsumerValidators returns all validators that are consumer validators in a given consumer chain -func (k Keeper) QueryConsumerChainConsumerValidators(goCtx context.Context, req *types.QueryConsumerChainConsumerValidatorsRequest) (*types.QueryConsumerChainConsumerValidatorsResponse, error) { +// QueryConsumerValidators returns all validators that are consumer validators in a given consumer chain +func (k Keeper) QueryConsumerValidators(goCtx context.Context, req *types.QueryConsumerValidatorsRequest) (*types.QueryConsumerValidatorsResponse, error) { if req == nil { return nil, status.Error(codes.InvalidArgument, "empty request") } @@ -270,16 +270,16 @@ func (k Keeper) QueryConsumerChainConsumerValidators(goCtx context.Context, req return nil, status.Error(codes.InvalidArgument, fmt.Sprintf("no started consumer chain: %s", consumerChainID)) } - var validators []*types.QueryConsumerChainConsumerValidator + var validators []*types.QueryConsumerValidatorsValidator for _, v := range k.GetConsumerValSet(ctx, consumerChainID) { - validators = append(validators, &types.QueryConsumerChainConsumerValidator{ + validators = append(validators, &types.QueryConsumerValidatorsValidator{ ProviderAddress: sdk.ConsAddress(v.ProviderConsAddr).String(), ConsumerKey: v.ConsumerPublicKey, Power: v.Power, }) } - return &types.QueryConsumerChainConsumerValidatorsResponse{ + return &types.QueryConsumerValidatorsResponse{ Validators: validators, }, nil } diff --git a/x/ccv/provider/keeper/grpc_query_test.go b/x/ccv/provider/keeper/grpc_query_test.go index e605b0723a..71a9b82b7e 100644 --- a/x/ccv/provider/keeper/grpc_query_test.go +++ b/x/ccv/provider/keeper/grpc_query_test.go @@ -135,18 +135,18 @@ func TestQueryConsumerChainOptedInValidators(t *testing.T) { require.Equal(t, &expectedResponse, res) } -func TestQueryConsumerChainConsumerValidators(t *testing.T) { +func TestQueryConsumerValidators(t *testing.T) { chainID := "chainID" pk, ctx, ctrl, _ := testkeeper.GetProviderKeeperAndCtx(t, testkeeper.NewInMemKeeperParams(t)) defer ctrl.Finish() - req := types.QueryConsumerChainConsumerValidatorsRequest{ + req := types.QueryConsumerValidatorsRequest{ ChainId: chainID, } // error returned from not-started chain - _, err := pk.QueryConsumerChainConsumerValidators(ctx, &req) + _, err := pk.QueryConsumerValidators(ctx, &req) require.Error(t, err) providerAddr1 := types.NewProviderConsAddress([]byte("providerAddr1")) @@ -157,8 +157,8 @@ func TestQueryConsumerChainConsumerValidators(t *testing.T) { consumerKey2 := cryptotestutil.NewCryptoIdentityFromIntSeed(2).TMProtoCryptoPublicKey() consumerValidator2 := types.ConsumerValidator{ProviderConsAddr: providerAddr2.ToSdkConsAddr(), Power: 2, ConsumerPublicKey: &consumerKey2} - expectedResponse := types.QueryConsumerChainConsumerValidatorsResponse{ - Validators: []*types.QueryConsumerChainConsumerValidator{ + expectedResponse := types.QueryConsumerValidatorsResponse{ + Validators: []*types.QueryConsumerValidatorsValidator{ {providerAddr1.String(), &consumerKey1, 1}, {providerAddr2.String(), &consumerKey2, 2}, }, @@ -168,7 +168,7 @@ func TestQueryConsumerChainConsumerValidators(t *testing.T) { pk.SetConsumerClientId(ctx, chainID, "clientID") pk.SetConsumerValSet(ctx, chainID, []types.ConsumerValidator{consumerValidator1, consumerValidator2}) - res, err := pk.QueryConsumerChainConsumerValidators(ctx, &req) + res, err := pk.QueryConsumerValidators(ctx, &req) require.NoError(t, err) require.Equal(t, &expectedResponse, res) } diff --git a/x/ccv/provider/types/query.pb.go b/x/ccv/provider/types/query.pb.go index 8dac560f9b..24d42d9e97 100644 --- a/x/ccv/provider/types/query.pb.go +++ b/x/ccv/provider/types/query.pb.go @@ -1261,26 +1261,22 @@ func (m *QueryConsumerChainOptedInValidatorsResponse) GetValidatorsProviderAddre return nil } -type QueryConsumerChainConsumerValidatorsRequest struct { +type QueryConsumerValidatorsRequest struct { ChainId string `protobuf:"bytes,1,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"` } -func (m *QueryConsumerChainConsumerValidatorsRequest) Reset() { - *m = QueryConsumerChainConsumerValidatorsRequest{} -} -func (m *QueryConsumerChainConsumerValidatorsRequest) String() string { - return proto.CompactTextString(m) -} -func (*QueryConsumerChainConsumerValidatorsRequest) ProtoMessage() {} -func (*QueryConsumerChainConsumerValidatorsRequest) Descriptor() ([]byte, []int) { +func (m *QueryConsumerValidatorsRequest) Reset() { *m = QueryConsumerValidatorsRequest{} } +func (m *QueryConsumerValidatorsRequest) String() string { return proto.CompactTextString(m) } +func (*QueryConsumerValidatorsRequest) ProtoMessage() {} +func (*QueryConsumerValidatorsRequest) Descriptor() ([]byte, []int) { return fileDescriptor_422512d7b7586cd7, []int{27} } -func (m *QueryConsumerChainConsumerValidatorsRequest) XXX_Unmarshal(b []byte) error { +func (m *QueryConsumerValidatorsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } -func (m *QueryConsumerChainConsumerValidatorsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { +func (m *QueryConsumerValidatorsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { if deterministic { - return xxx_messageInfo_QueryConsumerChainConsumerValidatorsRequest.Marshal(b, m, deterministic) + return xxx_messageInfo_QueryConsumerValidatorsRequest.Marshal(b, m, deterministic) } else { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) @@ -1290,46 +1286,46 @@ func (m *QueryConsumerChainConsumerValidatorsRequest) XXX_Marshal(b []byte, dete return b[:n], nil } } -func (m *QueryConsumerChainConsumerValidatorsRequest) XXX_Merge(src proto.Message) { - xxx_messageInfo_QueryConsumerChainConsumerValidatorsRequest.Merge(m, src) +func (m *QueryConsumerValidatorsRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_QueryConsumerValidatorsRequest.Merge(m, src) } -func (m *QueryConsumerChainConsumerValidatorsRequest) XXX_Size() int { +func (m *QueryConsumerValidatorsRequest) XXX_Size() int { return m.Size() } -func (m *QueryConsumerChainConsumerValidatorsRequest) XXX_DiscardUnknown() { - xxx_messageInfo_QueryConsumerChainConsumerValidatorsRequest.DiscardUnknown(m) +func (m *QueryConsumerValidatorsRequest) XXX_DiscardUnknown() { + xxx_messageInfo_QueryConsumerValidatorsRequest.DiscardUnknown(m) } -var xxx_messageInfo_QueryConsumerChainConsumerValidatorsRequest proto.InternalMessageInfo +var xxx_messageInfo_QueryConsumerValidatorsRequest proto.InternalMessageInfo -func (m *QueryConsumerChainConsumerValidatorsRequest) GetChainId() string { +func (m *QueryConsumerValidatorsRequest) GetChainId() string { if m != nil { return m.ChainId } return "" } -type QueryConsumerChainConsumerValidator struct { +type QueryConsumerValidatorsValidator struct { // The consensus address of the validator on the provider chain - ProviderAddress string `protobuf:"bytes,1,opt,name=provider_address,json=providerAddress,proto3" json:"provider_address,omitempty" yaml:"provider_address"` + ProviderAddress string `protobuf:"bytes,1,opt,name=provider_address,json=providerAddress,proto3" json:"provider_address,omitempty" yaml:"address"` // The consumer public key of the validator used on the consumer chain ConsumerKey *crypto.PublicKey `protobuf:"bytes,2,opt,name=consumer_key,json=consumerKey,proto3" json:"consumer_key,omitempty"` // The power of the validator used on the consumer chain Power int64 `protobuf:"varint,3,opt,name=power,proto3" json:"power,omitempty"` } -func (m *QueryConsumerChainConsumerValidator) Reset() { *m = QueryConsumerChainConsumerValidator{} } -func (m *QueryConsumerChainConsumerValidator) String() string { return proto.CompactTextString(m) } -func (*QueryConsumerChainConsumerValidator) ProtoMessage() {} -func (*QueryConsumerChainConsumerValidator) Descriptor() ([]byte, []int) { +func (m *QueryConsumerValidatorsValidator) Reset() { *m = QueryConsumerValidatorsValidator{} } +func (m *QueryConsumerValidatorsValidator) String() string { return proto.CompactTextString(m) } +func (*QueryConsumerValidatorsValidator) ProtoMessage() {} +func (*QueryConsumerValidatorsValidator) Descriptor() ([]byte, []int) { return fileDescriptor_422512d7b7586cd7, []int{28} } -func (m *QueryConsumerChainConsumerValidator) XXX_Unmarshal(b []byte) error { +func (m *QueryConsumerValidatorsValidator) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } -func (m *QueryConsumerChainConsumerValidator) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { +func (m *QueryConsumerValidatorsValidator) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { if deterministic { - return xxx_messageInfo_QueryConsumerChainConsumerValidator.Marshal(b, m, deterministic) + return xxx_messageInfo_QueryConsumerValidatorsValidator.Marshal(b, m, deterministic) } else { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) @@ -1339,59 +1335,55 @@ func (m *QueryConsumerChainConsumerValidator) XXX_Marshal(b []byte, deterministi return b[:n], nil } } -func (m *QueryConsumerChainConsumerValidator) XXX_Merge(src proto.Message) { - xxx_messageInfo_QueryConsumerChainConsumerValidator.Merge(m, src) +func (m *QueryConsumerValidatorsValidator) XXX_Merge(src proto.Message) { + xxx_messageInfo_QueryConsumerValidatorsValidator.Merge(m, src) } -func (m *QueryConsumerChainConsumerValidator) XXX_Size() int { +func (m *QueryConsumerValidatorsValidator) XXX_Size() int { return m.Size() } -func (m *QueryConsumerChainConsumerValidator) XXX_DiscardUnknown() { - xxx_messageInfo_QueryConsumerChainConsumerValidator.DiscardUnknown(m) +func (m *QueryConsumerValidatorsValidator) XXX_DiscardUnknown() { + xxx_messageInfo_QueryConsumerValidatorsValidator.DiscardUnknown(m) } -var xxx_messageInfo_QueryConsumerChainConsumerValidator proto.InternalMessageInfo +var xxx_messageInfo_QueryConsumerValidatorsValidator proto.InternalMessageInfo -func (m *QueryConsumerChainConsumerValidator) GetProviderAddress() string { +func (m *QueryConsumerValidatorsValidator) GetProviderAddress() string { if m != nil { return m.ProviderAddress } return "" } -func (m *QueryConsumerChainConsumerValidator) GetConsumerKey() *crypto.PublicKey { +func (m *QueryConsumerValidatorsValidator) GetConsumerKey() *crypto.PublicKey { if m != nil { return m.ConsumerKey } return nil } -func (m *QueryConsumerChainConsumerValidator) GetPower() int64 { +func (m *QueryConsumerValidatorsValidator) GetPower() int64 { if m != nil { return m.Power } return 0 } -type QueryConsumerChainConsumerValidatorsResponse struct { - Validators []*QueryConsumerChainConsumerValidator `protobuf:"bytes,1,rep,name=validators,proto3" json:"validators,omitempty"` +type QueryConsumerValidatorsResponse struct { + Validators []*QueryConsumerValidatorsValidator `protobuf:"bytes,1,rep,name=validators,proto3" json:"validators,omitempty"` } -func (m *QueryConsumerChainConsumerValidatorsResponse) Reset() { - *m = QueryConsumerChainConsumerValidatorsResponse{} -} -func (m *QueryConsumerChainConsumerValidatorsResponse) String() string { - return proto.CompactTextString(m) -} -func (*QueryConsumerChainConsumerValidatorsResponse) ProtoMessage() {} -func (*QueryConsumerChainConsumerValidatorsResponse) Descriptor() ([]byte, []int) { +func (m *QueryConsumerValidatorsResponse) Reset() { *m = QueryConsumerValidatorsResponse{} } +func (m *QueryConsumerValidatorsResponse) String() string { return proto.CompactTextString(m) } +func (*QueryConsumerValidatorsResponse) ProtoMessage() {} +func (*QueryConsumerValidatorsResponse) Descriptor() ([]byte, []int) { return fileDescriptor_422512d7b7586cd7, []int{29} } -func (m *QueryConsumerChainConsumerValidatorsResponse) XXX_Unmarshal(b []byte) error { +func (m *QueryConsumerValidatorsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) } -func (m *QueryConsumerChainConsumerValidatorsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { +func (m *QueryConsumerValidatorsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { if deterministic { - return xxx_messageInfo_QueryConsumerChainConsumerValidatorsResponse.Marshal(b, m, deterministic) + return xxx_messageInfo_QueryConsumerValidatorsResponse.Marshal(b, m, deterministic) } else { b = b[:cap(b)] n, err := m.MarshalToSizedBuffer(b) @@ -1401,19 +1393,19 @@ func (m *QueryConsumerChainConsumerValidatorsResponse) XXX_Marshal(b []byte, det return b[:n], nil } } -func (m *QueryConsumerChainConsumerValidatorsResponse) XXX_Merge(src proto.Message) { - xxx_messageInfo_QueryConsumerChainConsumerValidatorsResponse.Merge(m, src) +func (m *QueryConsumerValidatorsResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_QueryConsumerValidatorsResponse.Merge(m, src) } -func (m *QueryConsumerChainConsumerValidatorsResponse) XXX_Size() int { +func (m *QueryConsumerValidatorsResponse) XXX_Size() int { return m.Size() } -func (m *QueryConsumerChainConsumerValidatorsResponse) XXX_DiscardUnknown() { - xxx_messageInfo_QueryConsumerChainConsumerValidatorsResponse.DiscardUnknown(m) +func (m *QueryConsumerValidatorsResponse) XXX_DiscardUnknown() { + xxx_messageInfo_QueryConsumerValidatorsResponse.DiscardUnknown(m) } -var xxx_messageInfo_QueryConsumerChainConsumerValidatorsResponse proto.InternalMessageInfo +var xxx_messageInfo_QueryConsumerValidatorsResponse proto.InternalMessageInfo -func (m *QueryConsumerChainConsumerValidatorsResponse) GetValidators() []*QueryConsumerChainConsumerValidator { +func (m *QueryConsumerValidatorsResponse) GetValidators() []*QueryConsumerValidatorsValidator { if m != nil { return m.Validators } @@ -1421,6 +1413,7 @@ func (m *QueryConsumerChainConsumerValidatorsResponse) GetValidators() []*QueryC } type QueryConsumerChainsValidatorHasToValidateRequest struct { + // The consensus address of the validator on the provider chain ProviderAddress string `protobuf:"bytes,1,opt,name=provider_address,json=providerAddress,proto3" json:"provider_address,omitempty" yaml:"address"` } @@ -1731,9 +1724,9 @@ func init() { proto.RegisterType((*QueryParamsResponse)(nil), "interchain_security.ccv.provider.v1.QueryParamsResponse") proto.RegisterType((*QueryConsumerChainOptedInValidatorsRequest)(nil), "interchain_security.ccv.provider.v1.QueryConsumerChainOptedInValidatorsRequest") proto.RegisterType((*QueryConsumerChainOptedInValidatorsResponse)(nil), "interchain_security.ccv.provider.v1.QueryConsumerChainOptedInValidatorsResponse") - proto.RegisterType((*QueryConsumerChainConsumerValidatorsRequest)(nil), "interchain_security.ccv.provider.v1.QueryConsumerChainConsumerValidatorsRequest") - proto.RegisterType((*QueryConsumerChainConsumerValidator)(nil), "interchain_security.ccv.provider.v1.QueryConsumerChainConsumerValidator") - proto.RegisterType((*QueryConsumerChainConsumerValidatorsResponse)(nil), "interchain_security.ccv.provider.v1.QueryConsumerChainConsumerValidatorsResponse") + proto.RegisterType((*QueryConsumerValidatorsRequest)(nil), "interchain_security.ccv.provider.v1.QueryConsumerValidatorsRequest") + proto.RegisterType((*QueryConsumerValidatorsValidator)(nil), "interchain_security.ccv.provider.v1.QueryConsumerValidatorsValidator") + proto.RegisterType((*QueryConsumerValidatorsResponse)(nil), "interchain_security.ccv.provider.v1.QueryConsumerValidatorsResponse") proto.RegisterType((*QueryConsumerChainsValidatorHasToValidateRequest)(nil), "interchain_security.ccv.provider.v1.QueryConsumerChainsValidatorHasToValidateRequest") proto.RegisterType((*QueryConsumerChainsValidatorHasToValidateResponse)(nil), "interchain_security.ccv.provider.v1.QueryConsumerChainsValidatorHasToValidateResponse") proto.RegisterType((*QueryValidatorConsumerCommissionRateRequest)(nil), "interchain_security.ccv.provider.v1.QueryValidatorConsumerCommissionRateRequest") @@ -1747,128 +1740,128 @@ func init() { } var fileDescriptor_422512d7b7586cd7 = []byte{ - // 1928 bytes of a gzipped FileDescriptorProto + // 1922 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x59, 0xcd, 0x6f, 0xdc, 0xc6, - 0x15, 0x17, 0x57, 0xb6, 0x6b, 0x8d, 0x62, 0xc7, 0x1d, 0xbb, 0x89, 0x4c, 0x29, 0xbb, 0x0e, 0xd3, - 0xa6, 0xf2, 0x17, 0x29, 0xad, 0x1b, 0xd4, 0x71, 0xa2, 0xc8, 0x5a, 0xad, 0x3f, 0x16, 0x76, 0xe2, - 0x0d, 0x2d, 0xab, 0x85, 0x5b, 0x94, 0xa6, 0xc8, 0xc9, 0x8a, 0x30, 0x97, 0x43, 0x71, 0xb8, 0xab, - 0x2c, 0x8c, 0x00, 0x4d, 0x0f, 0x6d, 0x4e, 0x45, 0xd0, 0x36, 0x40, 0x8f, 0xb9, 0xf4, 0xd8, 0x4b, - 0x51, 0xf4, 0x2f, 0xe8, 0x21, 0xb7, 0xa6, 0xcd, 0xa5, 0xe8, 0x41, 0x29, 0xe4, 0x1e, 0x8a, 0x9e, - 0x0a, 0xa3, 0x40, 0x4f, 0x05, 0x0a, 0x0e, 0x87, 0x5f, 0xbb, 0xd4, 0xee, 0x70, 0xb5, 0x39, 0x59, - 0x3b, 0x9c, 0xf9, 0xbd, 0xf7, 0x7b, 0xf3, 0xe6, 0xcd, 0xfb, 0x8d, 0x81, 0x62, 0x39, 0x3e, 0xf2, - 0x8c, 0x6d, 0xdd, 0x72, 0x34, 0x82, 0x8c, 0x8e, 0x67, 0xf9, 0x3d, 0xc5, 0x30, 0xba, 0x8a, 0xeb, - 0xe1, 0xae, 0x65, 0x22, 0x4f, 0xe9, 0x2e, 0x2b, 0x3b, 0x1d, 0xe4, 0xf5, 0x64, 0xd7, 0xc3, 0x3e, - 0x86, 0xaf, 0xe4, 0x2c, 0x90, 0x0d, 0xa3, 0x2b, 0x47, 0x0b, 0xe4, 0xee, 0xb2, 0xb8, 0xd0, 0xc2, - 0xb8, 0x65, 0x23, 0x45, 0x77, 0x2d, 0x45, 0x77, 0x1c, 0xec, 0xeb, 0xbe, 0x85, 0x1d, 0x12, 0x42, - 0x88, 0x67, 0x5a, 0xb8, 0x85, 0xe9, 0x9f, 0x4a, 0xf0, 0x17, 0x1b, 0xad, 0xb0, 0x35, 0xf4, 0xd7, - 0x56, 0xe7, 0x3d, 0xc5, 0xb7, 0xda, 0x88, 0xf8, 0x7a, 0xdb, 0x65, 0x13, 0xaa, 0x3c, 0xae, 0xc6, - 0x5e, 0x84, 0x6b, 0x96, 0x0e, 0x5a, 0xd3, 0x5d, 0x56, 0xc8, 0xb6, 0xee, 0x21, 0x53, 0x33, 0xb0, - 0x43, 0x3a, 0xed, 0x78, 0xc5, 0xb7, 0x86, 0xac, 0xd8, 0xb5, 0x3c, 0xc4, 0xa6, 0x2d, 0xf8, 0xc8, - 0x31, 0x91, 0xd7, 0xb6, 0x1c, 0x5f, 0x31, 0xbc, 0x9e, 0xeb, 0x63, 0xe5, 0x31, 0xea, 0x45, 0x0c, - 0xcf, 0x1a, 0x98, 0xb4, 0x31, 0xd1, 0x42, 0x92, 0xe1, 0x8f, 0xf0, 0x93, 0x74, 0x15, 0xcc, 0xbf, - 0x1b, 0x84, 0x73, 0x9d, 0x99, 0xbd, 0x85, 0x1c, 0x44, 0x2c, 0xa2, 0xa2, 0x9d, 0x0e, 0x22, 0x3e, - 0x3c, 0x0b, 0x8e, 0x87, 0xb6, 0x2d, 0x73, 0x4e, 0x38, 0x27, 0x2c, 0xce, 0xa8, 0x5f, 0xa3, 0xbf, - 0x1b, 0xa6, 0xf4, 0x04, 0x2c, 0xe4, 0xaf, 0x24, 0x2e, 0x76, 0x08, 0x82, 0x3f, 0x00, 0x27, 0x5a, - 0xe1, 0x90, 0x46, 0x7c, 0xdd, 0x47, 0x74, 0xfd, 0x6c, 0x75, 0x49, 0x3e, 0x68, 0xc7, 0xba, 0xcb, - 0x72, 0x1f, 0xd6, 0xfd, 0x60, 0x5d, 0xed, 0xc8, 0x67, 0x7b, 0x95, 0x29, 0xf5, 0xb9, 0x56, 0x6a, - 0x4c, 0x5a, 0x00, 0x62, 0xc6, 0xf8, 0x7a, 0x00, 0x17, 0x79, 0x2d, 0xe9, 0x7d, 0xa4, 0xa2, 0xaf, - 0xcc, 0xb3, 0x1a, 0x38, 0x46, 0xcd, 0x93, 0x39, 0xe1, 0xdc, 0xf4, 0xe2, 0x6c, 0xf5, 0x82, 0xcc, - 0x91, 0x44, 0x32, 0x05, 0x51, 0xd9, 0x4a, 0xe9, 0x3c, 0xf8, 0xf6, 0xa0, 0x89, 0xfb, 0xbe, 0xee, - 0xf9, 0x4d, 0x0f, 0xbb, 0x98, 0xe8, 0x76, 0xec, 0xcd, 0x47, 0x02, 0x58, 0x1c, 0x3d, 0x97, 0xf9, - 0xf6, 0x43, 0x30, 0xe3, 0x46, 0x83, 0x2c, 0x62, 0x6f, 0xf1, 0xb9, 0xc7, 0xc0, 0xd7, 0x4c, 0xd3, - 0x0a, 0xb2, 0x3b, 0x81, 0x4e, 0x00, 0xa5, 0x45, 0xf0, 0x6a, 0x9e, 0x27, 0xd8, 0x1d, 0x70, 0xfa, - 0xa7, 0x42, 0x3e, 0xc1, 0xcc, 0xd4, 0x78, 0xa7, 0x07, 0x7c, 0x5e, 0x29, 0xe4, 0xb3, 0x8a, 0xda, - 0xb8, 0xab, 0xdb, 0xb9, 0x2e, 0x6f, 0x80, 0xa3, 0xd4, 0xf4, 0x90, 0x54, 0x84, 0xf3, 0x60, 0xc6, - 0xb0, 0x2d, 0xe4, 0xf8, 0xc1, 0xb7, 0x12, 0xfd, 0x76, 0x3c, 0x1c, 0x68, 0x98, 0xf0, 0x34, 0x38, - 0xea, 0x63, 0x57, 0x7b, 0x67, 0x6e, 0xfa, 0x9c, 0xb0, 0x78, 0x42, 0x3d, 0xe2, 0x63, 0xf7, 0x1d, - 0xe9, 0x67, 0x02, 0x78, 0x99, 0xd2, 0xdb, 0xd4, 0x6d, 0xcb, 0xd4, 0x7d, 0xec, 0xa5, 0xe2, 0xe7, - 0x8d, 0xce, 0x7e, 0xb8, 0x02, 0x4e, 0x45, 0x4c, 0x34, 0xdd, 0x34, 0x3d, 0x44, 0x48, 0x68, 0xb9, - 0x06, 0x9f, 0xed, 0x55, 0x4e, 0xf6, 0xf4, 0xb6, 0x7d, 0x4d, 0x62, 0x1f, 0x24, 0xf5, 0xf9, 0x68, - 0xee, 0x5a, 0x38, 0x72, 0xed, 0xf8, 0x47, 0x9f, 0x56, 0xa6, 0xfe, 0xf9, 0x69, 0x65, 0x4a, 0xba, - 0x07, 0xa4, 0x61, 0x8e, 0xb0, 0x10, 0x9f, 0x07, 0xa7, 0xa2, 0xc2, 0x10, 0x9b, 0x0b, 0x3d, 0x7a, - 0xde, 0x48, 0xcd, 0x0f, 0x8c, 0x0d, 0x52, 0x6b, 0xa6, 0x8c, 0xf3, 0x51, 0x1b, 0xb0, 0x35, 0x84, - 0x5a, 0x9f, 0xfd, 0x61, 0xd4, 0xb2, 0x8e, 0x24, 0xd4, 0x06, 0x22, 0xc9, 0xa8, 0xf5, 0x45, 0x4d, - 0x9a, 0x07, 0x67, 0x29, 0xe0, 0xc6, 0xb6, 0x87, 0x7d, 0xdf, 0x46, 0xb4, 0x16, 0x44, 0x19, 0xfb, - 0x67, 0x81, 0xd5, 0x84, 0xbe, 0xaf, 0xcc, 0x4c, 0x05, 0xcc, 0x12, 0x5b, 0x27, 0xdb, 0x5a, 0x1b, - 0xf9, 0xc8, 0xa3, 0x16, 0xa6, 0x55, 0x40, 0x87, 0xde, 0x0e, 0x46, 0x60, 0x15, 0x7c, 0x23, 0x35, - 0x41, 0xd3, 0x6d, 0x1b, 0xef, 0xea, 0x8e, 0x81, 0x28, 0xf7, 0x69, 0xf5, 0x74, 0x32, 0x75, 0x2d, - 0xfa, 0x04, 0x7f, 0x04, 0xe6, 0x1c, 0xf4, 0xbe, 0xaf, 0x79, 0xc8, 0xb5, 0x91, 0x63, 0x91, 0x6d, - 0xcd, 0xd0, 0x1d, 0x33, 0x20, 0x8b, 0x68, 0xba, 0xcd, 0x56, 0x45, 0x39, 0xbc, 0x47, 0xe4, 0xe8, - 0x1e, 0x91, 0x37, 0xa2, 0x7b, 0xa4, 0x76, 0x3c, 0x28, 0x6c, 0x1f, 0x7f, 0x59, 0x11, 0xd4, 0x17, - 0x02, 0x14, 0x35, 0x02, 0x59, 0x8f, 0x30, 0xa4, 0x4b, 0xe0, 0x02, 0xa5, 0xa4, 0xa2, 0x96, 0x45, - 0x7c, 0xe4, 0x21, 0x33, 0x39, 0x32, 0xbb, 0xba, 0x67, 0xd6, 0x91, 0x83, 0xdb, 0xf1, 0x99, 0xbd, - 0x01, 0x2e, 0x72, 0xcd, 0x66, 0x11, 0x79, 0x01, 0x1c, 0x33, 0xe9, 0x08, 0x2d, 0x83, 0x33, 0x2a, - 0xfb, 0x25, 0x95, 0x59, 0x61, 0x0f, 0x8f, 0x23, 0x32, 0xe9, 0xf1, 0x6b, 0xd4, 0x63, 0x33, 0x1f, - 0x0a, 0xe0, 0xa5, 0x03, 0x26, 0x30, 0xe4, 0x47, 0xe0, 0xa4, 0x9b, 0xfe, 0x16, 0x15, 0xda, 0x2a, - 0x57, 0x55, 0xc8, 0xc0, 0xb2, 0xea, 0xdf, 0x87, 0x27, 0x35, 0xc0, 0x89, 0xcc, 0x34, 0x38, 0x07, - 0x58, 0xfe, 0xd6, 0xb3, 0xe9, 0x5c, 0x87, 0x65, 0x00, 0xa2, 0x6a, 0xd2, 0xa8, 0xd3, 0xcd, 0x3c, - 0xa2, 0xa6, 0x46, 0xa4, 0xbb, 0x40, 0xa1, 0x6c, 0xd6, 0x6c, 0xbb, 0xa9, 0x5b, 0x1e, 0xd9, 0xd4, - 0xed, 0x75, 0xec, 0x04, 0x29, 0x57, 0xcb, 0x16, 0xbf, 0x46, 0x9d, 0xe3, 0x56, 0xfc, 0x8d, 0x00, - 0x96, 0xf8, 0xe1, 0x58, 0xbc, 0x76, 0xc0, 0xd7, 0x5d, 0xdd, 0xf2, 0xb4, 0xae, 0x6e, 0x07, 0xf7, - 0x3f, 0x3d, 0x06, 0x2c, 0x64, 0x37, 0xf9, 0x42, 0xa6, 0x5b, 0x5e, 0x62, 0x28, 0x3e, 0x66, 0x4e, - 0x92, 0x00, 0x27, 0xdd, 0xcc, 0x14, 0xe9, 0x3f, 0x02, 0x78, 0x79, 0xe4, 0x2a, 0x78, 0xf3, 0xa0, - 0xb3, 0x59, 0x9b, 0x7f, 0xb6, 0x57, 0x79, 0x31, 0x2c, 0x05, 0xfd, 0x33, 0x06, 0xcb, 0x5d, 0x80, - 0x73, 0x40, 0x49, 0x49, 0xe1, 0xf4, 0xcf, 0x18, 0xac, 0x2d, 0x70, 0x15, 0x3c, 0x17, 0xcf, 0x7a, - 0x8c, 0x7a, 0xec, 0x8c, 0x2d, 0xc8, 0x49, 0xf7, 0x23, 0x87, 0xdd, 0x8f, 0xdc, 0xec, 0x6c, 0xd9, - 0x96, 0x71, 0x07, 0xf5, 0xd4, 0xd9, 0x68, 0xc5, 0x1d, 0xd4, 0x93, 0xce, 0x00, 0x18, 0xa6, 0xae, - 0xee, 0xe9, 0xc9, 0xc1, 0x79, 0x04, 0x4e, 0x67, 0x46, 0xd9, 0xb6, 0x34, 0xc0, 0x31, 0x97, 0x8e, - 0xb0, 0x4b, 0xed, 0x22, 0xe7, 0x5e, 0x04, 0x4b, 0x58, 0xde, 0x32, 0x00, 0xe9, 0x16, 0x3b, 0xc8, - 0x99, 0x0c, 0xb8, 0xe7, 0xfa, 0xc8, 0x6c, 0x38, 0x71, 0x79, 0xe4, 0xe9, 0xba, 0x76, 0xd8, 0x19, - 0x1f, 0x05, 0x14, 0xb7, 0x3a, 0x2f, 0x75, 0xe3, 0x51, 0xad, 0x7f, 0xa7, 0x50, 0x74, 0xf4, 0xe7, - 0x93, 0x49, 0xcd, 0xec, 0xd6, 0x21, 0x22, 0xdd, 0xce, 0x33, 0x19, 0xfd, 0x28, 0xe4, 0xfc, 0x1f, - 0x05, 0xf0, 0x0a, 0x07, 0xd4, 0xc4, 0xd2, 0xae, 0x3f, 0x5d, 0x4a, 0x05, 0xd3, 0x05, 0x9e, 0x01, - 0x47, 0x5d, 0xbc, 0x8b, 0x3c, 0x9a, 0x68, 0xd3, 0x6a, 0xf8, 0x43, 0xfa, 0xb5, 0x00, 0x2e, 0xf1, - 0x45, 0x84, 0xed, 0xc2, 0x36, 0x00, 0x49, 0x80, 0xd9, 0xc1, 0xbe, 0xcd, 0x95, 0x4c, 0x1c, 0x66, - 0xd4, 0x14, 0xb6, 0xb4, 0xc3, 0xaa, 0x4f, 0xb6, 0xf3, 0x8d, 0xe7, 0xde, 0xd6, 0xc9, 0x06, 0x66, - 0xbf, 0xa2, 0x8b, 0x33, 0xb7, 0x95, 0x11, 0xb8, 0x5b, 0x19, 0x49, 0x07, 0xcb, 0x05, 0x4c, 0xb2, - 0x88, 0x5c, 0x02, 0x30, 0xde, 0x99, 0x28, 0x5b, 0xa2, 0x64, 0x8c, 0x4b, 0x45, 0x58, 0x26, 0x4d, - 0xda, 0xd2, 0x5c, 0xcc, 0x6f, 0x92, 0xd6, 0x71, 0xbb, 0x6d, 0x11, 0x62, 0x61, 0x47, 0x4d, 0x31, - 0xfa, 0xca, 0xfa, 0x36, 0xe9, 0xc7, 0xd1, 0xd6, 0x8f, 0xf4, 0x84, 0x11, 0x6d, 0x82, 0x23, 0x5e, - 0x24, 0x7e, 0x66, 0x6a, 0x6f, 0x06, 0x45, 0xe1, 0x6f, 0x7b, 0x95, 0x57, 0x5b, 0x96, 0xbf, 0xdd, - 0xd9, 0x92, 0x0d, 0xdc, 0x66, 0x72, 0x8c, 0xfd, 0x73, 0x99, 0x98, 0x8f, 0x15, 0xbf, 0xe7, 0x22, - 0x22, 0xd7, 0x91, 0xf1, 0x97, 0xdf, 0x5f, 0x06, 0x4c, 0xad, 0xd5, 0x91, 0xa1, 0x52, 0x24, 0x69, - 0x05, 0x9c, 0xa3, 0x1e, 0xdc, 0xb3, 0x4d, 0x44, 0xfc, 0x07, 0x8e, 0x81, 0x9d, 0xf7, 0x2c, 0xaf, - 0x8d, 0xcc, 0x4d, 0x62, 0x70, 0x9c, 0xc1, 0x9f, 0x47, 0xed, 0x61, 0xfe, 0x7a, 0xe6, 0xb6, 0x05, - 0x60, 0x97, 0x18, 0x1a, 0x41, 0x8e, 0xa9, 0xc5, 0xc2, 0x97, 0x95, 0xc1, 0xd7, 0xb8, 0x32, 0x77, - 0x93, 0x18, 0xf7, 0x91, 0x63, 0x26, 0xdd, 0x4e, 0x58, 0x10, 0x4f, 0x75, 0xfb, 0xc6, 0xab, 0x5f, - 0x56, 0xc0, 0x51, 0xea, 0x10, 0xdc, 0x17, 0xc0, 0x99, 0x3c, 0x49, 0x09, 0xaf, 0x17, 0x3f, 0x2b, - 0x59, 0x1d, 0x2b, 0xae, 0x1d, 0x02, 0x21, 0x0c, 0x89, 0x74, 0xe3, 0x27, 0x5f, 0xfc, 0xe3, 0x97, - 0xa5, 0x55, 0xb8, 0x32, 0xfa, 0x8d, 0x22, 0x4e, 0x6d, 0xa6, 0x59, 0x95, 0x27, 0xd1, 0x6e, 0x7c, - 0x00, 0xbf, 0x10, 0xd8, 0x65, 0x93, 0x3d, 0x2f, 0x70, 0x75, 0xcc, 0x7a, 0x10, 0x53, 0xbc, 0x3e, - 0x3e, 0x00, 0x63, 0xf8, 0x3a, 0x65, 0x78, 0x05, 0x2e, 0x17, 0x60, 0x18, 0xca, 0x61, 0xf8, 0x61, - 0x09, 0xcc, 0x1d, 0xa0, 0x71, 0x09, 0xbc, 0x3b, 0xa6, 0x67, 0xb9, 0x72, 0x5a, 0x7c, 0x7b, 0x42, - 0x68, 0x8c, 0xf4, 0x6d, 0x4a, 0xba, 0x06, 0xaf, 0x17, 0x25, 0xad, 0x91, 0x00, 0x50, 0x8b, 0x95, - 0x2a, 0xfc, 0x9f, 0x00, 0x5e, 0xcc, 0x97, 0xcc, 0x04, 0xde, 0x19, 0xdb, 0xe9, 0x41, 0x6d, 0x2e, - 0xde, 0x9d, 0x0c, 0x18, 0x0b, 0xc0, 0x2d, 0x1a, 0x80, 0x35, 0xb8, 0x3a, 0x46, 0x00, 0xb0, 0x9b, - 0xe2, 0xff, 0xef, 0x48, 0x80, 0xe5, 0x4a, 0x59, 0x78, 0x93, 0xdf, 0xeb, 0x61, 0xa2, 0x5c, 0xbc, - 0x75, 0x68, 0x1c, 0x46, 0x7c, 0x8d, 0x12, 0x7f, 0x03, 0xbe, 0xce, 0xf1, 0xe8, 0x18, 0x01, 0x69, - 0x99, 0x26, 0x35, 0x87, 0x72, 0xba, 0x7d, 0x1a, 0x8b, 0x72, 0x8e, 0x58, 0x1f, 0x8b, 0x72, 0x9e, - 0xd6, 0x1e, 0x8f, 0x72, 0xe6, 0xbe, 0x84, 0x7f, 0x12, 0x58, 0x0b, 0x9d, 0x91, 0xd9, 0xf0, 0x2d, - 0x7e, 0x17, 0xf3, 0xd4, 0xbb, 0xb8, 0x3a, 0xf6, 0x7a, 0x46, 0xed, 0x2a, 0xa5, 0x56, 0x85, 0x4b, - 0xa3, 0xa9, 0xf9, 0x0c, 0x20, 0x7c, 0x97, 0x84, 0x9f, 0x94, 0x58, 0x57, 0x3a, 0x5c, 0x37, 0xc3, - 0x7b, 0xfc, 0x2e, 0x72, 0xe9, 0x75, 0xb1, 0x39, 0x39, 0x40, 0x16, 0x84, 0x3b, 0x34, 0x08, 0x37, - 0xe0, 0xfa, 0xe8, 0x20, 0x78, 0x31, 0x62, 0x92, 0xd3, 0x1e, 0xc5, 0xd4, 0xc2, 0x77, 0x00, 0xf8, - 0xaf, 0x01, 0x9d, 0x9f, 0x95, 0xaf, 0x04, 0x16, 0xb8, 0x55, 0x0f, 0x78, 0x4c, 0x10, 0x6b, 0x87, - 0x81, 0x60, 0xac, 0x6b, 0x94, 0xf5, 0x9b, 0xf0, 0xda, 0x68, 0xd6, 0xd1, 0x33, 0x82, 0xd6, 0x7f, - 0x81, 0xfd, 0xaa, 0xc4, 0x1e, 0x69, 0x39, 0x74, 0x3b, 0xdc, 0xe0, 0x77, 0x9a, 0xff, 0x55, 0x41, - 0x7c, 0x30, 0x61, 0x54, 0x16, 0x9d, 0x37, 0x68, 0x74, 0x5e, 0x83, 0x57, 0x0a, 0xd7, 0x77, 0xcb, - 0x84, 0xbf, 0x13, 0xc0, 0x6c, 0x4a, 0x1a, 0xc3, 0xef, 0x16, 0xd8, 0xae, 0xb4, 0xc4, 0x16, 0xaf, - 0x16, 0x5f, 0xc8, 0xfc, 0x5f, 0xa2, 0xfe, 0x5f, 0x80, 0x8b, 0x1c, 0xbb, 0x1b, 0x3a, 0xf9, 0x8b, - 0x52, 0x9e, 0xcc, 0x1c, 0x10, 0xc9, 0x45, 0x0e, 0x34, 0x97, 0x6e, 0x2f, 0x72, 0xa0, 0xf9, 0xf4, - 0x7b, 0x91, 0xee, 0x04, 0x07, 0x20, 0x9a, 0xe5, 0x68, 0x89, 0x1c, 0x4c, 0xf7, 0x9d, 0x7f, 0x28, - 0x81, 0xf3, 0xdc, 0x3a, 0x0d, 0x3e, 0x18, 0xb7, 0x99, 0x1c, 0x2a, 0x35, 0xc5, 0xcd, 0x49, 0xc3, - 0xb2, 0x30, 0x3d, 0xa4, 0x61, 0xda, 0x80, 0x6a, 0xe1, 0xce, 0x55, 0x73, 0x91, 0x97, 0x44, 0x4c, - 0x79, 0xd2, 0x2f, 0x0e, 0x3f, 0x80, 0xbf, 0x2d, 0x81, 0x6f, 0xf2, 0x48, 0x3e, 0xd8, 0x3c, 0x44, - 0x63, 0x92, 0xab, 0x63, 0xc5, 0x77, 0x27, 0x88, 0xc8, 0x22, 0xf5, 0x88, 0x46, 0xea, 0x21, 0xfc, - 0x7e, 0x91, 0x48, 0xc5, 0x50, 0x5a, 0xa0, 0x40, 0x53, 0x59, 0x95, 0x17, 0xaf, 0xff, 0x0a, 0xec, - 0x95, 0x3e, 0x4f, 0x60, 0xc2, 0x1b, 0xfc, 0x94, 0x86, 0x08, 0x5c, 0xf1, 0xe6, 0x61, 0x61, 0x8a, - 0x5f, 0x98, 0x98, 0xe2, 0x68, 0x9d, 0x04, 0x48, 0xeb, 0x12, 0x23, 0x7d, 0xc4, 0x3e, 0x89, 0x32, - 0x65, 0xc4, 0xbb, 0x10, 0x6c, 0x4e, 0xea, 0xed, 0x87, 0x8c, 0x91, 0x29, 0x9c, 0x8f, 0x56, 0x63, - 0x09, 0xa3, 0xdc, 0xd2, 0x53, 0xfb, 0xde, 0x67, 0xfb, 0x65, 0xe1, 0xf3, 0xfd, 0xb2, 0xf0, 0xf7, - 0xfd, 0xb2, 0xf0, 0xf1, 0xd3, 0xf2, 0xd4, 0xe7, 0x4f, 0xcb, 0x53, 0x7f, 0x7d, 0x5a, 0x9e, 0x7a, - 0xb8, 0x32, 0xf8, 0x0e, 0x92, 0x18, 0xbb, 0x1c, 0x1b, 0xeb, 0x7e, 0x47, 0x79, 0xbf, 0xaf, 0x85, - 0xeb, 0xb9, 0x88, 0x6c, 0x1d, 0xa3, 0xff, 0xa9, 0x72, 0xe5, 0xff, 0x01, 0x00, 0x00, 0xff, 0xff, - 0xb9, 0x4c, 0xa6, 0xea, 0x36, 0x20, 0x00, 0x00, + 0x15, 0x17, 0x57, 0xb6, 0x6b, 0x8d, 0x62, 0xc7, 0x1d, 0xab, 0x89, 0x4c, 0x29, 0xbb, 0x0a, 0xd3, + 0xa6, 0xf2, 0x17, 0x29, 0xad, 0x1b, 0xd4, 0xb1, 0xa3, 0xc8, 0x5a, 0xad, 0xa4, 0x2c, 0xe4, 0x44, + 0x1b, 0x5a, 0x56, 0x0b, 0xb7, 0x28, 0x4d, 0x91, 0x93, 0x15, 0x61, 0x2e, 0x87, 0xe2, 0x70, 0x57, + 0x59, 0x18, 0x01, 0x9a, 0x1e, 0xda, 0x9c, 0x8a, 0xa0, 0x1f, 0xf7, 0x5c, 0x7a, 0xec, 0xa5, 0x28, + 0x8a, 0xfc, 0x09, 0xb9, 0x35, 0x6d, 0x2e, 0x45, 0x0f, 0x6a, 0x21, 0xf7, 0x50, 0xf4, 0x50, 0x14, + 0x41, 0x81, 0x9e, 0x0a, 0x14, 0x1c, 0x0e, 0xbf, 0x76, 0xb9, 0xbb, 0xe4, 0xae, 0x7a, 0xb2, 0x76, + 0x38, 0xf3, 0x9b, 0xf7, 0x7b, 0xf3, 0xde, 0x9b, 0xf7, 0x1b, 0x03, 0xc9, 0xb0, 0x5c, 0xe4, 0x68, + 0x07, 0xaa, 0x61, 0x29, 0x04, 0x69, 0x2d, 0xc7, 0x70, 0x3b, 0x92, 0xa6, 0xb5, 0x25, 0xdb, 0xc1, + 0x6d, 0x43, 0x47, 0x8e, 0xd4, 0x5e, 0x96, 0x0e, 0x5b, 0xc8, 0xe9, 0x88, 0xb6, 0x83, 0x5d, 0x0c, + 0x5f, 0x49, 0x59, 0x20, 0x6a, 0x5a, 0x5b, 0x0c, 0x16, 0x88, 0xed, 0x65, 0x7e, 0xbe, 0x81, 0x71, + 0xc3, 0x44, 0x92, 0x6a, 0x1b, 0x92, 0x6a, 0x59, 0xd8, 0x55, 0x5d, 0x03, 0x5b, 0xc4, 0x87, 0xe0, + 0x67, 0x1a, 0xb8, 0x81, 0xe9, 0x9f, 0x92, 0xf7, 0x17, 0x1b, 0x2d, 0xb1, 0x35, 0xf4, 0xd7, 0x7e, + 0xeb, 0x3d, 0xc9, 0x35, 0x9a, 0x88, 0xb8, 0x6a, 0xd3, 0x66, 0x13, 0xca, 0x59, 0x4c, 0x0d, 0xad, + 0xf0, 0xd7, 0x2c, 0xf5, 0x5b, 0xd3, 0x5e, 0x96, 0xc8, 0x81, 0xea, 0x20, 0x5d, 0xd1, 0xb0, 0x45, + 0x5a, 0xcd, 0x70, 0xc5, 0x37, 0x06, 0xac, 0x38, 0x32, 0x1c, 0xc4, 0xa6, 0xcd, 0xbb, 0xc8, 0xd2, + 0x91, 0xd3, 0x34, 0x2c, 0x57, 0xd2, 0x9c, 0x8e, 0xed, 0x62, 0xe9, 0x09, 0xea, 0x04, 0x0c, 0xaf, + 0x68, 0x98, 0x34, 0x31, 0x51, 0x7c, 0x92, 0xfe, 0x0f, 0xff, 0x93, 0x70, 0x1b, 0xcc, 0xbd, 0xeb, + 0xb9, 0x73, 0x9d, 0x6d, 0xbb, 0x85, 0x2c, 0x44, 0x0c, 0x22, 0xa3, 0xc3, 0x16, 0x22, 0x2e, 0xbc, + 0x02, 0xce, 0xfb, 0x7b, 0x1b, 0xfa, 0x2c, 0xb7, 0xc0, 0x2d, 0x4e, 0xc9, 0x5f, 0xa1, 0xbf, 0x6b, + 0xba, 0xf0, 0x14, 0xcc, 0xa7, 0xaf, 0x24, 0x36, 0xb6, 0x08, 0x82, 0xdf, 0x03, 0x17, 0x1a, 0xfe, + 0x90, 0x42, 0x5c, 0xd5, 0x45, 0x74, 0xfd, 0x74, 0x79, 0x49, 0xec, 0x77, 0x62, 0xed, 0x65, 0xb1, + 0x0b, 0xeb, 0x81, 0xb7, 0xae, 0x72, 0xe6, 0xb3, 0xe3, 0xd2, 0x84, 0xfc, 0x5c, 0x23, 0x36, 0x26, + 0xcc, 0x03, 0x3e, 0xb1, 0xf9, 0xba, 0x07, 0x17, 0x58, 0x2d, 0xa8, 0x5d, 0xa4, 0x82, 0xaf, 0xcc, + 0xb2, 0x0a, 0x38, 0x47, 0xb7, 0x27, 0xb3, 0xdc, 0xc2, 0xe4, 0xe2, 0x74, 0xf9, 0x9a, 0x98, 0x21, + 0x88, 0x44, 0x0a, 0x22, 0xb3, 0x95, 0xc2, 0x55, 0xf0, 0xcd, 0xde, 0x2d, 0x1e, 0xb8, 0xaa, 0xe3, + 0xd6, 0x1d, 0x6c, 0x63, 0xa2, 0x9a, 0xa1, 0x35, 0x1f, 0x71, 0x60, 0x71, 0xf8, 0x5c, 0x66, 0xdb, + 0xf7, 0xc1, 0x94, 0x1d, 0x0c, 0x32, 0x8f, 0xbd, 0x99, 0xcd, 0x3c, 0x06, 0xbe, 0xa6, 0xeb, 0x86, + 0x17, 0xdd, 0x11, 0x74, 0x04, 0x28, 0x2c, 0x82, 0x57, 0xd3, 0x2c, 0xc1, 0x76, 0x8f, 0xd1, 0x3f, + 0xe6, 0xd2, 0x09, 0x26, 0xa6, 0x86, 0x27, 0xdd, 0x63, 0xf3, 0x4a, 0x2e, 0x9b, 0x65, 0xd4, 0xc4, + 0x6d, 0xd5, 0x4c, 0x35, 0x79, 0x17, 0x9c, 0xa5, 0x5b, 0x0f, 0x08, 0x45, 0x38, 0x07, 0xa6, 0x34, + 0xd3, 0x40, 0x96, 0xeb, 0x7d, 0x2b, 0xd0, 0x6f, 0xe7, 0xfd, 0x81, 0x9a, 0x0e, 0x2f, 0x83, 0xb3, + 0x2e, 0xb6, 0x95, 0x77, 0x66, 0x27, 0x17, 0xb8, 0xc5, 0x0b, 0xf2, 0x19, 0x17, 0xdb, 0xef, 0x08, + 0x3f, 0xe1, 0xc0, 0xcb, 0x94, 0xde, 0x9e, 0x6a, 0x1a, 0xba, 0xea, 0x62, 0x27, 0xe6, 0x3f, 0x67, + 0x78, 0xf4, 0xc3, 0x15, 0x70, 0x29, 0x60, 0xa2, 0xa8, 0xba, 0xee, 0x20, 0x42, 0xfc, 0x9d, 0x2b, + 0xf0, 0xcb, 0xe3, 0xd2, 0xc5, 0x8e, 0xda, 0x34, 0xef, 0x08, 0xec, 0x83, 0x20, 0x3f, 0x1f, 0xcc, + 0x5d, 0xf3, 0x47, 0xee, 0x9c, 0xff, 0xe8, 0x93, 0xd2, 0xc4, 0xdf, 0x3f, 0x29, 0x4d, 0x08, 0x3b, + 0x40, 0x18, 0x64, 0x08, 0x73, 0xf1, 0x55, 0x70, 0x29, 0x28, 0x0c, 0xe1, 0x76, 0xbe, 0x45, 0xcf, + 0x6b, 0xb1, 0xf9, 0xde, 0x66, 0xbd, 0xd4, 0xea, 0xb1, 0xcd, 0xb3, 0x51, 0xeb, 0xd9, 0x6b, 0x00, + 0xb5, 0xae, 0xfd, 0x07, 0x51, 0x4b, 0x1a, 0x12, 0x51, 0xeb, 0xf1, 0x24, 0xa3, 0xd6, 0xe5, 0x35, + 0x61, 0x0e, 0x5c, 0xa1, 0x80, 0xbb, 0x07, 0x0e, 0x76, 0x5d, 0x13, 0xd1, 0x5a, 0x10, 0x44, 0xec, + 0x1f, 0x38, 0x56, 0x13, 0xba, 0xbe, 0xb2, 0x6d, 0x4a, 0x60, 0x9a, 0x98, 0x2a, 0x39, 0x50, 0x9a, + 0xc8, 0x45, 0x0e, 0xdd, 0x61, 0x52, 0x06, 0x74, 0xe8, 0x6d, 0x6f, 0x04, 0x96, 0xc1, 0xd7, 0x62, + 0x13, 0x14, 0xd5, 0x34, 0xf1, 0x91, 0x6a, 0x69, 0x88, 0x72, 0x9f, 0x94, 0x2f, 0x47, 0x53, 0xd7, + 0x82, 0x4f, 0xf0, 0x07, 0x60, 0xd6, 0x42, 0xef, 0xbb, 0x8a, 0x83, 0x6c, 0x13, 0x59, 0x06, 0x39, + 0x50, 0x34, 0xd5, 0xd2, 0x3d, 0xb2, 0x88, 0x86, 0xdb, 0x74, 0x99, 0x17, 0xfd, 0x7b, 0x44, 0x0c, + 0xee, 0x11, 0x71, 0x37, 0xb8, 0x47, 0x2a, 0xe7, 0xbd, 0xc2, 0xf6, 0xf1, 0x5f, 0x4a, 0x9c, 0xfc, + 0x82, 0x87, 0x22, 0x07, 0x20, 0xeb, 0x01, 0x86, 0x70, 0x03, 0x5c, 0xa3, 0x94, 0x64, 0xd4, 0x30, + 0x88, 0x8b, 0x1c, 0xa4, 0x47, 0x29, 0x73, 0xa4, 0x3a, 0x7a, 0x15, 0x59, 0xb8, 0x19, 0xe6, 0xec, + 0x06, 0xb8, 0x9e, 0x69, 0x36, 0xf3, 0xc8, 0x0b, 0xe0, 0x9c, 0x4e, 0x47, 0x68, 0x19, 0x9c, 0x92, + 0xd9, 0x2f, 0xa1, 0xc8, 0x0a, 0xbb, 0x9f, 0x8e, 0x48, 0xa7, 0xe9, 0x57, 0xab, 0x86, 0xdb, 0x7c, + 0xc8, 0x81, 0x97, 0xfa, 0x4c, 0x60, 0xc8, 0x8f, 0xc1, 0x45, 0x3b, 0xfe, 0x2d, 0x28, 0xb4, 0xe5, + 0x4c, 0x55, 0x21, 0x01, 0xcb, 0xaa, 0x7f, 0x17, 0x9e, 0x50, 0x03, 0x17, 0x12, 0xd3, 0xe0, 0x2c, + 0x60, 0xf1, 0x5b, 0x4d, 0x86, 0x73, 0x15, 0x16, 0x01, 0x08, 0xaa, 0x49, 0xad, 0x4a, 0x0f, 0xf3, + 0x8c, 0x1c, 0x1b, 0x11, 0xee, 0x03, 0x89, 0xb2, 0x59, 0x33, 0xcd, 0xba, 0x6a, 0x38, 0x64, 0x4f, + 0x35, 0xd7, 0xb1, 0xe5, 0x85, 0x5c, 0x25, 0x59, 0xfc, 0x6a, 0xd5, 0x0c, 0xb7, 0xe2, 0xaf, 0x38, + 0xb0, 0x94, 0x1d, 0x8e, 0xf9, 0xeb, 0x10, 0x7c, 0xd5, 0x56, 0x0d, 0x47, 0x69, 0xab, 0xa6, 0x77, + 0xff, 0xd3, 0x34, 0x60, 0x2e, 0xdb, 0xcc, 0xe6, 0x32, 0xd5, 0x70, 0xa2, 0x8d, 0xc2, 0x34, 0xb3, + 0xa2, 0x00, 0xb8, 0x68, 0x27, 0xa6, 0x08, 0xff, 0xe6, 0xc0, 0xcb, 0x43, 0x57, 0xc1, 0xcd, 0x7e, + 0xb9, 0x59, 0x99, 0xfb, 0xf2, 0xb8, 0xf4, 0xa2, 0x5f, 0x0a, 0xba, 0x67, 0xf4, 0x96, 0x3b, 0x0f, + 0xa7, 0x4f, 0x49, 0x89, 0xe1, 0x74, 0xcf, 0xe8, 0xad, 0x2d, 0x70, 0x15, 0x3c, 0x17, 0xce, 0x7a, + 0x82, 0x3a, 0x2c, 0xc7, 0xe6, 0xc5, 0xa8, 0xfb, 0x11, 0xfd, 0xee, 0x47, 0xac, 0xb7, 0xf6, 0x4d, + 0x43, 0xdb, 0x46, 0x1d, 0x79, 0x3a, 0x58, 0xb1, 0x8d, 0x3a, 0xc2, 0x0c, 0x80, 0x7e, 0xe8, 0xaa, + 0x8e, 0x1a, 0x25, 0xce, 0x63, 0x70, 0x39, 0x31, 0xca, 0x8e, 0xa5, 0x06, 0xce, 0xd9, 0x74, 0x84, + 0x5d, 0x6a, 0xd7, 0x33, 0x9e, 0x85, 0xb7, 0x84, 0xc5, 0x2d, 0x03, 0x10, 0xb6, 0x58, 0x22, 0x27, + 0x22, 0x60, 0xc7, 0x76, 0x91, 0x5e, 0xb3, 0xc2, 0xf2, 0x98, 0xa5, 0xeb, 0x3a, 0x64, 0x39, 0x3e, + 0x0c, 0x28, 0x6c, 0x75, 0x5e, 0x6a, 0x87, 0xa3, 0x4a, 0xf7, 0x49, 0xa1, 0x20, 0xf5, 0xe7, 0xa2, + 0x49, 0xf5, 0xe4, 0xd1, 0x21, 0x22, 0xdc, 0x05, 0xc5, 0xc4, 0x96, 0xb9, 0xec, 0xfd, 0x94, 0x03, + 0x0b, 0x7d, 0x56, 0x87, 0x7f, 0xa5, 0x5e, 0xa6, 0x5c, 0xe6, 0xcb, 0xb4, 0x27, 0x2a, 0x0a, 0x39, + 0xa3, 0x02, 0xce, 0x80, 0xb3, 0x36, 0x3e, 0x42, 0x0e, 0x8d, 0xa7, 0x49, 0xd9, 0xff, 0xe1, 0xf5, + 0x6d, 0xa5, 0xbe, 0xc4, 0x99, 0x7f, 0x11, 0x00, 0x91, 0xeb, 0x58, 0xca, 0x6e, 0x64, 0x0a, 0x93, + 0x61, 0x4e, 0x91, 0x63, 0xc0, 0xc2, 0x21, 0x2b, 0x2a, 0xc9, 0x86, 0x36, 0x9c, 0xfb, 0x96, 0x4a, + 0x76, 0x31, 0xfb, 0x15, 0xdc, 0x87, 0x63, 0x3a, 0x55, 0x50, 0xc1, 0x72, 0x8e, 0x2d, 0x99, 0x3b, + 0x6e, 0x00, 0x18, 0x9e, 0x44, 0x10, 0x11, 0x41, 0x8c, 0x85, 0x15, 0xc0, 0xaf, 0x7e, 0x3a, 0xed, + 0x54, 0xae, 0xa7, 0xf7, 0x3e, 0xeb, 0xb8, 0xd9, 0x34, 0x08, 0x31, 0xb0, 0x25, 0xc7, 0x18, 0xfd, + 0xdf, 0xda, 0x31, 0xe1, 0x87, 0x1c, 0xb8, 0x91, 0xcd, 0x12, 0x46, 0xb4, 0x0e, 0xce, 0x38, 0x81, + 0xa6, 0x99, 0xaa, 0xbc, 0xe1, 0xe5, 0xfa, 0x9f, 0x8f, 0x4b, 0xaf, 0x36, 0x0c, 0xf7, 0xa0, 0xb5, + 0x2f, 0x6a, 0xb8, 0xc9, 0x54, 0x16, 0xfb, 0xe7, 0x26, 0xd1, 0x9f, 0x48, 0x6e, 0xc7, 0x46, 0x44, + 0xac, 0x22, 0xed, 0x8f, 0xbf, 0xbd, 0x09, 0x98, 0x08, 0xab, 0x22, 0x4d, 0xa6, 0x48, 0xc2, 0x0a, + 0xcb, 0x93, 0x1d, 0x53, 0x47, 0xc4, 0x7d, 0x68, 0x69, 0xd8, 0x7a, 0xcf, 0x70, 0x9a, 0x48, 0xdf, + 0x23, 0x5a, 0x86, 0x3c, 0xfb, 0x69, 0xd0, 0xf5, 0xa5, 0xaf, 0x67, 0x66, 0x1b, 0x00, 0xb6, 0x89, + 0xa6, 0x10, 0x64, 0xe9, 0x4a, 0xa8, 0x67, 0x59, 0x75, 0x7b, 0x2d, 0x53, 0xd8, 0xee, 0x11, 0xed, + 0x01, 0xb2, 0xf4, 0xa8, 0x89, 0xf1, 0xeb, 0xdc, 0xa5, 0x76, 0xd7, 0x78, 0xf9, 0xd3, 0x12, 0x38, + 0x4b, 0x0d, 0x82, 0x27, 0x1c, 0x98, 0x49, 0x53, 0x8a, 0xf0, 0x5e, 0xfe, 0x44, 0x49, 0xca, 0x53, + 0x7e, 0x6d, 0x0c, 0x04, 0xdf, 0x25, 0xc2, 0xc6, 0x8f, 0xbe, 0xf8, 0xdb, 0xcf, 0x0b, 0xab, 0x70, + 0x65, 0xf8, 0xd3, 0x43, 0x18, 0xda, 0x4c, 0x8a, 0x4a, 0x4f, 0x83, 0xd3, 0xf8, 0x00, 0x7e, 0xc1, + 0xb1, 0x3b, 0x24, 0x99, 0x2f, 0x70, 0x35, 0xbf, 0x85, 0x09, 0x2d, 0xcb, 0xdf, 0x1b, 0x1d, 0x80, + 0x31, 0x7c, 0x9d, 0x32, 0xbc, 0x05, 0x97, 0x73, 0x30, 0xf4, 0x55, 0x2e, 0xfc, 0xb0, 0x00, 0x66, + 0xfb, 0x48, 0x57, 0x02, 0xef, 0x8f, 0x68, 0x59, 0xaa, 0x4a, 0xe6, 0xdf, 0x3e, 0x25, 0x34, 0x46, + 0xfa, 0x2d, 0x4a, 0xba, 0x02, 0xef, 0xe5, 0x25, 0xad, 0x10, 0x0f, 0x50, 0x09, 0x05, 0x28, 0xfc, + 0x2f, 0x07, 0x5e, 0x4c, 0x57, 0xc2, 0x04, 0x6e, 0x8f, 0x6c, 0x74, 0xaf, 0xe4, 0xe6, 0xef, 0x9f, + 0x0e, 0x18, 0x73, 0xc0, 0x16, 0x75, 0xc0, 0x1a, 0x5c, 0x1d, 0xc1, 0x01, 0xd8, 0x8e, 0xf1, 0xff, + 0x57, 0xa0, 0xab, 0x52, 0x15, 0x2a, 0xdc, 0xcc, 0x6e, 0xf5, 0x20, 0xad, 0xcd, 0x6f, 0x8d, 0x8d, + 0xc3, 0x88, 0xaf, 0x51, 0xe2, 0x77, 0xe1, 0xeb, 0x19, 0xde, 0x12, 0x03, 0x20, 0x25, 0xd1, 0x7b, + 0xa6, 0x50, 0x8e, 0x77, 0x45, 0x23, 0x51, 0x4e, 0xd1, 0xe0, 0x23, 0x51, 0x4e, 0x93, 0xd0, 0xa3, + 0x51, 0x4e, 0xdc, 0x97, 0xf0, 0xf7, 0x1c, 0xeb, 0x8c, 0x13, 0xea, 0x19, 0xbe, 0x99, 0xdd, 0xc4, + 0x34, 0x51, 0xce, 0xaf, 0x8e, 0xbc, 0x9e, 0x51, 0xbb, 0x4d, 0xa9, 0x95, 0xe1, 0xd2, 0x70, 0x6a, + 0x2e, 0x03, 0xf0, 0x9f, 0x1b, 0xe1, 0x2f, 0x0b, 0xe0, 0x95, 0x0c, 0x72, 0x18, 0xee, 0x64, 0x37, + 0x31, 0x93, 0x0c, 0xe7, 0xeb, 0xa7, 0x07, 0xc8, 0x9c, 0xb0, 0x4d, 0x9d, 0xb0, 0x01, 0xd7, 0x87, + 0x3b, 0xc1, 0x09, 0x11, 0xa3, 0x98, 0x76, 0x28, 0xa6, 0xe2, 0xcb, 0x7b, 0xf8, 0x8f, 0x1e, 0xf9, + 0x9e, 0x54, 0xa5, 0x04, 0xe6, 0xb8, 0x55, 0xfb, 0xbc, 0x11, 0xf0, 0x95, 0x71, 0x20, 0x18, 0xeb, + 0x0a, 0x65, 0xfd, 0x06, 0xbc, 0x33, 0x9c, 0x75, 0xf0, 0x3a, 0xa0, 0x74, 0x5f, 0x60, 0xbf, 0x28, + 0xb0, 0xb7, 0xd7, 0x0c, 0x72, 0x1c, 0xee, 0x66, 0x37, 0x3a, 0xfb, 0x63, 0x01, 0xff, 0xf0, 0x94, + 0x51, 0x99, 0x77, 0xee, 0x52, 0xef, 0xbc, 0x06, 0x6f, 0xe5, 0xae, 0xef, 0x86, 0x0e, 0x7f, 0xc3, + 0x81, 0xe9, 0x98, 0xe2, 0x85, 0xdf, 0xce, 0x71, 0x5c, 0x71, 0xe5, 0xcc, 0xdf, 0xce, 0xbf, 0x90, + 0xd9, 0xbf, 0x44, 0xed, 0xbf, 0x06, 0x17, 0x33, 0x9c, 0xae, 0x6f, 0xe4, 0xcf, 0x82, 0x84, 0x1e, + 0xac, 0x7d, 0xf3, 0x24, 0x74, 0x26, 0x39, 0x9e, 0x27, 0xa1, 0xb3, 0xc9, 0xf2, 0x3c, 0xdd, 0x09, + 0xf6, 0x40, 0x14, 0xc3, 0x52, 0x22, 0x39, 0x18, 0xef, 0x3b, 0x7f, 0x57, 0x00, 0x57, 0x33, 0xeb, + 0x34, 0xf8, 0x70, 0xd4, 0x66, 0x72, 0xa0, 0xd4, 0xe4, 0xf7, 0x4e, 0x1b, 0x96, 0xb9, 0xe9, 0x11, + 0x75, 0xd3, 0x2e, 0x94, 0x73, 0x77, 0xae, 0x8a, 0x8d, 0x9c, 0xc8, 0x63, 0xd2, 0xd3, 0x6e, 0x71, + 0xf8, 0x01, 0xfc, 0x75, 0x01, 0x7c, 0x3d, 0x8b, 0xe4, 0x83, 0xf5, 0x31, 0x1a, 0x93, 0x54, 0x1d, + 0xcb, 0xbf, 0x7b, 0x8a, 0x88, 0xcc, 0x53, 0x8f, 0xa9, 0xa7, 0x1e, 0xc1, 0xef, 0xe6, 0xf1, 0x54, + 0x08, 0xa5, 0x78, 0x0a, 0x34, 0x16, 0x55, 0x69, 0xfe, 0xfa, 0x0f, 0xc7, 0x1e, 0xdf, 0xd3, 0x04, + 0x26, 0xcc, 0xf1, 0xe6, 0x31, 0x40, 0xe0, 0xf2, 0x9b, 0xe3, 0xc2, 0xe4, 0xbf, 0x30, 0x31, 0xc5, + 0x51, 0x5a, 0x11, 0x90, 0xd2, 0x26, 0x5a, 0x3c, 0xc5, 0xfe, 0xd9, 0x2d, 0x00, 0x62, 0xb5, 0x66, + 0x7d, 0x9c, 0xb7, 0x9e, 0x80, 0x75, 0x75, 0x3c, 0x90, 0x31, 0x14, 0x4f, 0x6a, 0x4d, 0xa9, 0x7c, + 0xe7, 0xb3, 0x93, 0x22, 0xf7, 0xf9, 0x49, 0x91, 0xfb, 0xeb, 0x49, 0x91, 0xfb, 0xf8, 0x59, 0x71, + 0xe2, 0xf3, 0x67, 0xc5, 0x89, 0x3f, 0x3d, 0x2b, 0x4e, 0x3c, 0x5a, 0xe9, 0x7d, 0xe0, 0x88, 0x36, + 0xbb, 0x19, 0x6e, 0xd6, 0xfe, 0x96, 0xf4, 0x7e, 0x57, 0x6f, 0xd6, 0xb1, 0x11, 0xd9, 0x3f, 0x47, + 0xff, 0x13, 0xe4, 0xd6, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0xfa, 0x60, 0x62, 0x21, 0xe6, 0x1f, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -1924,8 +1917,8 @@ type QueryClient interface { QueryValidatorConsumerCommissionRate(ctx context.Context, in *QueryValidatorConsumerCommissionRateRequest, opts ...grpc.CallOption) (*QueryValidatorConsumerCommissionRateResponse, error) // QueryOldestUnconfirmedVsc returns the send timestamp of the oldest unconfirmed VSCPacket for a given chainID QueryOldestUnconfirmedVsc(ctx context.Context, in *QueryOldestUnconfirmedVscRequest, opts ...grpc.CallOption) (*QueryOldestUnconfirmedVscResponse, error) - // QueryConsumerChainConsumerValidators returns the consumer validators sent by the latest VSCPacket for a given chainID - QueryConsumerChainConsumerValidators(ctx context.Context, in *QueryConsumerChainConsumerValidatorsRequest, opts ...grpc.CallOption) (*QueryConsumerChainConsumerValidatorsResponse, error) + // QueryConsumerValidators returns the latest set consumer-validator set for a given chainID + QueryConsumerValidators(ctx context.Context, in *QueryConsumerValidatorsRequest, opts ...grpc.CallOption) (*QueryConsumerValidatorsResponse, error) } type queryClient struct { @@ -2071,9 +2064,9 @@ func (c *queryClient) QueryOldestUnconfirmedVsc(ctx context.Context, in *QueryOl return out, nil } -func (c *queryClient) QueryConsumerChainConsumerValidators(ctx context.Context, in *QueryConsumerChainConsumerValidatorsRequest, opts ...grpc.CallOption) (*QueryConsumerChainConsumerValidatorsResponse, error) { - out := new(QueryConsumerChainConsumerValidatorsResponse) - err := c.cc.Invoke(ctx, "/interchain_security.ccv.provider.v1.Query/QueryConsumerChainConsumerValidators", in, out, opts...) +func (c *queryClient) QueryConsumerValidators(ctx context.Context, in *QueryConsumerValidatorsRequest, opts ...grpc.CallOption) (*QueryConsumerValidatorsResponse, error) { + out := new(QueryConsumerValidatorsResponse) + err := c.cc.Invoke(ctx, "/interchain_security.ccv.provider.v1.Query/QueryConsumerValidators", in, out, opts...) if err != nil { return nil, err } @@ -2123,8 +2116,8 @@ type QueryServer interface { QueryValidatorConsumerCommissionRate(context.Context, *QueryValidatorConsumerCommissionRateRequest) (*QueryValidatorConsumerCommissionRateResponse, error) // QueryOldestUnconfirmedVsc returns the send timestamp of the oldest unconfirmed VSCPacket for a given chainID QueryOldestUnconfirmedVsc(context.Context, *QueryOldestUnconfirmedVscRequest) (*QueryOldestUnconfirmedVscResponse, error) - // QueryConsumerChainConsumerValidators returns the consumer validators sent by the latest VSCPacket for a given chainID - QueryConsumerChainConsumerValidators(context.Context, *QueryConsumerChainConsumerValidatorsRequest) (*QueryConsumerChainConsumerValidatorsResponse, error) + // QueryConsumerValidators returns the latest set consumer-validator set for a given chainID + QueryConsumerValidators(context.Context, *QueryConsumerValidatorsRequest) (*QueryConsumerValidatorsResponse, error) } // UnimplementedQueryServer can be embedded to have forward compatible implementations. @@ -2176,8 +2169,8 @@ func (*UnimplementedQueryServer) QueryValidatorConsumerCommissionRate(ctx contex func (*UnimplementedQueryServer) QueryOldestUnconfirmedVsc(ctx context.Context, req *QueryOldestUnconfirmedVscRequest) (*QueryOldestUnconfirmedVscResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method QueryOldestUnconfirmedVsc not implemented") } -func (*UnimplementedQueryServer) QueryConsumerChainConsumerValidators(ctx context.Context, req *QueryConsumerChainConsumerValidatorsRequest) (*QueryConsumerChainConsumerValidatorsResponse, error) { - return nil, status.Errorf(codes.Unimplemented, "method QueryConsumerChainConsumerValidators not implemented") +func (*UnimplementedQueryServer) QueryConsumerValidators(ctx context.Context, req *QueryConsumerValidatorsRequest) (*QueryConsumerValidatorsResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method QueryConsumerValidators not implemented") } func RegisterQueryServer(s grpc1.Server, srv QueryServer) { @@ -2454,20 +2447,20 @@ func _Query_QueryOldestUnconfirmedVsc_Handler(srv interface{}, ctx context.Conte return interceptor(ctx, in, info, handler) } -func _Query_QueryConsumerChainConsumerValidators_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { - in := new(QueryConsumerChainConsumerValidatorsRequest) +func _Query_QueryConsumerValidators_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(QueryConsumerValidatorsRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { - return srv.(QueryServer).QueryConsumerChainConsumerValidators(ctx, in) + return srv.(QueryServer).QueryConsumerValidators(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/interchain_security.ccv.provider.v1.Query/QueryConsumerChainConsumerValidators", + FullMethod: "/interchain_security.ccv.provider.v1.Query/QueryConsumerValidators", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { - return srv.(QueryServer).QueryConsumerChainConsumerValidators(ctx, req.(*QueryConsumerChainConsumerValidatorsRequest)) + return srv.(QueryServer).QueryConsumerValidators(ctx, req.(*QueryConsumerValidatorsRequest)) } return interceptor(ctx, in, info, handler) } @@ -2537,8 +2530,8 @@ var _Query_serviceDesc = grpc.ServiceDesc{ Handler: _Query_QueryOldestUnconfirmedVsc_Handler, }, { - MethodName: "QueryConsumerChainConsumerValidators", - Handler: _Query_QueryConsumerChainConsumerValidators_Handler, + MethodName: "QueryConsumerValidators", + Handler: _Query_QueryConsumerValidators_Handler, }, }, Streams: []grpc.StreamDesc{}, @@ -3408,7 +3401,7 @@ func (m *QueryConsumerChainOptedInValidatorsResponse) MarshalToSizedBuffer(dAtA return len(dAtA) - i, nil } -func (m *QueryConsumerChainConsumerValidatorsRequest) Marshal() (dAtA []byte, err error) { +func (m *QueryConsumerValidatorsRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -3418,12 +3411,12 @@ func (m *QueryConsumerChainConsumerValidatorsRequest) Marshal() (dAtA []byte, er return dAtA[:n], nil } -func (m *QueryConsumerChainConsumerValidatorsRequest) MarshalTo(dAtA []byte) (int, error) { +func (m *QueryConsumerValidatorsRequest) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *QueryConsumerChainConsumerValidatorsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *QueryConsumerValidatorsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int @@ -3438,7 +3431,7 @@ func (m *QueryConsumerChainConsumerValidatorsRequest) MarshalToSizedBuffer(dAtA return len(dAtA) - i, nil } -func (m *QueryConsumerChainConsumerValidator) Marshal() (dAtA []byte, err error) { +func (m *QueryConsumerValidatorsValidator) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -3448,12 +3441,12 @@ func (m *QueryConsumerChainConsumerValidator) Marshal() (dAtA []byte, err error) return dAtA[:n], nil } -func (m *QueryConsumerChainConsumerValidator) MarshalTo(dAtA []byte) (int, error) { +func (m *QueryConsumerValidatorsValidator) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *QueryConsumerChainConsumerValidator) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *QueryConsumerValidatorsValidator) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int @@ -3485,7 +3478,7 @@ func (m *QueryConsumerChainConsumerValidator) MarshalToSizedBuffer(dAtA []byte) return len(dAtA) - i, nil } -func (m *QueryConsumerChainConsumerValidatorsResponse) Marshal() (dAtA []byte, err error) { +func (m *QueryConsumerValidatorsResponse) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalToSizedBuffer(dAtA[:size]) @@ -3495,12 +3488,12 @@ func (m *QueryConsumerChainConsumerValidatorsResponse) Marshal() (dAtA []byte, e return dAtA[:n], nil } -func (m *QueryConsumerChainConsumerValidatorsResponse) MarshalTo(dAtA []byte) (int, error) { +func (m *QueryConsumerValidatorsResponse) MarshalTo(dAtA []byte) (int, error) { size := m.Size() return m.MarshalToSizedBuffer(dAtA[:size]) } -func (m *QueryConsumerChainConsumerValidatorsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { +func (m *QueryConsumerValidatorsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { i := len(dAtA) _ = i var l int @@ -4087,7 +4080,7 @@ func (m *QueryConsumerChainOptedInValidatorsResponse) Size() (n int) { return n } -func (m *QueryConsumerChainConsumerValidatorsRequest) Size() (n int) { +func (m *QueryConsumerValidatorsRequest) Size() (n int) { if m == nil { return 0 } @@ -4100,7 +4093,7 @@ func (m *QueryConsumerChainConsumerValidatorsRequest) Size() (n int) { return n } -func (m *QueryConsumerChainConsumerValidator) Size() (n int) { +func (m *QueryConsumerValidatorsValidator) Size() (n int) { if m == nil { return 0 } @@ -4120,7 +4113,7 @@ func (m *QueryConsumerChainConsumerValidator) Size() (n int) { return n } -func (m *QueryConsumerChainConsumerValidatorsResponse) Size() (n int) { +func (m *QueryConsumerValidatorsResponse) Size() (n int) { if m == nil { return 0 } @@ -6468,7 +6461,7 @@ func (m *QueryConsumerChainOptedInValidatorsResponse) Unmarshal(dAtA []byte) err } return nil } -func (m *QueryConsumerChainConsumerValidatorsRequest) Unmarshal(dAtA []byte) error { +func (m *QueryConsumerValidatorsRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -6491,10 +6484,10 @@ func (m *QueryConsumerChainConsumerValidatorsRequest) Unmarshal(dAtA []byte) err fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: QueryConsumerChainConsumerValidatorsRequest: wiretype end group for non-group") + return fmt.Errorf("proto: QueryConsumerValidatorsRequest: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: QueryConsumerChainConsumerValidatorsRequest: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: QueryConsumerValidatorsRequest: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: @@ -6550,7 +6543,7 @@ func (m *QueryConsumerChainConsumerValidatorsRequest) Unmarshal(dAtA []byte) err } return nil } -func (m *QueryConsumerChainConsumerValidator) Unmarshal(dAtA []byte) error { +func (m *QueryConsumerValidatorsValidator) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -6573,10 +6566,10 @@ func (m *QueryConsumerChainConsumerValidator) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: QueryConsumerChainConsumerValidator: wiretype end group for non-group") + return fmt.Errorf("proto: QueryConsumerValidatorsValidator: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: QueryConsumerChainConsumerValidator: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: QueryConsumerValidatorsValidator: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: @@ -6687,7 +6680,7 @@ func (m *QueryConsumerChainConsumerValidator) Unmarshal(dAtA []byte) error { } return nil } -func (m *QueryConsumerChainConsumerValidatorsResponse) Unmarshal(dAtA []byte) error { +func (m *QueryConsumerValidatorsResponse) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -6710,10 +6703,10 @@ func (m *QueryConsumerChainConsumerValidatorsResponse) Unmarshal(dAtA []byte) er fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: QueryConsumerChainConsumerValidatorsResponse: wiretype end group for non-group") + return fmt.Errorf("proto: QueryConsumerValidatorsResponse: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: QueryConsumerChainConsumerValidatorsResponse: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: QueryConsumerValidatorsResponse: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: @@ -6745,7 +6738,7 @@ func (m *QueryConsumerChainConsumerValidatorsResponse) Unmarshal(dAtA []byte) er if postIndex > l { return io.ErrUnexpectedEOF } - m.Validators = append(m.Validators, &QueryConsumerChainConsumerValidator{}) + m.Validators = append(m.Validators, &QueryConsumerValidatorsValidator{}) if err := m.Validators[len(m.Validators)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } diff --git a/x/ccv/provider/types/query.pb.gw.go b/x/ccv/provider/types/query.pb.gw.go index c36542ed97..16bb010d71 100644 --- a/x/ccv/provider/types/query.pb.gw.go +++ b/x/ccv/provider/types/query.pb.gw.go @@ -559,8 +559,8 @@ func local_request_Query_QueryOldestUnconfirmedVsc_0(ctx context.Context, marsha } -func request_Query_QueryConsumerChainConsumerValidators_0(ctx context.Context, marshaler runtime.Marshaler, client QueryClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { - var protoReq QueryConsumerChainConsumerValidatorsRequest +func request_Query_QueryConsumerValidators_0(ctx context.Context, marshaler runtime.Marshaler, client QueryClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq QueryConsumerValidatorsRequest var metadata runtime.ServerMetadata var ( @@ -581,13 +581,13 @@ func request_Query_QueryConsumerChainConsumerValidators_0(ctx context.Context, m return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "chain_id", err) } - msg, err := client.QueryConsumerChainConsumerValidators(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD)) + msg, err := client.QueryConsumerValidators(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD)) return msg, metadata, err } -func local_request_Query_QueryConsumerChainConsumerValidators_0(ctx context.Context, marshaler runtime.Marshaler, server QueryServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { - var protoReq QueryConsumerChainConsumerValidatorsRequest +func local_request_Query_QueryConsumerValidators_0(ctx context.Context, marshaler runtime.Marshaler, server QueryServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq QueryConsumerValidatorsRequest var metadata runtime.ServerMetadata var ( @@ -608,7 +608,7 @@ func local_request_Query_QueryConsumerChainConsumerValidators_0(ctx context.Cont return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "chain_id", err) } - msg, err := server.QueryConsumerChainConsumerValidators(ctx, &protoReq) + msg, err := server.QueryConsumerValidators(ctx, &protoReq) return msg, metadata, err } @@ -964,7 +964,7 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv }) - mux.Handle("GET", pattern_Query_QueryConsumerChainConsumerValidators_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + mux.Handle("GET", pattern_Query_QueryConsumerValidators_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() var stream runtime.ServerTransportStream @@ -975,7 +975,7 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) return } - resp, md, err := local_request_Query_QueryConsumerChainConsumerValidators_0(rctx, inboundMarshaler, server, req, pathParams) + resp, md, err := local_request_Query_QueryConsumerValidators_0(rctx, inboundMarshaler, server, req, pathParams) md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) ctx = runtime.NewServerMetadataContext(ctx, md) if err != nil { @@ -983,7 +983,7 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv return } - forward_Query_QueryConsumerChainConsumerValidators_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + forward_Query_QueryConsumerValidators_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) }) @@ -1328,7 +1328,7 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie }) - mux.Handle("GET", pattern_Query_QueryConsumerChainConsumerValidators_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + mux.Handle("GET", pattern_Query_QueryConsumerValidators_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) @@ -1337,14 +1337,14 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) return } - resp, md, err := request_Query_QueryConsumerChainConsumerValidators_0(rctx, inboundMarshaler, client, req, pathParams) + resp, md, err := request_Query_QueryConsumerValidators_0(rctx, inboundMarshaler, client, req, pathParams) ctx = runtime.NewServerMetadataContext(ctx, md) if err != nil { runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) return } - forward_Query_QueryConsumerChainConsumerValidators_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + forward_Query_QueryConsumerValidators_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) }) @@ -1382,7 +1382,7 @@ var ( pattern_Query_QueryOldestUnconfirmedVsc_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"interchain_security", "ccv", "provider", "oldest_unconfirmed_vsc", "chain_id"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_QueryConsumerChainConsumerValidators_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"interchain_security", "ccv", "provider", "consumer_validators", "chain_id"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_QueryConsumerValidators_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"interchain_security", "ccv", "provider", "consumer_validators", "chain_id"}, "", runtime.AssumeColonVerbOpt(false))) ) var ( @@ -1416,5 +1416,5 @@ var ( forward_Query_QueryOldestUnconfirmedVsc_0 = runtime.ForwardResponseMessage - forward_Query_QueryConsumerChainConsumerValidators_0 = runtime.ForwardResponseMessage + forward_Query_QueryConsumerValidators_0 = runtime.ForwardResponseMessage )