From 3dd750cdf112a442590a22f519215b50a5cbd22b Mon Sep 17 00:00:00 2001 From: Julian Compagni Portis Date: Tue, 12 Sep 2023 22:13:47 -0700 Subject: [PATCH] Add feeTiers to dex params; only allow legal feeTier deposits --- proto/duality/dex/params.proto | 2 +- proto/duality/dex/query.proto | 2 +- x/dex/genesis.go | 4 +- x/dex/genesis_test.go | 2 +- x/dex/keeper/core.go | 4 + x/dex/keeper/core_helper.go | 15 + .../integration_deposit_singlesided_test.go | 12 + x/dex/keeper/params.go | 9 +- x/dex/keeper/params_test.go | 8 + x/dex/module_simulation.go | 2 +- x/dex/types/errors.go | 2 +- x/dex/types/genesis.go | 2 +- x/dex/types/params.go | 46 ++- x/dex/types/params.pb.go | 126 +++++++- x/dex/types/query.pb.go | 295 +++++++++--------- x/incentives/keeper/distribute_test.go | 4 +- x/incentives/keeper/gauge_test.go | 4 +- 17 files changed, 355 insertions(+), 184 deletions(-) diff --git a/proto/duality/dex/params.proto b/proto/duality/dex/params.proto index 1e218591b..02d543f88 100644 --- a/proto/duality/dex/params.proto +++ b/proto/duality/dex/params.proto @@ -8,5 +8,5 @@ option go_package = "github.com/duality-labs/duality/x/dex/types"; // Params defines the parameters for the module. message Params { option (gogoproto.goproto_stringer) = false; - + repeated uint64 fee_tiers = 1; } diff --git a/proto/duality/dex/query.proto b/proto/duality/dex/query.proto index 33c2faaf1..35ada1eb5 100644 --- a/proto/duality/dex/query.proto +++ b/proto/duality/dex/query.proto @@ -130,7 +130,7 @@ message QueryParamsRequest {} message QueryParamsResponse { // params holds all the parameters of this module. - Params params = 1 [(gogoproto.nullable) = true]; + Params params = 1 [(gogoproto.nullable) = false]; } message QueryGetLimitOrderTrancheUserRequest { diff --git a/x/dex/genesis.go b/x/dex/genesis.go index 0b33c4a80..ae95960c6 100644 --- a/x/dex/genesis.go +++ b/x/dex/genesis.go @@ -36,13 +36,13 @@ func InitGenesis(ctx sdk.Context, k keeper.Keeper, genState types.GenesisState) // Set poolMetadata count k.SetPoolCount(ctx, genState.PoolCount) // this line is used by starport scaffolding # genesis/module/init - k.SetParams(ctx, &genState.Params) + k.SetParams(ctx, genState.Params) } // ExportGenesis returns the capability module's exported genesis. func ExportGenesis(ctx sdk.Context, k keeper.Keeper) *types.GenesisState { genesis := types.DefaultGenesis() - genesis.Params = *k.GetParams(ctx) + genesis.Params = k.GetParams(ctx) genesis.LimitOrderTrancheUserList = k.GetAllLimitOrderTrancheUser(ctx) genesis.TickLiquidityList = k.GetAllTickLiquidity(ctx) genesis.InactiveLimitOrderTrancheList = k.GetAllInactiveLimitOrderTranche(ctx) diff --git a/x/dex/genesis_test.go b/x/dex/genesis_test.go index 3083e0129..1df79ebd4 100644 --- a/x/dex/genesis_test.go +++ b/x/dex/genesis_test.go @@ -13,7 +13,7 @@ import ( func TestGenesis(t *testing.T) { genesisState := types.GenesisState{ - Params: *types.DefaultParams(), + Params: types.DefaultParams(), LimitOrderTrancheUserList: []*types.LimitOrderTrancheUser{ { TradePairID: &types.TradePairID{ diff --git a/x/dex/keeper/core.go b/x/dex/keeper/core.go index dc8bee698..861611f3c 100644 --- a/x/dex/keeper/core.go +++ b/x/dex/keeper/core.go @@ -44,6 +44,10 @@ func (k Keeper) DepositCore( amount1 := amounts1[i] tickIndex := tickIndices[i] fee := fees[i] + + if err := k.ValidateFee(ctx, fee); err != nil { + return nil, nil, nil, err + } autoswap := !options[i].DisableAutoswap pool, err := k.GetOrInitPool( diff --git a/x/dex/keeper/core_helper.go b/x/dex/keeper/core_helper.go index 3cfdadfdd..f41f99d8e 100644 --- a/x/dex/keeper/core_helper.go +++ b/x/dex/keeper/core_helper.go @@ -2,7 +2,9 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" + sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/duality-labs/duality/x/dex/types" + "golang.org/x/exp/slices" ) /////////////////////////////////////////////////////////////////////////////// @@ -56,6 +58,19 @@ func (k Keeper) GetCurrLiq(ctx sdk.Context, tradePairID *types.TradePairID) *typ return nil } +func (k Keeper) GetValidFees(ctx sdk.Context) []uint64 { + return k.GetParams(ctx).FeeTiers +} + +func (k Keeper) ValidateFee(ctx sdk.Context, fee uint64) error { + validFees := k.GetValidFees(ctx) + if !slices.Contains(validFees, fee) { + return sdkerrors.Wrapf(types.ErrInvalidFee, "%s", validFees) + } + + return nil +} + /////////////////////////////////////////////////////////////////////////////// // TOKENIZER UTILS // /////////////////////////////////////////////////////////////////////////////// diff --git a/x/dex/keeper/integration_deposit_singlesided_test.go b/x/dex/keeper/integration_deposit_singlesided_test.go index 7236cba89..1da308405 100644 --- a/x/dex/keeper/integration_deposit_singlesided_test.go +++ b/x/dex/keeper/integration_deposit_singlesided_test.go @@ -424,3 +424,15 @@ func (s *MsgServerTestSuite) TestDepositSingleLowTickUnderflowFails() { NewDeposit(0, 50, -352436, 0), ) } + +func (s *MsgServerTestSuite) TestDepositSingleInvalidFeeFails() { + s.fundAliceBalances(0, 50) + + // GIVEN + // Deposit at fee 43 (invalid) + // THEN FAILURE + s.assertAliceDepositFails( + types.ErrInvalidFee, + NewDeposit(0, 50, 10, 43), + ) +} diff --git a/x/dex/keeper/params.go b/x/dex/keeper/params.go index 4ebb4f186..91a958973 100644 --- a/x/dex/keeper/params.go +++ b/x/dex/keeper/params.go @@ -6,11 +6,12 @@ import ( ) // GetParams get all parameters as types.Params -func (k Keeper) GetParams(_ sdk.Context) *types.Params { - return types.NewParams() +func (k Keeper) GetParams(ctx sdk.Context) (params types.Params) { + k.paramstore.GetParamSet(ctx, ¶ms) + return params } // SetParams set the params -func (k Keeper) SetParams(ctx sdk.Context, params *types.Params) { - k.paramstore.SetParamSet(ctx, params) +func (k Keeper) SetParams(ctx sdk.Context, params types.Params) { + k.paramstore.SetParamSet(ctx, ¶ms) } diff --git a/x/dex/keeper/params_test.go b/x/dex/keeper/params_test.go index 63390b65e..17dec69a8 100644 --- a/x/dex/keeper/params_test.go +++ b/x/dex/keeper/params_test.go @@ -16,3 +16,11 @@ func TestGetParams(t *testing.T) { require.EqualValues(t, params, k.GetParams(ctx)) } + +func TestValidateParams(t *testing.T) { + goodFees := []uint64{1, 2, 3, 4, 5, 200} + require.NoError(t, types.Params{FeeTiers: goodFees}.Validate()) + + badFees := []uint64{1, 2, 3, 3} + require.Error(t, types.Params{FeeTiers: badFees}.Validate()) +} diff --git a/x/dex/module_simulation.go b/x/dex/module_simulation.go index fe2506668..c2eafaaaf 100644 --- a/x/dex/module_simulation.go +++ b/x/dex/module_simulation.go @@ -60,7 +60,7 @@ func (AppModule) GenerateGenesisState(simState *module.SimulationState) { accs[i] = acc.Address.String() } dexGenesis := types.GenesisState{ - Params: *types.DefaultParams(), + Params: types.DefaultParams(), // this line is used by starport scaffolding # simapp/module/genesisState } simState.GenState[types.ModuleName] = simState.Cdc.MustMarshalJSON(&dexGenesis) diff --git a/x/dex/types/errors.go b/x/dex/types/errors.go index 5abc1ae9e..bbf80b1b7 100644 --- a/x/dex/types/errors.go +++ b/x/dex/types/errors.go @@ -198,6 +198,6 @@ var ( ErrInvalidFee = sdkerrors.Register( ModuleName, 1148, - "Fee plus/minus center tick cannot exceed tick range [-352437, 352437]", + "Fee must must a legal fee amount:", ) ) diff --git a/x/dex/types/genesis.go b/x/dex/types/genesis.go index c1ebd607b..b3c76b5c2 100644 --- a/x/dex/types/genesis.go +++ b/x/dex/types/genesis.go @@ -15,7 +15,7 @@ func DefaultGenesis() *GenesisState { InactiveLimitOrderTrancheList: []*LimitOrderTranche{}, PoolMetadataList: []PoolMetadata{}, // this line is used by starport scaffolding # genesis/types/default - Params: *DefaultParams(), + Params: DefaultParams(), } } diff --git a/x/dex/types/params.go b/x/dex/types/params.go index 6bf4ede28..fbd7d08d8 100644 --- a/x/dex/types/params.go +++ b/x/dex/types/params.go @@ -1,39 +1,67 @@ package types import ( + fmt "fmt" + paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" "gopkg.in/yaml.v2" ) var _ paramtypes.ParamSet = (*Params)(nil) +var ( + KeyFeeTiers = []byte("FeeTiers") + DefaultFeeTiers []uint64 = []uint64{0, 1, 2, 3, 4, 5, 10, 20, 50, 100, 150, 200} +) + // ParamKeyTable the param key table for launch module func ParamKeyTable() paramtypes.KeyTable { return paramtypes.NewKeyTable().RegisterParamSet(&Params{}) } // NewParams creates a new Params instance -func NewParams() *Params { - return &Params{} +func NewParams(feeTiers []uint64) Params { + return Params{FeeTiers: feeTiers} } // DefaultParams returns a default set of parameters -func DefaultParams() *Params { - return NewParams() +func DefaultParams() Params { + return NewParams(DefaultFeeTiers) } // ParamSetPairs get the params.ParamSet func (p *Params) ParamSetPairs() paramtypes.ParamSetPairs { - return paramtypes.ParamSetPairs{} + return paramtypes.ParamSetPairs{ + paramtypes.NewParamSetPair(KeyFeeTiers, &p.FeeTiers, validateFeeTiers), + } +} + +// String implements the Stringer interface. +func (p Params) String() string { + out, _ := yaml.Marshal(p) + return string(out) } // Validate validates the set of params func (p Params) Validate() error { + if err := validateFeeTiers(p.FeeTiers); err != nil { + return err + } return nil } -// String implements the Stringer interface. -func (p Params) String() string { - out, _ := yaml.Marshal(p) - return string(out) +func validateFeeTiers(v interface{}) error { + feeTiers, ok := v.([]uint64) + if !ok { + return fmt.Errorf("invalid parameter type: %T", v) + } + + feeTierMap := make(map[uint64]bool) + for _, f := range feeTiers { + if _, ok := feeTierMap[f]; ok { + return fmt.Errorf("duplicate fee tier found") + } + feeTierMap[f] = true + } + return nil } diff --git a/x/dex/types/params.pb.go b/x/dex/types/params.pb.go index 8fd3f5b4a..968ad5740 100644 --- a/x/dex/types/params.pb.go +++ b/x/dex/types/params.pb.go @@ -25,6 +25,7 @@ const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package // Params defines the parameters for the module. type Params struct { + FeeTiers []uint64 `protobuf:"varint,1,rep,packed,name=fee_tiers,json=feeTiers,proto3" json:"fee_tiers,omitempty"` } func (m *Params) Reset() { *m = Params{} } @@ -59,6 +60,13 @@ func (m *Params) XXX_DiscardUnknown() { var xxx_messageInfo_Params proto.InternalMessageInfo +func (m *Params) GetFeeTiers() []uint64 { + if m != nil { + return m.FeeTiers + } + return nil +} + func init() { proto.RegisterType((*Params)(nil), "duality.dex.Params") } @@ -66,17 +74,18 @@ func init() { func init() { proto.RegisterFile("duality/dex/params.proto", fileDescriptor_0d9808a9c3c4a621) } var fileDescriptor_0d9808a9c3c4a621 = []byte{ - // 148 bytes of a gzipped FileDescriptorProto + // 174 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x48, 0x29, 0x4d, 0xcc, 0xc9, 0x2c, 0xa9, 0xd4, 0x4f, 0x49, 0xad, 0xd0, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x86, 0xca, 0xe8, 0xa5, 0xa4, 0x56, 0x48, 0x89, 0xa4, 0xe7, - 0xa7, 0xe7, 0x83, 0xc5, 0xf5, 0x41, 0x2c, 0x88, 0x12, 0x25, 0x3e, 0x2e, 0xb6, 0x00, 0xb0, 0x16, - 0x2b, 0x96, 0x19, 0x0b, 0xe4, 0x19, 0x9c, 0x5c, 0x4f, 0x3c, 0x92, 0x63, 0xbc, 0xf0, 0x48, 0x8e, - 0xf1, 0xc1, 0x23, 0x39, 0xc6, 0x09, 0x8f, 0xe5, 0x18, 0x2e, 0x3c, 0x96, 0x63, 0xb8, 0xf1, 0x58, - 0x8e, 0x21, 0x4a, 0x3b, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, 0x1f, 0x6a, - 0xae, 0x6e, 0x4e, 0x62, 0x52, 0x31, 0x8c, 0xa3, 0x5f, 0x01, 0x76, 0x40, 0x49, 0x65, 0x41, 0x6a, - 0x71, 0x12, 0x1b, 0xd8, 0x74, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe9, 0x40, 0xfe, 0x14, - 0x9c, 0x00, 0x00, 0x00, + 0xa7, 0xe7, 0x83, 0xc5, 0xf5, 0x41, 0x2c, 0x88, 0x12, 0x25, 0x6d, 0x2e, 0xb6, 0x00, 0xb0, 0x16, + 0x21, 0x69, 0x2e, 0xce, 0xb4, 0xd4, 0xd4, 0xf8, 0x92, 0xcc, 0xd4, 0xa2, 0x62, 0x09, 0x46, 0x05, + 0x66, 0x0d, 0x96, 0x20, 0x8e, 0xb4, 0xd4, 0xd4, 0x10, 0x10, 0xdf, 0x8a, 0x65, 0xc6, 0x02, 0x79, + 0x06, 0x27, 0xd7, 0x13, 0x8f, 0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x71, + 0xc2, 0x63, 0x39, 0x86, 0x0b, 0x8f, 0xe5, 0x18, 0x6e, 0x3c, 0x96, 0x63, 0x88, 0xd2, 0x4e, 0xcf, + 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x87, 0x5a, 0xaa, 0x9b, 0x93, 0x98, 0x54, + 0x0c, 0xe3, 0xe8, 0x57, 0x80, 0x5d, 0x57, 0x52, 0x59, 0x90, 0x5a, 0x9c, 0xc4, 0x06, 0xb6, 0xda, + 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x16, 0x5d, 0xd1, 0xc7, 0xb9, 0x00, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { @@ -99,6 +108,24 @@ func (m *Params) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if len(m.FeeTiers) > 0 { + dAtA2 := make([]byte, len(m.FeeTiers)*10) + var j1 int + for _, num := range m.FeeTiers { + for num >= 1<<7 { + dAtA2[j1] = uint8(uint64(num)&0x7f | 0x80) + num >>= 7 + j1++ + } + dAtA2[j1] = uint8(num) + j1++ + } + i -= j1 + copy(dAtA[i:], dAtA2[:j1]) + i = encodeVarintParams(dAtA, i, uint64(j1)) + i-- + dAtA[i] = 0xa + } return len(dAtA) - i, nil } @@ -119,6 +146,13 @@ func (m *Params) Size() (n int) { } var l int _ = l + if len(m.FeeTiers) > 0 { + l = 0 + for _, e := range m.FeeTiers { + l += sovParams(uint64(e)) + } + n += 1 + sovParams(uint64(l)) + l + } return n } @@ -157,6 +191,82 @@ func (m *Params) Unmarshal(dAtA []byte) error { return fmt.Errorf("proto: Params: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { + case 1: + if wireType == 0 { + var v uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowParams + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.FeeTiers = append(m.FeeTiers, v) + } else if wireType == 2 { + var packedLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowParams + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + packedLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if packedLen < 0 { + return ErrInvalidLengthParams + } + postIndex := iNdEx + packedLen + if postIndex < 0 { + return ErrInvalidLengthParams + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + var elementCount int + var count int + for _, integer := range dAtA[iNdEx:postIndex] { + if integer < 128 { + count++ + } + } + elementCount = count + if elementCount != 0 && len(m.FeeTiers) == 0 { + m.FeeTiers = make([]uint64, 0, elementCount) + } + for iNdEx < postIndex { + var v uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowParams + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.FeeTiers = append(m.FeeTiers, v) + } + } else { + return fmt.Errorf("proto: wrong wireType = %d for field FeeTiers", wireType) + } default: iNdEx = preIndex skippy, err := skipParams(dAtA[iNdEx:]) diff --git a/x/dex/types/query.pb.go b/x/dex/types/query.pb.go index 5e060277d..ada8e417b 100644 --- a/x/dex/types/query.pb.go +++ b/x/dex/types/query.pb.go @@ -76,7 +76,7 @@ var xxx_messageInfo_QueryParamsRequest proto.InternalMessageInfo // QueryParamsResponse is response type for the Query/Params RPC method. type QueryParamsResponse struct { // params holds all the parameters of this module. - Params *Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params,omitempty"` + Params Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params"` } func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} } @@ -112,11 +112,11 @@ func (m *QueryParamsResponse) XXX_DiscardUnknown() { var xxx_messageInfo_QueryParamsResponse proto.InternalMessageInfo -func (m *QueryParamsResponse) GetParams() *Params { +func (m *QueryParamsResponse) GetParams() Params { if m != nil { return m.Params } - return nil + return Params{} } type QueryGetLimitOrderTrancheUserRequest struct { @@ -1922,137 +1922,137 @@ func init() { proto.RegisterFile("duality/dex/query.proto", fileDescriptor_46641 var fileDescriptor_4664128fddcf2b7a = []byte{ // 2085 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0xcd, 0x6f, 0x1c, 0x49, - 0x15, 0x77, 0x79, 0x1c, 0xc7, 0xa9, 0xec, 0xe6, 0xa3, 0xe2, 0x6c, 0x26, 0x13, 0xef, 0xb4, 0x53, - 0x24, 0xb1, 0xf3, 0xe1, 0xee, 0xd8, 0x4b, 0x56, 0x62, 0x59, 0x01, 0xf6, 0x7a, 0x93, 0x1d, 0x48, - 0x88, 0xe9, 0x75, 0x0e, 0x2c, 0x12, 0x43, 0x7b, 0xa6, 0xe2, 0xb4, 0xdc, 0xd3, 0xdd, 0xe9, 0xee, - 0x49, 0x3c, 0xb2, 0x2c, 0xc4, 0x5e, 0x90, 0x10, 0x88, 0x05, 0x56, 0x02, 0x21, 0x38, 0xac, 0x10, - 0xb7, 0x48, 0xac, 0x38, 0xc0, 0x0d, 0x71, 0xe0, 0x90, 0x63, 0x24, 0x2e, 0x2b, 0x0e, 0x03, 0x4a, - 0x90, 0x90, 0x72, 0xf4, 0x5f, 0x80, 0xaa, 0xfa, 0xf5, 0x4c, 0xf5, 0x4c, 0xf5, 0x7c, 0xc4, 0xb3, - 0x9b, 0x93, 0xbb, 0xab, 0x5f, 0xd5, 0xfb, 0xbd, 0x5f, 0xfd, 0xaa, 0x5e, 0xd5, 0x1b, 0xe3, 0x53, - 0xd5, 0xba, 0xe5, 0xd8, 0x51, 0xc3, 0xa8, 0xb2, 0x6d, 0xe3, 0x7e, 0x9d, 0x05, 0x0d, 0xdd, 0x0f, - 0xbc, 0xc8, 0x23, 0x87, 0xe1, 0x83, 0x5e, 0x65, 0xdb, 0x85, 0xe9, 0x4d, 0x6f, 0xd3, 0x13, 0xed, - 0x06, 0x7f, 0x8a, 0x4d, 0x0a, 0x33, 0x9b, 0x9e, 0xb7, 0xe9, 0x30, 0xc3, 0xf2, 0x6d, 0xc3, 0x72, - 0x5d, 0x2f, 0xb2, 0x22, 0xdb, 0x73, 0x43, 0xf8, 0x7a, 0xa9, 0xe2, 0x85, 0x35, 0x2f, 0x34, 0x36, - 0xac, 0x90, 0xc5, 0x23, 0x1b, 0x0f, 0x16, 0x37, 0x58, 0x64, 0x2d, 0x1a, 0xbe, 0xb5, 0x69, 0xbb, - 0xc2, 0x18, 0x6c, 0xf3, 0x32, 0x0a, 0xdf, 0x0a, 0xac, 0x5a, 0x6b, 0x14, 0xf9, 0x8b, 0x63, 0xd7, - 0xec, 0xa8, 0xec, 0x05, 0x55, 0x16, 0x94, 0xa3, 0xc0, 0x72, 0x2b, 0xf7, 0x58, 0xb9, 0x1e, 0xb2, - 0x00, 0x6c, 0xcf, 0xf7, 0xb1, 0x05, 0xb3, 0x59, 0xd9, 0xac, 0xca, 0x7c, 0x2f, 0xb4, 0xa3, 0x72, - 0xc0, 0x2a, 0x5e, 0x50, 0x55, 0x59, 0x44, 0x76, 0x65, 0xab, 0xec, 0xd8, 0xf7, 0xeb, 0x76, 0x95, - 0xd3, 0x11, 0x5b, 0x68, 0x29, 0xc0, 0x9e, 0xe7, 0x94, 0x03, 0x16, 0xb2, 0xe0, 0x01, 0x4b, 0x70, - 0x4f, 0xa7, 0x86, 0xd8, 0x86, 0xd6, 0xa2, 0xcc, 0x49, 0xc2, 0x46, 0xc5, 0xb3, 0x13, 0x1e, 0x34, - 0x60, 0x54, 0xbc, 0x6d, 0xd4, 0xef, 0x1a, 0x91, 0x5d, 0x63, 0x61, 0x64, 0xd5, 0x7c, 0x30, 0x78, - 0xad, 0xd3, 0x6f, 0x26, 0x9e, 0x1a, 0x8b, 0xac, 0xaa, 0x15, 0x59, 0xb1, 0x01, 0x9d, 0xc6, 0xe4, - 0x3b, 0x7c, 0x0e, 0xd6, 0x04, 0xb9, 0x26, 0xbb, 0x5f, 0x67, 0x61, 0x44, 0xdf, 0xc3, 0x27, 0x52, - 0xad, 0xa1, 0xef, 0xb9, 0x21, 0x23, 0x8b, 0x78, 0x32, 0x9e, 0x84, 0x3c, 0x9a, 0x45, 0xf3, 0x87, - 0x97, 0x4e, 0xe8, 0x92, 0x18, 0xf4, 0xd8, 0x78, 0x65, 0xe2, 0x71, 0x53, 0x43, 0x26, 0x18, 0xd2, - 0x1f, 0xe0, 0x73, 0x62, 0xa4, 0x1b, 0x2c, 0xba, 0xc9, 0x99, 0xbf, 0xcd, 0x89, 0x5f, 0x8f, 0x79, - 0xbf, 0x13, 0xb2, 0x00, 0x3c, 0x92, 0x3c, 0x3e, 0x68, 0x55, 0xab, 0x01, 0x0b, 0xe3, 0xb1, 0x0f, - 0x99, 0xc9, 0x2b, 0x29, 0x62, 0x0c, 0xf3, 0xf4, 0x2d, 0xd6, 0xc8, 0x8f, 0x8b, 0x8f, 0x52, 0x0b, - 0xfd, 0x31, 0xc2, 0xe7, 0xfb, 0xb8, 0x00, 0xf8, 0xdf, 0xc7, 0x27, 0x95, 0x06, 0x10, 0x0d, 0x4d, - 0x45, 0xa3, 0xb4, 0x84, 0xe0, 0xd4, 0xc3, 0x50, 0x17, 0x62, 0x5d, 0x76, 0x9c, 0x9e, 0xb1, 0x5e, - 0xc7, 0xb8, 0xad, 0x74, 0x70, 0x7e, 0x41, 0x8f, 0x25, 0xa0, 0x73, 0x09, 0xe8, 0xf1, 0x82, 0x03, - 0x21, 0xe8, 0x6b, 0xd6, 0x26, 0x83, 0xbe, 0xa6, 0xd4, 0x93, 0x3e, 0x49, 0x22, 0xcf, 0x76, 0xd8, - 0x3f, 0xf2, 0xdc, 0x08, 0x22, 0x27, 0x37, 0x52, 0x11, 0x8d, 0x8b, 0x88, 0xe6, 0xfa, 0x46, 0x14, - 0x83, 0x4b, 0x85, 0xf4, 0x4b, 0x84, 0x67, 0x33, 0x27, 0x33, 0xe1, 0xef, 0x35, 0x2e, 0x43, 0x3b, - 0x28, 0xad, 0x82, 0x54, 0xe0, 0x8d, 0xcc, 0xe0, 0x43, 0x7c, 0x51, 0x96, 0xdc, 0x2a, 0xdb, 0x16, - 0x20, 0x72, 0x66, 0xbb, 0x81, 0x2b, 0x2c, 0xf2, 0xb6, 0x98, 0x5b, 0x72, 0xf3, 0xb9, 0x58, 0x61, - 0xf0, 0xda, 0xa1, 0xb0, 0x89, 0x2e, 0x85, 0x3d, 0xc4, 0x67, 0x7b, 0x60, 0x02, 0x8a, 0x4d, 0x7c, - 0xbc, 0xeb, 0x23, 0xcc, 0x6d, 0xb1, 0x37, 0xbd, 0x40, 0x6d, 0x77, 0x77, 0xfa, 0xbb, 0x84, 0x0d, - 0xd5, 0x04, 0xf7, 0x63, 0x43, 0x8a, 0x77, 0x3c, 0x1d, 0x6f, 0x5a, 0x7f, 0xb9, 0x17, 0xd6, 0xdf, - 0xdf, 0x11, 0x10, 0xa3, 0x86, 0xd7, 0x9b, 0x98, 0xdc, 0x3e, 0x88, 0x19, 0x9d, 0xde, 0x7e, 0x88, - 0xcf, 0x24, 0x11, 0x70, 0x21, 0xaf, 0xc6, 0xbb, 0x7e, 0xd8, 0x7f, 0x57, 0xba, 0xae, 0x40, 0xf0, - 0x22, 0x1c, 0xfe, 0x11, 0xe1, 0x19, 0x35, 0x02, 0xa0, 0xef, 0x6d, 0x3c, 0x95, 0xb4, 0x01, 0x6b, - 0x85, 0x14, 0x6b, 0xf0, 0xd1, 0x14, 0x79, 0x0a, 0x18, 0x6b, 0xf5, 0x18, 0x1d, 0x51, 0x1f, 0x22, - 0x5c, 0x94, 0x71, 0xb6, 0xe7, 0xe4, 0x0b, 0x24, 0xeb, 0x2f, 0x08, 0x6b, 0x99, 0x20, 0x80, 0xaf, - 0x6f, 0xe2, 0xc3, 0x4e, 0xbb, 0x79, 0xe8, 0x0d, 0x4e, 0xee, 0x3c, 0x3a, 0xf6, 0x7e, 0x23, 0xcd, - 0xf2, 0xba, 0x5d, 0xd9, 0xba, 0x99, 0x1c, 0x1b, 0x5e, 0xfe, 0x22, 0xfe, 0x14, 0xe1, 0xd7, 0x33, - 0xa0, 0x01, 0xa3, 0xd7, 0xf1, 0xab, 0x91, 0xfc, 0x41, 0x29, 0xc3, 0x54, 0x57, 0xe0, 0x32, 0xdd, - 0x6d, 0x74, 0x6c, 0xfe, 0x16, 0xe1, 0xf9, 0x64, 0x43, 0x2e, 0xb9, 0x56, 0x25, 0xb2, 0x1f, 0xb0, - 0x11, 0x6e, 0x8f, 0xa9, 0x34, 0x92, 0xeb, 0x4c, 0x23, 0xfd, 0x92, 0xc5, 0xcf, 0x11, 0xbe, 0x38, - 0x00, 0x38, 0xe0, 0x76, 0x03, 0x9f, 0xb6, 0xb3, 0x8c, 0x86, 0xca, 0x1e, 0xd9, 0xc3, 0xd0, 0x00, - 0xd8, 0x5a, 0x76, 0x9c, 0xbe, 0x6c, 0x8d, 0xea, 0x68, 0xf2, 0x59, 0xc2, 0x42, 0x6f, 0xa7, 0x83, - 0xb1, 0x90, 0x1b, 0x01, 0x0b, 0xa3, 0x53, 0xdf, 0xaf, 0x51, 0x3b, 0x67, 0xac, 0x79, 0x9e, 0x63, - 0xc2, 0x01, 0xff, 0xe5, 0x2f, 0xe5, 0x47, 0xd2, 0x2e, 0x93, 0x46, 0x06, 0x3c, 0xbf, 0x83, 0x5f, - 0xf1, 0xa5, 0x76, 0xa0, 0xf6, 0x74, 0xfa, 0x14, 0x2f, 0x19, 0x00, 0xab, 0xa9, 0x4e, 0xa3, 0xcf, - 0xbd, 0x37, 0x58, 0x34, 0x1a, 0x1e, 0x7b, 0x2f, 0xdc, 0x63, 0x38, 0x77, 0x97, 0x31, 0xb1, 0x62, - 0x27, 0x4c, 0xfe, 0x48, 0x2b, 0x40, 0x57, 0x17, 0x80, 0x4c, 0xba, 0xd0, 0xd0, 0x74, 0xd1, 0x4f, - 0x72, 0x70, 0x86, 0x7b, 0x37, 0x8c, 0xec, 0x9a, 0x15, 0xb1, 0x5b, 0x75, 0x27, 0xb2, 0xdf, 0xf3, - 0xfc, 0xf7, 0x1f, 0x5a, 0xbe, 0x94, 0x3a, 0x2b, 0x01, 0xb3, 0x22, 0x2f, 0x48, 0x52, 0x27, 0xbc, - 0x92, 0x02, 0x9e, 0x0a, 0x58, 0x85, 0xd9, 0x0f, 0x58, 0x00, 0xe1, 0xb6, 0xde, 0xc9, 0x12, 0x9e, - 0x0c, 0xbc, 0x7a, 0xc4, 0xc2, 0x7c, 0x4e, 0xb1, 0x23, 0x27, 0x7e, 0x4c, 0x6e, 0x62, 0x82, 0x25, - 0xb1, 0xf1, 0x94, 0x55, 0xf3, 0xea, 0x6e, 0x54, 0x72, 0xe3, 0xcd, 0x6b, 0xe5, 0xd6, 0xe3, 0xa6, - 0x36, 0xf6, 0xaf, 0xa6, 0x76, 0x61, 0xd3, 0x8e, 0xee, 0xd5, 0x37, 0xf4, 0x8a, 0x57, 0x33, 0xe0, - 0x3a, 0x1a, 0xff, 0x59, 0x08, 0xab, 0x5b, 0x46, 0xd4, 0xf0, 0x59, 0xa8, 0x97, 0xdc, 0xe8, 0x79, - 0x53, 0x6b, 0x8d, 0xb0, 0xd7, 0xd4, 0x8e, 0x36, 0xac, 0x9a, 0xf3, 0x16, 0x4d, 0x5a, 0xa8, 0xd9, - 0xfa, 0x48, 0x7e, 0x84, 0xf0, 0x11, 0xb6, 0x6d, 0xc7, 0x67, 0xe6, 0xb5, 0xc0, 0xae, 0xb0, 0xfc, - 0x01, 0xe1, 0xf1, 0xbb, 0x43, 0x78, 0x5c, 0x65, 0x95, 0xe7, 0x4d, 0xad, 0x63, 0x9c, 0xbd, 0xa6, - 0x76, 0x32, 0xf6, 0x9b, 0x6e, 0xa7, 0x66, 0x87, 0x21, 0x39, 0x87, 0x5f, 0xf5, 0xed, 0xca, 0xd6, - 0x0a, 0x5f, 0x2a, 0x9c, 0x80, 0xfc, 0xe4, 0x2c, 0x9a, 0x9f, 0x32, 0xd3, 0x8d, 0xf4, 0xe3, 0xe4, - 0x20, 0xab, 0x9e, 0x23, 0x90, 0x83, 0x87, 0x0f, 0xf2, 0x2b, 0xf9, 0xed, 0x7a, 0xd4, 0x52, 0x82, - 0xac, 0xfa, 0x44, 0xef, 0xef, 0x78, 0xb6, 0xbb, 0xf2, 0x16, 0x84, 0x38, 0x37, 0x40, 0x88, 0xbc, - 0xc3, 0xf3, 0xa6, 0x96, 0x0c, 0x6e, 0x26, 0x0f, 0xf4, 0xd1, 0x04, 0xfe, 0x52, 0x0a, 0xd6, 0x9a, - 0x63, 0x55, 0xa4, 0xad, 0x6d, 0x7f, 0xea, 0xc9, 0xbe, 0x0f, 0x15, 0xf0, 0x94, 0x78, 0xe4, 0x91, - 0xc6, 0x09, 0xae, 0xf5, 0x4e, 0x2e, 0xe1, 0x63, 0xad, 0x25, 0x55, 0x72, 0xd7, 0x3d, 0x6e, 0x73, - 0x40, 0x2c, 0xb5, 0xae, 0xf6, 0x94, 0xd6, 0x26, 0x3f, 0x5f, 0xad, 0x7d, 0x05, 0x1f, 0x12, 0x25, - 0x9d, 0xf5, 0x86, 0xcf, 0xf2, 0x07, 0x67, 0xd1, 0xfc, 0x91, 0xa5, 0x33, 0x59, 0x19, 0xa3, 0xe1, - 0x33, 0xb3, 0x6d, 0x4d, 0x6e, 0x72, 0x95, 0xfa, 0x76, 0x20, 0x36, 0xa5, 0x75, 0xbb, 0xc6, 0xf2, - 0x53, 0x62, 0x76, 0x0b, 0x7a, 0x5c, 0x74, 0xd1, 0x93, 0xa2, 0x8b, 0xbe, 0x9e, 0x14, 0x5d, 0x56, - 0xa6, 0xf8, 0x42, 0xff, 0xe8, 0xdf, 0x1a, 0x32, 0x3b, 0xfa, 0x92, 0x06, 0x7e, 0xa5, 0x66, 0x6d, - 0x2f, 0x0b, 0x5c, 0x9c, 0x9b, 0x43, 0x22, 0xee, 0x3b, 0xdc, 0x7e, 0xa8, 0xb8, 0x53, 0xa3, 0xec, - 0x35, 0xb5, 0x13, 0x71, 0xec, 0x72, 0x2b, 0x35, 0x53, 0x46, 0xb4, 0x99, 0x83, 0xfa, 0x43, 0xa6, - 0x5c, 0x40, 0xc8, 0xbf, 0x40, 0xf8, 0x70, 0xe4, 0x45, 0x96, 0x53, 0x72, 0xb9, 0xf6, 0xfa, 0xab, - 0x79, 0x7d, 0x78, 0x35, 0xcb, 0x0e, 0xf6, 0x9a, 0x1a, 0x89, 0xe1, 0x4b, 0x8d, 0xd4, 0x94, 0x4d, - 0xc8, 0xcf, 0x10, 0xc6, 0xe1, 0x43, 0xcb, 0x07, 0x48, 0xe3, 0xfd, 0x20, 0x99, 0xc3, 0x43, 0x92, - 0xc6, 0xdf, 0x6b, 0x6a, 0xc7, 0x63, 0x44, 0xed, 0x36, 0x6a, 0x4a, 0x06, 0x82, 0x23, 0xfe, 0x7a, - 0xbb, 0x1e, 0x09, 0x40, 0xb9, 0xcf, 0x83, 0x23, 0xc9, 0x41, 0x9b, 0x23, 0xa9, 0x91, 0x9a, 0xb2, - 0x09, 0xfd, 0x00, 0x1f, 0x8b, 0xab, 0x72, 0x22, 0xbf, 0xec, 0xa7, 0x16, 0x02, 0xb9, 0x30, 0xd7, - 0xce, 0x85, 0x3a, 0x9e, 0x6e, 0x8d, 0xbd, 0xd2, 0x28, 0xad, 0xca, 0xe3, 0x7b, 0x9e, 0x03, 0xe3, - 0x4f, 0x98, 0xf0, 0x46, 0xbf, 0x81, 0x8f, 0x4b, 0x58, 0x40, 0x58, 0x97, 0xf1, 0x04, 0xff, 0x0c, - 0x82, 0x3a, 0xde, 0x95, 0x28, 0x21, 0x41, 0x0a, 0x23, 0xba, 0x90, 0x4e, 0xff, 0xb7, 0xa0, 0x2e, - 0x99, 0x38, 0x3e, 0x82, 0xc7, 0xed, 0x2a, 0x38, 0x1d, 0xb7, 0xab, 0x9d, 0xc9, 0xba, 0x6d, 0xde, - 0x4e, 0xd6, 0x72, 0x7b, 0x66, 0xb2, 0x4e, 0x0c, 0x04, 0x96, 0x31, 0x33, 0xd5, 0x89, 0xb2, 0xf4, - 0xd1, 0xae, 0x13, 0xd3, 0xa8, 0x4e, 0xc7, 0x9d, 0x07, 0xb5, 0x01, 0x82, 0xc9, 0x0d, 0x1d, 0xcc, - 0xc8, 0x0e, 0x6a, 0x4b, 0x7f, 0x3d, 0x85, 0x0f, 0x08, 0xb8, 0xe4, 0x1e, 0x9e, 0x8c, 0xab, 0xbc, - 0x44, 0x4b, 0x61, 0xe9, 0x2e, 0x21, 0x17, 0x66, 0xb3, 0x0d, 0x62, 0x17, 0xf4, 0xcc, 0x87, 0xff, - 0xfc, 0xef, 0xaf, 0xc6, 0x4f, 0x92, 0x13, 0x46, 0x77, 0x95, 0x9f, 0xfc, 0x03, 0x65, 0x94, 0x2c, - 0xc9, 0x62, 0xf7, 0xc0, 0x7d, 0x8a, 0xcb, 0x85, 0xa5, 0x61, 0xba, 0x00, 0xba, 0x55, 0x81, 0xee, - 0x6b, 0xe4, 0x6d, 0x63, 0x90, 0x5f, 0x1a, 0x8c, 0x1d, 0xa8, 0x75, 0xec, 0x1a, 0x3b, 0xed, 0xcb, - 0xe0, 0x2e, 0xf9, 0x14, 0xe1, 0xbc, 0xd2, 0xcf, 0xb2, 0xe3, 0xa8, 0x22, 0xe9, 0x53, 0x3a, 0x56, - 0x45, 0xd2, 0xaf, 0xf8, 0x4b, 0x17, 0x44, 0x24, 0x73, 0xe4, 0xfc, 0x40, 0x91, 0x70, 0xc8, 0x67, - 0xb3, 0x20, 0xaf, 0x34, 0x96, 0xa1, 0xa4, 0x73, 0x59, 0x09, 0x44, 0x5d, 0x19, 0x2a, 0x5c, 0x19, - 0xcc, 0x18, 0xf0, 0x5e, 0x15, 0x78, 0x2f, 0x91, 0xf9, 0x14, 0x5e, 0xc1, 0xb2, 0x04, 0x3a, 0x6c, - 0x53, 0x4e, 0x1e, 0x23, 0x45, 0x8d, 0x91, 0x2c, 0x0c, 0x36, 0xeb, 0x09, 0x48, 0x7d, 0x50, 0x73, - 0x80, 0xb9, 0x2e, 0x60, 0x7e, 0x9b, 0xdc, 0xec, 0x47, 0xab, 0xb1, 0x13, 0xef, 0xc9, 0x5c, 0x1a, - 0xf1, 0x09, 0x8b, 0x3f, 0x25, 0x7b, 0x71, 0x87, 0x60, 0xfe, 0x8c, 0xf0, 0x74, 0x97, 0x4f, 0x2e, - 0x96, 0x85, 0xc1, 0x66, 0xbe, 0x47, 0x34, 0xbd, 0xaa, 0xb4, 0xf4, 0xab, 0x22, 0x9a, 0x6b, 0xe4, - 0x8d, 0x17, 0x88, 0x86, 0x7c, 0x8c, 0xf0, 0x51, 0xb9, 0x78, 0xc9, 0xf1, 0xce, 0x67, 0xce, 0x79, - 0x47, 0x91, 0xb5, 0x70, 0x71, 0x00, 0x4b, 0x40, 0x79, 0x45, 0xa0, 0xbc, 0x40, 0xce, 0x75, 0x4b, - 0x03, 0x7e, 0xb0, 0x93, 0x65, 0xf1, 0x09, 0xc2, 0xc7, 0x52, 0x75, 0x29, 0x8e, 0x4b, 0xed, 0x4d, - 0x55, 0x94, 0x2b, 0x5c, 0x1a, 0xc4, 0x14, 0x90, 0xbd, 0x29, 0x90, 0x5d, 0x25, 0xba, 0x91, 0xfd, - 0x1b, 0xa1, 0x8a, 0xba, 0xff, 0x21, 0x7c, 0x3a, 0xb3, 0x40, 0x42, 0xae, 0x29, 0x35, 0xd9, 0xaf, - 0x8a, 0x53, 0x78, 0x73, 0xd8, 0x6e, 0x10, 0xc4, 0xf7, 0x44, 0x10, 0x77, 0xc8, 0xfb, 0xa9, 0x20, - 0xee, 0xda, 0x8e, 0xc3, 0xaa, 0xe5, 0xfd, 0x2a, 0xfb, 0x6f, 0x08, 0xcf, 0x64, 0x42, 0xe0, 0x33, - 0x73, 0x4d, 0x49, 0xf7, 0x8b, 0x04, 0x3b, 0x48, 0xd1, 0x89, 0x1a, 0x22, 0xd8, 0x8b, 0x64, 0x6e, - 0xc0, 0x60, 0xc9, 0xef, 0x11, 0x3e, 0x2a, 0x5f, 0xf7, 0xb3, 0x55, 0xae, 0x28, 0x67, 0x64, 0xa8, - 0x5c, 0x55, 0x77, 0xa0, 0xd7, 0x04, 0x32, 0x83, 0x2c, 0x18, 0x99, 0xbf, 0x26, 0xab, 0xa4, 0xf4, - 0x08, 0xc5, 0xa7, 0x86, 0x56, 0xa5, 0x66, 0x5e, 0x29, 0x83, 0x01, 0xc1, 0x65, 0x14, 0x45, 0xe8, - 0x0d, 0x01, 0x6e, 0x99, 0x7c, 0x7d, 0x28, 0x70, 0x69, 0x59, 0xdc, 0x65, 0x6c, 0x97, 0xfc, 0x01, - 0xe1, 0x69, 0xd5, 0x7d, 0x5b, 0xb5, 0xd3, 0xf5, 0xa8, 0x9d, 0xa8, 0x76, 0xba, 0x5e, 0xd7, 0xf8, - 0x8c, 0x3d, 0x84, 0x41, 0x97, 0x72, 0x8d, 0xf7, 0x29, 0xdf, 0xf3, 0xfc, 0x32, 0x3f, 0x7a, 0x93, - 0x3f, 0x21, 0x7c, 0x2a, 0xe3, 0x3e, 0x45, 0xae, 0x66, 0x7b, 0x56, 0xdf, 0xd4, 0x0b, 0x8b, 0x43, - 0xf4, 0xe8, 0x29, 0xd3, 0x16, 0x5c, 0x9f, 0x77, 0x93, 0xe5, 0x4a, 0x76, 0xf0, 0x04, 0x9f, 0x38, - 0xf2, 0xba, 0xe2, 0x00, 0xd6, 0xbe, 0x38, 0x14, 0x8a, 0x59, 0x9f, 0xc1, 0xef, 0x97, 0x85, 0x5f, - 0x9d, 0x5c, 0xe9, 0x9a, 0x67, 0x79, 0x7a, 0x3b, 0x27, 0xf5, 0x3e, 0x9e, 0x4a, 0x6e, 0x10, 0xe4, - 0xac, 0xda, 0x83, 0x74, 0xbb, 0xe8, 0x0b, 0x82, 0x0a, 0x10, 0x33, 0xa4, 0xa0, 0x02, 0x21, 0x2e, - 0x22, 0xbb, 0xe4, 0xa7, 0x28, 0x7d, 0x58, 0xee, 0x21, 0xfb, 0x8e, 0xf3, 0x7c, 0x0f, 0xd9, 0x77, - 0x9e, 0xc8, 0xe9, 0x9c, 0x40, 0x72, 0x96, 0x68, 0x46, 0xe6, 0x7f, 0x54, 0x18, 0x3b, 0x76, 0x75, - 0x97, 0xfc, 0x04, 0x76, 0x89, 0x64, 0x84, 0xde, 0xbb, 0xc4, 0x00, 0x88, 0x32, 0xee, 0x08, 0x3d, - 0xb8, 0x69, 0x21, 0x5a, 0x79, 0xf7, 0xf1, 0xd3, 0x22, 0x7a, 0xf2, 0xb4, 0x88, 0xfe, 0xf3, 0xb4, - 0x88, 0x3e, 0x7a, 0x56, 0x1c, 0x7b, 0xf2, 0xac, 0x38, 0xf6, 0xd9, 0xb3, 0xe2, 0xd8, 0x07, 0x97, - 0xa5, 0x6b, 0x2a, 0xf4, 0x5f, 0x70, 0xac, 0x8d, 0xb0, 0x35, 0xd8, 0x76, 0x9c, 0xc0, 0xf8, 0x7d, - 0x75, 0x63, 0x52, 0x94, 0x40, 0xde, 0xf8, 0x7f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xbc, 0x04, 0x2e, - 0xfc, 0x15, 0x24, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0xcf, 0x6f, 0x1c, 0x49, + 0x15, 0x4e, 0x79, 0x1c, 0xc7, 0xa9, 0xec, 0xe6, 0x47, 0xc5, 0xd9, 0x4c, 0x26, 0xde, 0x19, 0xa7, + 0x48, 0x62, 0xe7, 0x87, 0xbb, 0x63, 0x2f, 0x59, 0x89, 0x65, 0x05, 0xd8, 0xeb, 0x4d, 0x76, 0x20, + 0x21, 0xa6, 0x77, 0x72, 0x60, 0x91, 0x18, 0xda, 0x33, 0x15, 0xa7, 0xe5, 0x9e, 0xee, 0x4e, 0x77, + 0x4f, 0xe2, 0x91, 0x65, 0x21, 0xf6, 0x82, 0x84, 0x40, 0x2c, 0xb0, 0x12, 0x08, 0xc1, 0x61, 0x85, + 0xb8, 0x45, 0x62, 0xc5, 0x01, 0x6e, 0x88, 0x03, 0x87, 0x1c, 0x23, 0x71, 0x59, 0x71, 0x18, 0x50, + 0x82, 0x84, 0x94, 0xa3, 0xff, 0x02, 0x54, 0xd5, 0xaf, 0x67, 0xaa, 0x67, 0xaa, 0x67, 0x7a, 0x92, + 0xd9, 0xcd, 0xc9, 0xdd, 0xd5, 0xaf, 0xea, 0x7d, 0xef, 0xab, 0xaf, 0xea, 0x55, 0xbd, 0x31, 0x3e, + 0x59, 0x6f, 0x9a, 0xb6, 0x15, 0xb6, 0xf4, 0x3a, 0xdb, 0xd6, 0xef, 0x35, 0x99, 0xdf, 0xd2, 0x3c, + 0xdf, 0x0d, 0x5d, 0x72, 0x08, 0x3e, 0x68, 0x75, 0xb6, 0x5d, 0x98, 0xd9, 0x74, 0x37, 0x5d, 0xd1, + 0xae, 0xf3, 0xa7, 0xc8, 0xa4, 0x30, 0xbb, 0xe9, 0xba, 0x9b, 0x36, 0xd3, 0x4d, 0xcf, 0xd2, 0x4d, + 0xc7, 0x71, 0x43, 0x33, 0xb4, 0x5c, 0x27, 0x80, 0xaf, 0x17, 0x6b, 0x6e, 0xd0, 0x70, 0x03, 0x7d, + 0xc3, 0x0c, 0x58, 0x34, 0xb2, 0x7e, 0x7f, 0x69, 0x83, 0x85, 0xe6, 0x92, 0xee, 0x99, 0x9b, 0x96, + 0x23, 0x8c, 0xc1, 0x36, 0x2f, 0xa3, 0xf0, 0x4c, 0xdf, 0x6c, 0x74, 0x46, 0x91, 0xbf, 0xd8, 0x56, + 0xc3, 0x0a, 0xab, 0xae, 0x5f, 0x67, 0x7e, 0x35, 0xf4, 0x4d, 0xa7, 0x76, 0x97, 0x55, 0x9b, 0x01, + 0xf3, 0xc1, 0xf6, 0xdc, 0x10, 0x5b, 0x30, 0x9b, 0x93, 0xcd, 0xea, 0xcc, 0x73, 0x03, 0x2b, 0xac, + 0xfa, 0xac, 0xe6, 0xfa, 0x75, 0x95, 0x45, 0x68, 0xd5, 0xb6, 0xaa, 0xb6, 0x75, 0xaf, 0x69, 0xd5, + 0x39, 0x1d, 0x91, 0x45, 0x29, 0x01, 0xd8, 0x75, 0xed, 0xaa, 0xcf, 0x02, 0xe6, 0xdf, 0x67, 0x31, + 0xee, 0x99, 0xc4, 0x10, 0xdb, 0xd0, 0x5a, 0x94, 0x39, 0x89, 0xd9, 0xa8, 0xb9, 0x56, 0xcc, 0x43, + 0x09, 0x18, 0x15, 0x6f, 0x1b, 0xcd, 0x3b, 0x7a, 0x68, 0x35, 0x58, 0x10, 0x9a, 0x0d, 0x0f, 0x0c, + 0x5e, 0xeb, 0xf5, 0x9b, 0x8a, 0xa7, 0xc1, 0x42, 0xb3, 0x6e, 0x86, 0x66, 0x64, 0x40, 0x67, 0x30, + 0xf9, 0x0e, 0x9f, 0x83, 0x75, 0x41, 0xae, 0xc1, 0xee, 0x35, 0x59, 0x10, 0xd2, 0xf7, 0xf0, 0xf1, + 0x44, 0x6b, 0xe0, 0xb9, 0x4e, 0xc0, 0xc8, 0x12, 0x9e, 0x8a, 0x26, 0x21, 0x8f, 0xe6, 0xd0, 0xc2, + 0xa1, 0xe5, 0xe3, 0x9a, 0x24, 0x06, 0x2d, 0x32, 0x5e, 0x9d, 0x7c, 0xd4, 0x2e, 0xed, 0x33, 0xc0, + 0x90, 0xfe, 0x00, 0x9f, 0x15, 0x23, 0x5d, 0x67, 0xe1, 0x0d, 0xce, 0xfc, 0x2d, 0x4e, 0x7c, 0x25, + 0xe2, 0xfd, 0x76, 0xc0, 0x7c, 0xf0, 0x48, 0xf2, 0xf8, 0x80, 0x59, 0xaf, 0xfb, 0x2c, 0x88, 0xc6, + 0x3e, 0x68, 0xc4, 0xaf, 0xa4, 0x88, 0x31, 0xcc, 0xd3, 0xb7, 0x58, 0x2b, 0x3f, 0x21, 0x3e, 0x4a, + 0x2d, 0xf4, 0xc7, 0x08, 0x9f, 0x1b, 0xe2, 0x02, 0xe0, 0x7f, 0x1f, 0x9f, 0x50, 0x1a, 0x40, 0x34, + 0x34, 0x11, 0x8d, 0xd2, 0x52, 0x04, 0x87, 0x0c, 0xf5, 0x30, 0xd4, 0x81, 0x58, 0x57, 0x6c, 0x7b, + 0x60, 0xac, 0xd7, 0x30, 0xee, 0x2a, 0x1d, 0x9c, 0x9f, 0xd7, 0x22, 0x09, 0x68, 0x5c, 0x02, 0x5a, + 0xb4, 0xe0, 0x40, 0x08, 0xda, 0xba, 0xb9, 0xc9, 0xa0, 0xaf, 0x21, 0xf5, 0xa4, 0x8f, 0xe3, 0xc8, + 0xd3, 0x1d, 0x0e, 0x8f, 0x3c, 0x37, 0x86, 0xc8, 0xc9, 0xf5, 0x44, 0x44, 0x13, 0x22, 0xa2, 0xf9, + 0xa1, 0x11, 0x45, 0xe0, 0x12, 0x21, 0xfd, 0x12, 0xe1, 0xb9, 0xd4, 0xc9, 0x8c, 0xf9, 0x7b, 0x8d, + 0xcb, 0xd0, 0xf2, 0xcb, 0x6b, 0x20, 0x15, 0x78, 0x23, 0xb3, 0xf8, 0x20, 0x5f, 0x94, 0x65, 0xa7, + 0xce, 0xb6, 0x05, 0x88, 0x9c, 0xd1, 0x6d, 0xe0, 0x0a, 0x0b, 0xdd, 0x2d, 0xe6, 0x94, 0x9d, 0x7c, + 0x2e, 0x52, 0x18, 0xbc, 0xf6, 0x28, 0x6c, 0xb2, 0x4f, 0x61, 0x0f, 0xf0, 0x99, 0x01, 0x98, 0x80, + 0x62, 0x03, 0x1f, 0xeb, 0xfb, 0x08, 0x73, 0x5b, 0x1c, 0x4c, 0x2f, 0x50, 0xdb, 0xdf, 0x9d, 0xfe, + 0x2e, 0x66, 0x43, 0x35, 0xc1, 0xc3, 0xd8, 0x90, 0xe2, 0x9d, 0x48, 0xc6, 0x9b, 0xd4, 0x5f, 0xee, + 0xb9, 0xf5, 0xf7, 0x77, 0x04, 0xc4, 0xa8, 0xe1, 0x0d, 0x26, 0x26, 0xf7, 0x02, 0xc4, 0x8c, 0x4f, + 0x6f, 0x3f, 0xc4, 0xa7, 0xe3, 0x08, 0xb8, 0x90, 0xd7, 0xa2, 0x5d, 0x3f, 0x18, 0xbe, 0x2b, 0x5d, + 0x53, 0x20, 0x78, 0x1e, 0x0e, 0xff, 0x88, 0xf0, 0xac, 0x1a, 0x01, 0xd0, 0xf7, 0x36, 0x9e, 0x8e, + 0xdb, 0x80, 0xb5, 0x42, 0x82, 0x35, 0xf8, 0x68, 0x88, 0x3c, 0x05, 0x8c, 0x75, 0x7a, 0x8c, 0x8f, + 0xa8, 0x0f, 0x11, 0x2e, 0xca, 0x38, 0xbb, 0x73, 0xf2, 0x05, 0x92, 0xf5, 0x17, 0x84, 0x4b, 0xa9, + 0x20, 0x80, 0xaf, 0x6f, 0xe2, 0x43, 0x76, 0xb7, 0x79, 0xe4, 0x0d, 0x4e, 0xee, 0x3c, 0x3e, 0xf6, + 0x7e, 0x23, 0xcd, 0x72, 0xc5, 0xaa, 0x6d, 0xdd, 0x88, 0x8f, 0x0d, 0x2f, 0x7f, 0x11, 0x7f, 0x8a, + 0xf0, 0xeb, 0x29, 0xd0, 0x80, 0xd1, 0x6b, 0xf8, 0xd5, 0x50, 0xfe, 0xa0, 0x94, 0x61, 0xa2, 0x2b, + 0x70, 0x99, 0xec, 0x36, 0x3e, 0x36, 0x7f, 0x8b, 0xf0, 0x42, 0xbc, 0x21, 0x97, 0x1d, 0xb3, 0x16, + 0x5a, 0xf7, 0xd9, 0x18, 0xb7, 0xc7, 0x44, 0x1a, 0xc9, 0xf5, 0xa6, 0x91, 0x61, 0xc9, 0xe2, 0xe7, + 0x08, 0x5f, 0xc8, 0x00, 0x0e, 0xb8, 0xdd, 0xc0, 0xa7, 0xac, 0x34, 0xa3, 0x91, 0xb2, 0x47, 0xfa, + 0x30, 0xd4, 0x07, 0xb6, 0x56, 0x6c, 0x7b, 0x28, 0x5b, 0xe3, 0x3a, 0x9a, 0x7c, 0x16, 0xb3, 0x30, + 0xd8, 0x69, 0x36, 0x16, 0x72, 0x63, 0x60, 0x61, 0x7c, 0xea, 0xfb, 0x35, 0xea, 0xe6, 0x8c, 0x75, + 0xd7, 0xb5, 0x0d, 0x38, 0xe0, 0xbf, 0xfc, 0xa5, 0xfc, 0x50, 0xda, 0x65, 0x92, 0xc8, 0x80, 0xe7, + 0x77, 0xf0, 0x2b, 0x9e, 0xd4, 0x0e, 0xd4, 0x9e, 0x4a, 0x9e, 0xe2, 0x25, 0x03, 0x60, 0x35, 0xd1, + 0x69, 0xfc, 0xb9, 0xf7, 0x3a, 0x0b, 0xc7, 0xc3, 0xe3, 0xe0, 0x85, 0x7b, 0x14, 0xe7, 0xee, 0x30, + 0x26, 0x56, 0xec, 0xa4, 0xc1, 0x1f, 0x69, 0x0d, 0xe8, 0xea, 0x03, 0x90, 0x4a, 0x17, 0x1a, 0x99, + 0x2e, 0xfa, 0x49, 0x0e, 0xce, 0x70, 0xef, 0x06, 0xa1, 0xd5, 0x30, 0x43, 0x76, 0xb3, 0x69, 0x87, + 0xd6, 0x7b, 0xae, 0xf7, 0xfe, 0x03, 0xd3, 0x93, 0x52, 0x67, 0xcd, 0x67, 0x66, 0xe8, 0xfa, 0x71, + 0xea, 0x84, 0x57, 0x52, 0xc0, 0xd3, 0x3e, 0xab, 0x31, 0xeb, 0x3e, 0xf3, 0x21, 0xdc, 0xce, 0x3b, + 0x59, 0xc6, 0x53, 0xbe, 0xdb, 0x0c, 0x59, 0x90, 0xcf, 0x29, 0x76, 0xe4, 0xd8, 0x8f, 0xc1, 0x4d, + 0x0c, 0xb0, 0x24, 0x16, 0x9e, 0x36, 0x1b, 0x6e, 0xd3, 0x09, 0xcb, 0x4e, 0xb4, 0x79, 0xad, 0xde, + 0xe4, 0xf7, 0xb5, 0x7f, 0xb5, 0x4b, 0xe7, 0x37, 0xad, 0xf0, 0x6e, 0x73, 0x43, 0xab, 0xb9, 0x0d, + 0x1d, 0xae, 0xa3, 0xd1, 0x9f, 0xc5, 0xa0, 0xbe, 0xa5, 0x87, 0x2d, 0x8f, 0x05, 0x5a, 0xd9, 0x09, + 0x9f, 0xb5, 0x4b, 0x9d, 0x11, 0xf6, 0xda, 0xa5, 0x23, 0x2d, 0xb3, 0x61, 0xbf, 0x45, 0xe3, 0x16, + 0x6a, 0x74, 0x3e, 0x92, 0x1f, 0x21, 0x7c, 0x98, 0x6d, 0x5b, 0xd1, 0x99, 0x79, 0xdd, 0xb7, 0x6a, + 0x2c, 0xbf, 0x5f, 0x78, 0xfc, 0xee, 0x08, 0x1e, 0xd7, 0x58, 0xed, 0x59, 0xbb, 0xd4, 0x33, 0xce, + 0x5e, 0xbb, 0x74, 0x22, 0xf2, 0x9b, 0x6c, 0xa7, 0x46, 0x8f, 0x21, 0x39, 0x8b, 0x5f, 0xf5, 0xac, + 0xda, 0xd6, 0x2a, 0x5f, 0x2a, 0x9c, 0x80, 0xfc, 0xd4, 0x1c, 0x5a, 0x98, 0x36, 0x92, 0x8d, 0xf4, + 0xe3, 0xf8, 0x20, 0xab, 0x9e, 0x23, 0x90, 0x83, 0x8b, 0x0f, 0xf0, 0x2b, 0xf9, 0xad, 0x66, 0xd8, + 0x51, 0x82, 0xac, 0xfa, 0x58, 0xef, 0xef, 0xb8, 0x96, 0xb3, 0xfa, 0x16, 0x84, 0x38, 0x9f, 0x21, + 0x44, 0xde, 0xe1, 0x59, 0xbb, 0x14, 0x0f, 0x6e, 0xc4, 0x0f, 0xf4, 0xe1, 0x24, 0xfe, 0x52, 0x02, + 0xd6, 0xba, 0x6d, 0xd6, 0xa4, 0xad, 0xed, 0xc5, 0xd4, 0x93, 0x7e, 0x1f, 0x2a, 0xe0, 0x69, 0xf1, + 0xc8, 0x23, 0x8d, 0x12, 0x5c, 0xe7, 0x9d, 0x5c, 0xc4, 0x47, 0x3b, 0x4b, 0xaa, 0xec, 0x54, 0x5c, + 0x6e, 0xb3, 0x5f, 0x2c, 0xb5, 0xbe, 0xf6, 0x84, 0xd6, 0xa6, 0x3e, 0x5f, 0xad, 0x7d, 0x05, 0x1f, + 0x14, 0x25, 0x9d, 0x4a, 0xcb, 0x63, 0xf9, 0x03, 0x73, 0x68, 0xe1, 0xf0, 0xf2, 0xe9, 0xb4, 0x8c, + 0xd1, 0xf2, 0x98, 0xd1, 0xb5, 0x26, 0x37, 0xb8, 0x4a, 0x3d, 0xcb, 0x17, 0x9b, 0x52, 0xc5, 0x6a, + 0xb0, 0xfc, 0xb4, 0x98, 0xdd, 0x82, 0x16, 0x15, 0x5d, 0xb4, 0xb8, 0xe8, 0xa2, 0x55, 0xe2, 0xa2, + 0xcb, 0xea, 0x34, 0x5f, 0xe8, 0x1f, 0xfd, 0xbb, 0x84, 0x8c, 0x9e, 0xbe, 0xa4, 0x85, 0x5f, 0x69, + 0x98, 0xdb, 0x2b, 0x02, 0x17, 0xe7, 0xe6, 0xa0, 0x88, 0xfb, 0x36, 0xb7, 0x1f, 0x29, 0xee, 0xc4, + 0x28, 0x7b, 0xed, 0xd2, 0xf1, 0x28, 0x76, 0xb9, 0x95, 0x1a, 0x09, 0x23, 0xda, 0xce, 0x41, 0xfd, + 0x21, 0x55, 0x2e, 0x20, 0xe4, 0x5f, 0x20, 0x7c, 0x28, 0x74, 0x43, 0xd3, 0x2e, 0x3b, 0x5c, 0x7b, + 0xc3, 0xd5, 0x5c, 0x19, 0x5d, 0xcd, 0xb2, 0x83, 0xbd, 0x76, 0x89, 0x44, 0xf0, 0xa5, 0x46, 0x6a, + 0xc8, 0x26, 0xe4, 0x67, 0x08, 0xe3, 0xe0, 0x81, 0xe9, 0x01, 0xa4, 0x89, 0x61, 0x90, 0x8c, 0xd1, + 0x21, 0x49, 0xe3, 0xef, 0xb5, 0x4b, 0xc7, 0x22, 0x44, 0xdd, 0x36, 0x6a, 0x48, 0x06, 0x82, 0x23, + 0xfe, 0x7a, 0xab, 0x19, 0x0a, 0x40, 0xb9, 0xcf, 0x83, 0x23, 0xc9, 0x41, 0x97, 0x23, 0xa9, 0x91, + 0x1a, 0xb2, 0x09, 0xfd, 0x00, 0x1f, 0x8d, 0xaa, 0x72, 0x22, 0xbf, 0xbc, 0x48, 0x2d, 0x04, 0x72, + 0x61, 0xae, 0x9b, 0x0b, 0x35, 0x3c, 0xd3, 0x19, 0x7b, 0xb5, 0x55, 0x5e, 0x93, 0xc7, 0x77, 0x5d, + 0x1b, 0xc6, 0x9f, 0x34, 0xe0, 0x8d, 0x7e, 0x03, 0x1f, 0x93, 0xb0, 0x80, 0xb0, 0x2e, 0xe1, 0x49, + 0xfe, 0x19, 0x04, 0x75, 0xac, 0x2f, 0x51, 0x42, 0x82, 0x14, 0x46, 0x74, 0x31, 0x99, 0xfe, 0x6f, + 0x42, 0x5d, 0x32, 0x76, 0x7c, 0x18, 0x4f, 0x58, 0x75, 0x70, 0x3a, 0x61, 0xd5, 0x7b, 0x93, 0x75, + 0xd7, 0xbc, 0x9b, 0xac, 0xe5, 0xf6, 0xd4, 0x64, 0x1d, 0x1b, 0x40, 0x9d, 0x32, 0xd1, 0x89, 0xb2, + 0xe4, 0xd1, 0xae, 0x17, 0xd3, 0xb8, 0x4e, 0xc7, 0xbd, 0x07, 0xb5, 0x0c, 0xc1, 0xe4, 0x46, 0x0e, + 0x66, 0x6c, 0x07, 0xb5, 0xe5, 0xbf, 0x9e, 0xc4, 0xfb, 0x05, 0x5c, 0x72, 0x17, 0x4f, 0x45, 0x55, + 0x5e, 0x52, 0x4a, 0x60, 0xe9, 0x2f, 0x21, 0x17, 0xe6, 0xd2, 0x0d, 0x22, 0x17, 0xf4, 0xf4, 0x87, + 0xff, 0xfc, 0xef, 0xaf, 0x26, 0x4e, 0x90, 0xe3, 0x7a, 0x7f, 0x95, 0x9f, 0xfc, 0x03, 0xa5, 0x94, + 0x2c, 0xc9, 0x52, 0xff, 0xc0, 0x43, 0x8a, 0xcb, 0x85, 0xe5, 0x51, 0xba, 0x00, 0xba, 0x35, 0x81, + 0xee, 0x6b, 0xe4, 0x6d, 0x3d, 0xcb, 0x2f, 0x0d, 0xfa, 0x0e, 0xd4, 0x3a, 0x76, 0xf5, 0x9d, 0xee, + 0x65, 0x70, 0x97, 0x7c, 0x8a, 0x70, 0x5e, 0xe9, 0x67, 0xc5, 0xb6, 0x55, 0x91, 0x0c, 0x29, 0x1d, + 0xab, 0x22, 0x19, 0x56, 0xfc, 0xa5, 0x8b, 0x22, 0x92, 0x79, 0x72, 0x2e, 0x53, 0x24, 0x1c, 0xf2, + 0x99, 0x34, 0xc8, 0xab, 0xad, 0x15, 0x28, 0xe9, 0x5c, 0x52, 0x02, 0x51, 0x57, 0x86, 0x0a, 0x97, + 0xb3, 0x19, 0x03, 0xde, 0x2b, 0x02, 0xef, 0x45, 0xb2, 0x90, 0xc0, 0x2b, 0x58, 0x96, 0x40, 0x07, + 0x5d, 0xca, 0xc9, 0x23, 0xa4, 0xa8, 0x31, 0x92, 0xc5, 0x6c, 0xb3, 0x1e, 0x83, 0xd4, 0xb2, 0x9a, + 0x03, 0xcc, 0x8a, 0x80, 0xf9, 0x6d, 0x72, 0x63, 0x18, 0xad, 0xfa, 0x4e, 0xb4, 0x27, 0x73, 0x69, + 0x44, 0x27, 0x2c, 0xfe, 0x14, 0xef, 0xc5, 0x3d, 0x82, 0xf9, 0x33, 0xc2, 0x33, 0x7d, 0x3e, 0xb9, + 0x58, 0x16, 0xb3, 0xcd, 0xfc, 0x80, 0x68, 0x06, 0x55, 0x69, 0xe9, 0x57, 0x45, 0x34, 0x57, 0xc9, + 0x1b, 0xcf, 0x11, 0x0d, 0xf9, 0x18, 0xe1, 0x23, 0x72, 0xf1, 0x92, 0xe3, 0x5d, 0x48, 0x9d, 0xf3, + 0x9e, 0x22, 0x6b, 0xe1, 0x42, 0x06, 0x4b, 0x40, 0x79, 0x59, 0xa0, 0x3c, 0x4f, 0xce, 0xf6, 0x4b, + 0x03, 0x7e, 0xb0, 0x93, 0x65, 0xf1, 0x09, 0xc2, 0x47, 0x13, 0x75, 0x29, 0x8e, 0x4b, 0xed, 0x4d, + 0x55, 0x94, 0x2b, 0x5c, 0xcc, 0x62, 0x0a, 0xc8, 0xde, 0x14, 0xc8, 0xae, 0x10, 0x4d, 0x4f, 0xff, + 0x8d, 0x50, 0x45, 0xdd, 0xff, 0x10, 0x3e, 0x95, 0x5a, 0x20, 0x21, 0x57, 0x95, 0x9a, 0x1c, 0x56, + 0xc5, 0x29, 0xbc, 0x39, 0x6a, 0x37, 0x08, 0xe2, 0x7b, 0x22, 0x88, 0xdb, 0xe4, 0xfd, 0x44, 0x10, + 0x77, 0x2c, 0xdb, 0x66, 0xf5, 0xea, 0x8b, 0x2a, 0xfb, 0x6f, 0x08, 0xcf, 0xa6, 0x42, 0xe0, 0x33, + 0x73, 0x55, 0x49, 0xf7, 0xf3, 0x04, 0x9b, 0xa5, 0xe8, 0x44, 0x75, 0x11, 0xec, 0x05, 0x32, 0x9f, + 0x31, 0x58, 0xf2, 0x7b, 0x84, 0x8f, 0xc8, 0xd7, 0xfd, 0x74, 0x95, 0x2b, 0xca, 0x19, 0x29, 0x2a, + 0x57, 0xd5, 0x1d, 0xe8, 0x55, 0x81, 0x4c, 0x27, 0x8b, 0x7a, 0xea, 0xaf, 0xc9, 0x2a, 0x29, 0x3d, + 0x44, 0xd1, 0xa9, 0xa1, 0x53, 0xa9, 0x59, 0x50, 0xca, 0x20, 0x23, 0xb8, 0x94, 0xa2, 0x08, 0xbd, + 0x2e, 0xc0, 0xad, 0x90, 0xaf, 0x8f, 0x04, 0x2e, 0x29, 0x8b, 0x3b, 0x8c, 0xed, 0x92, 0x3f, 0x20, + 0x3c, 0xa3, 0xba, 0x6f, 0xab, 0x76, 0xba, 0x01, 0xb5, 0x13, 0xd5, 0x4e, 0x37, 0xe8, 0x1a, 0x9f, + 0xb2, 0x87, 0x30, 0xe8, 0x52, 0x6d, 0xf0, 0x3e, 0xd5, 0xbb, 0xae, 0x57, 0xe5, 0x47, 0x6f, 0xf2, + 0x27, 0x84, 0x4f, 0xa6, 0xdc, 0xa7, 0xc8, 0x95, 0x74, 0xcf, 0xea, 0x9b, 0x7a, 0x61, 0x69, 0x84, + 0x1e, 0x03, 0x65, 0xda, 0x81, 0xeb, 0xf1, 0x6e, 0xb2, 0x5c, 0xc9, 0x0e, 0x9e, 0xe4, 0x13, 0x47, + 0x5e, 0x57, 0x1c, 0xc0, 0xba, 0x17, 0x87, 0x42, 0x31, 0xed, 0x33, 0xf8, 0xfd, 0xb2, 0xf0, 0xab, + 0x91, 0xcb, 0x7d, 0xf3, 0x2c, 0x4f, 0x6f, 0xef, 0xa4, 0xde, 0xc3, 0xd3, 0xf1, 0x0d, 0x82, 0x9c, + 0x51, 0x7b, 0x90, 0x6e, 0x17, 0x43, 0x41, 0x50, 0x01, 0x62, 0x96, 0x14, 0x54, 0x20, 0xc4, 0x45, + 0x64, 0x97, 0xfc, 0x14, 0x25, 0x0f, 0xcb, 0x03, 0x64, 0xdf, 0x73, 0x9e, 0x1f, 0x20, 0xfb, 0xde, + 0x13, 0x39, 0x9d, 0x17, 0x48, 0xce, 0x90, 0x92, 0x9e, 0xfa, 0x1f, 0x15, 0xfa, 0x8e, 0x55, 0xdf, + 0x25, 0x3f, 0x81, 0x5d, 0x22, 0x1e, 0x61, 0xf0, 0x2e, 0x91, 0x01, 0x51, 0xca, 0x1d, 0x61, 0x00, + 0x37, 0x1d, 0x44, 0xab, 0xef, 0x3e, 0x7a, 0x52, 0x44, 0x8f, 0x9f, 0x14, 0xd1, 0x7f, 0x9e, 0x14, + 0xd1, 0x47, 0x4f, 0x8b, 0xfb, 0x1e, 0x3f, 0x2d, 0xee, 0xfb, 0xec, 0x69, 0x71, 0xdf, 0x07, 0x97, + 0xa4, 0x6b, 0x2a, 0xf4, 0x5f, 0xb4, 0xcd, 0x8d, 0xa0, 0x33, 0xd8, 0x76, 0x94, 0xc0, 0xf8, 0x7d, + 0x75, 0x63, 0x4a, 0x94, 0x40, 0xde, 0xf8, 0x7f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe2, 0x2e, 0xc4, + 0xcb, 0x15, 0x24, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -2826,18 +2826,16 @@ func (m *QueryParamsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - if m.Params != nil { - { - size, err := m.Params.MarshalToSizedBuffer(dAtA[:i]) - if err != nil { - return 0, err - } - i -= size - i = encodeVarintQuery(dAtA, i, uint64(size)) + { + size, err := m.Params.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err } - i-- - dAtA[i] = 0xa + i -= size + i = encodeVarintQuery(dAtA, i, uint64(size)) } + i-- + dAtA[i] = 0xa return len(dAtA) - i, nil } @@ -4341,10 +4339,8 @@ func (m *QueryParamsResponse) Size() (n int) { } var l int _ = l - if m.Params != nil { - l = m.Params.Size() - n += 1 + l + sovQuery(uint64(l)) - } + l = m.Params.Size() + n += 1 + l + sovQuery(uint64(l)) return n } @@ -5054,9 +5050,6 @@ func (m *QueryParamsResponse) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if m.Params == nil { - m.Params = &Params{} - } if err := m.Params.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } diff --git a/x/incentives/keeper/distribute_test.go b/x/incentives/keeper/distribute_test.go index 2f0ca3ae2..7451ef1f9 100644 --- a/x/incentives/keeper/distribute_test.go +++ b/x/incentives/keeper/distribute_test.go @@ -298,7 +298,7 @@ func (suite *KeeperTestSuite) TestDistribute() { token0: sdk.NewInt64Coin("TokenA", 10), token1: sdk.NewInt64Coin("TokenB", 10), tick: 999, - fee: 40, + fee: 50, }, }, stakeDistEpochOffset: -2, @@ -310,7 +310,7 @@ func (suite *KeeperTestSuite) TestDistribute() { token0: sdk.NewInt64Coin("TokenA", 10), token1: sdk.NewInt64Coin("TokenB", 10), tick: 999, - fee: 40, + fee: 50, }, }, stakeDistEpochOffset: -1, diff --git a/x/incentives/keeper/gauge_test.go b/x/incentives/keeper/gauge_test.go index 7cedec9d4..b676cb2d3 100644 --- a/x/incentives/keeper/gauge_test.go +++ b/x/incentives/keeper/gauge_test.go @@ -209,7 +209,7 @@ func (suite *KeeperTestSuite) TestGaugeCreateFails() { token0: sdk.NewInt64Coin("TokenA", 10), token1: sdk.NewInt64Coin("TokenB", 10), tick: 999, - fee: 40, + fee: 50, }, }, stakeDistEpochOffset: -2, @@ -221,7 +221,7 @@ func (suite *KeeperTestSuite) TestGaugeCreateFails() { token0: sdk.NewInt64Coin("TokenA", 10), token1: sdk.NewInt64Coin("TokenB", 10), tick: 999, - fee: 40, + fee: 50, }, }, stakeDistEpochOffset: -1,