From fda5cce2faf69b4c235ae95f26a801fc1b528538 Mon Sep 17 00:00:00 2001 From: daeMOn Date: Tue, 4 May 2021 17:41:32 +0200 Subject: [PATCH] feat: stargate custom mint module (#86) * feat: custom minting with fixed rate inflation * fix: set default minter inflation to 3% * fix: tests from mint default settings changes * fix: mint simulation tests --- docs/core/proto-docs.md | 38 +- proto/cosmos/mint/v1beta1/mint.proto | 22 +- x/bank/client/cli/cli_test.go | 4 +- x/bank/client/rest/grpc_query_test.go | 8 +- x/bank/client/rest/query_test.go | 4 +- x/distribution/client/cli/cli_test.go | 24 +- x/distribution/client/rest/grpc_query_test.go | 8 +- x/evidence/types/evidence.pb.go | 2 +- x/gov/types/gov.pb.go | 4 +- .../07-tendermint/types/tendermint.pb.go | 4 +- x/mint/abci.go | 2 +- x/mint/client/cli/cli_test.go | 17 +- x/mint/client/rest/grpc_query_test.go | 9 +- x/mint/legacy/v039/types.go | 9 +- x/mint/legacy/v040/migrate.go | 9 +- x/mint/simulation/genesis.go | 50 +- x/mint/simulation/genesis_test.go | 8 - x/mint/simulation/params.go | 24 +- x/mint/simulation/params_test.go | 7 +- x/mint/types/mint.pb.go | 208 +-- x/mint/types/minter.go | 29 +- x/mint/types/minter_test.go | 35 +- x/mint/types/params.go | 106 +- x/slashing/types/slashing.pb.go | 19 +- x/staking/types/staking.pb.go | 1203 ++++++++--------- x/staking/types/tx.pb.go | 2 +- x/upgrade/types/upgrade.pb.go | 2 +- 27 files changed, 739 insertions(+), 1118 deletions(-) diff --git a/docs/core/proto-docs.md b/docs/core/proto-docs.md index b9052daf46..0a8d35957e 100644 --- a/docs/core/proto-docs.md +++ b/docs/core/proto-docs.md @@ -4437,10 +4437,7 @@ Params holds parameters for the mint module. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | `mint_denom` | [string](#string) | | type of coin to mint | -| `inflation_rate_change` | [string](#string) | | maximum annual change in inflation rate | -| `inflation_max` | [string](#string) | | maximum inflation rate | -| `inflation_min` | [string](#string) | | minimum inflation rate | -| `goal_bonded` | [string](#string) | | goal of percent bonded atoms | +| `inflation_rate` | [string](#string) | | maximum annual change in inflation rate | | `blocks_per_year` | [uint64](#uint64) | | expected blocks per year | @@ -6527,6 +6524,7 @@ RPC method. | ----- | ---- | ----- | ----------- | | `events` | [string](#string) | repeated | events is the list of transaction event type. | | `pagination` | [cosmos.base.query.v1beta1.PageRequest](#cosmos.base.query.v1beta1.PageRequest) | | pagination defines an pagination for the request. | +| `order_by` | [OrderBy](#cosmos.tx.v1beta1.OrderBy) | | | @@ -6599,6 +6597,19 @@ BroadcastMode specifies the broadcast mode for the TxService.Broadcast RPC metho | BROADCAST_MODE_ASYNC | 3 | BROADCAST_MODE_ASYNC defines a tx broadcasting mode where the client returns immediately. | + + + +### OrderBy +OrderBy defines the sorting order + +| Name | Number | Description | +| ---- | ------ | ----------- | +| ORDER_BY_UNSPECIFIED | 0 | ORDER_BY_UNSPECIFIED specifies an unknown sorting order. OrderBy defaults to ASC in this case. | +| ORDER_BY_ASC | 1 | ORDER_BY_ASC defines ascending order | +| ORDER_BY_DESC | 2 | ORDER_BY_DESC defines descending order | + + @@ -9491,11 +9502,6 @@ GenesisState defines the ibc module's genesis state. -| Field | Type | Label | Description | -| ----- | ---- | ----- | ----------- | -| `events` | [string](#string) | repeated | events is the list of transaction event type. | -| `pagination` | [cosmos.base.query.v1beta1.PageRequest](#cosmos.base.query.v1beta1.PageRequest) | | pagination defines an pagination for the request. | -| `order_by` | [OrderBy](#cosmos.tx.v1beta1.OrderBy) | | | @@ -9571,20 +9577,6 @@ state and if the client is frozen. - - -### OrderBy -OrderBy defines the sorting order - -| Name | Number | Description | -| ---- | ------ | ----------- | -| ORDER_BY_UNSPECIFIED | 0 | ORDER_BY_UNSPECIFIED specifies an unknown sorting order. OrderBy defaults to ASC in this case. | -| ORDER_BY_ASC | 1 | ORDER_BY_ASC defines ascending order | -| ORDER_BY_DESC | 2 | ORDER_BY_DESC defines descending order | - - - - diff --git a/proto/cosmos/mint/v1beta1/mint.proto b/proto/cosmos/mint/v1beta1/mint.proto index f94d4ae2e8..a119b5f516 100644 --- a/proto/cosmos/mint/v1beta1/mint.proto +++ b/proto/cosmos/mint/v1beta1/mint.proto @@ -25,26 +25,8 @@ message Params { // type of coin to mint string mint_denom = 1; // maximum annual change in inflation rate - string inflation_rate_change = 2 [ - (gogoproto.moretags) = "yaml:\"inflation_rate_change\"", - (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", - (gogoproto.nullable) = false - ]; - // maximum inflation rate - string inflation_max = 3 [ - (gogoproto.moretags) = "yaml:\"inflation_max\"", - (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", - (gogoproto.nullable) = false - ]; - // minimum inflation rate - string inflation_min = 4 [ - (gogoproto.moretags) = "yaml:\"inflation_min\"", - (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", - (gogoproto.nullable) = false - ]; - // goal of percent bonded atoms - string goal_bonded = 5 [ - (gogoproto.moretags) = "yaml:\"goal_bonded\"", + string inflation_rate = 2 [ + (gogoproto.moretags) = "yaml:\"inflation_rate\"", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", (gogoproto.nullable) = false ]; diff --git a/x/bank/client/cli/cli_test.go b/x/bank/client/cli/cli_test.go index 952390fe77..48d4a536a0 100644 --- a/x/bank/client/cli/cli_test.go +++ b/x/bank/client/cli/cli_test.go @@ -182,7 +182,7 @@ func (s *IntegrationTestSuite) TestGetCmdQueryTotalSupply() { expected: &types.QueryTotalSupplyResponse{ Supply: sdk.NewCoins( sdk.NewCoin(fmt.Sprintf("%stoken", val.Moniker), s.cfg.AccountTokens), - sdk.NewCoin(s.cfg.BondDenom, s.cfg.StakingTokens.Add(sdk.NewInt(10))), + sdk.NewCoin(s.cfg.BondDenom, s.cfg.StakingTokens.Add(sdk.NewInt(2))), )}, }, { @@ -193,7 +193,7 @@ func (s *IntegrationTestSuite) TestGetCmdQueryTotalSupply() { fmt.Sprintf("--%s=json", tmcli.OutputFlag), }, respType: &sdk.Coin{}, - expected: &sdk.Coin{s.cfg.BondDenom, s.cfg.StakingTokens.Add(sdk.NewInt(10))}, + expected: &sdk.Coin{s.cfg.BondDenom, s.cfg.StakingTokens.Add(sdk.NewInt(2))}, }, { name: "total supply of a bogus denom", diff --git a/x/bank/client/rest/grpc_query_test.go b/x/bank/client/rest/grpc_query_test.go index d6290a1fef..83ee93c263 100644 --- a/x/bank/client/rest/grpc_query_test.go +++ b/x/bank/client/rest/grpc_query_test.go @@ -36,7 +36,7 @@ func (s *IntegrationTestSuite) TestTotalSupplyGRPCHandler() { &types.QueryTotalSupplyResponse{ Supply: sdk.NewCoins( sdk.NewCoin(fmt.Sprintf("%stoken", val.Moniker), s.cfg.AccountTokens), - sdk.NewCoin(s.cfg.BondDenom, s.cfg.StakingTokens.Add(sdk.NewInt(10))), + sdk.NewCoin(s.cfg.BondDenom, s.cfg.StakingTokens.Add(sdk.NewInt(2))), ), }, }, @@ -48,7 +48,7 @@ func (s *IntegrationTestSuite) TestTotalSupplyGRPCHandler() { }, &types.QuerySupplyOfResponse{}, &types.QuerySupplyOfResponse{ - Amount: sdk.NewCoin(s.cfg.BondDenom, s.cfg.StakingTokens.Add(sdk.NewInt(10))), + Amount: sdk.NewCoin(s.cfg.BondDenom, s.cfg.StakingTokens.Add(sdk.NewInt(2))), }, }, { @@ -59,7 +59,7 @@ func (s *IntegrationTestSuite) TestTotalSupplyGRPCHandler() { }, &types.QuerySupplyOfResponse{}, &types.QuerySupplyOfResponse{ - Amount: sdk.NewCoin(s.cfg.BondDenom, s.cfg.StakingTokens.Add(sdk.NewInt(20))), + Amount: sdk.NewCoin(s.cfg.BondDenom, s.cfg.StakingTokens.Add(sdk.NewInt(4))), }, }, { @@ -70,7 +70,7 @@ func (s *IntegrationTestSuite) TestTotalSupplyGRPCHandler() { }, &types.QuerySupplyOfResponse{}, &types.QuerySupplyOfResponse{ - Amount: sdk.NewCoin(s.cfg.BondDenom, s.cfg.StakingTokens.Add(sdk.NewInt(10))), + Amount: sdk.NewCoin(s.cfg.BondDenom, s.cfg.StakingTokens.Add(sdk.NewInt(2))), }, }, { diff --git a/x/bank/client/rest/query_test.go b/x/bank/client/rest/query_test.go index 11d731b6dc..1c949e80c5 100644 --- a/x/bank/client/rest/query_test.go +++ b/x/bank/client/rest/query_test.go @@ -156,14 +156,14 @@ func (s *IntegrationTestSuite) TestTotalSupplyHandlerFn() { &sdk.Coins{}, sdk.NewCoins( sdk.NewCoin(fmt.Sprintf("%stoken", val.Moniker), s.cfg.AccountTokens), - sdk.NewCoin(s.cfg.BondDenom, s.cfg.StakingTokens.Add(sdk.NewInt(10))), + sdk.NewCoin(s.cfg.BondDenom, s.cfg.StakingTokens.Add(sdk.NewInt(2))), ), }, { "total supply of a specific denom", fmt.Sprintf("%s/bank/total/%s?height=1", baseURL, s.cfg.BondDenom), &sdk.Coin{}, - sdk.NewCoin(s.cfg.BondDenom, s.cfg.StakingTokens.Add(sdk.NewInt(10))), + sdk.NewCoin(s.cfg.BondDenom, s.cfg.StakingTokens.Add(sdk.NewInt(2))), }, { "total supply of a bogus denom", diff --git a/x/distribution/client/cli/cli_test.go b/x/distribution/client/cli/cli_test.go index 40331db7b9..8a827fe696 100644 --- a/x/distribution/client/cli/cli_test.go +++ b/x/distribution/client/cli/cli_test.go @@ -47,8 +47,6 @@ func (s *IntegrationTestSuite) SetupTest() { inflation := sdk.MustNewDecFromStr("1.0") mintData.Minter.Inflation = inflation - mintData.Params.InflationMin = inflation - mintData.Params.InflationMax = inflation mintDataBz, err := cfg.Codec.MarshalJSON(&mintData) s.Require().NoError(err) @@ -134,7 +132,7 @@ func (s *IntegrationTestSuite) TestGetCmdQueryValidatorOutstandingRewards() { fmt.Sprintf("--%s=json", tmcli.OutputFlag), }, false, - `{"rewards":[{"denom":"stake","amount":"232.260000000000000000"}]}`, + `{"rewards":[{"denom":"stake","amount":"5.880000000000000000"}]}`, }, { "text output", @@ -145,7 +143,7 @@ func (s *IntegrationTestSuite) TestGetCmdQueryValidatorOutstandingRewards() { }, false, `rewards: -- amount: "232.260000000000000000" +- amount: "5.880000000000000000" denom: stake`, }, } @@ -197,7 +195,7 @@ func (s *IntegrationTestSuite) TestGetCmdQueryValidatorCommission() { fmt.Sprintf("--%s=json", tmcli.OutputFlag), }, false, - `{"commission":[{"denom":"stake","amount":"116.130000000000000000"}]}`, + `{"commission":[{"denom":"stake","amount":"2.940000000000000000"}]}`, }, { "text output", @@ -208,7 +206,7 @@ func (s *IntegrationTestSuite) TestGetCmdQueryValidatorCommission() { }, false, `commission: -- amount: "116.130000000000000000" +- amount: "2.940000000000000000" denom: stake`, }, } @@ -350,7 +348,7 @@ func (s *IntegrationTestSuite) TestGetCmdQueryDelegatorRewards() { fmt.Sprintf("--%s=json", tmcli.OutputFlag), }, false, - fmt.Sprintf(`{"rewards":[{"validator_address":"%s","reward":[{"denom":"stake","amount":"387.100000000000000000"}]}],"total":[{"denom":"stake","amount":"387.100000000000000000"}]}`, valAddr.String()), + fmt.Sprintf(`{"rewards":[{"validator_address":"%s","reward":[{"denom":"stake","amount":"9.800000000000000000"}]}],"total":[{"denom":"stake","amount":"9.800000000000000000"}]}`, valAddr.String()), }, { "json output (specific validator)", @@ -360,7 +358,7 @@ func (s *IntegrationTestSuite) TestGetCmdQueryDelegatorRewards() { fmt.Sprintf("--%s=json", tmcli.OutputFlag), }, false, - `{"rewards":[{"denom":"stake","amount":"387.100000000000000000"}]}`, + `{"rewards":[{"denom":"stake","amount":"9.800000000000000000"}]}`, }, { "text output", @@ -372,11 +370,11 @@ func (s *IntegrationTestSuite) TestGetCmdQueryDelegatorRewards() { false, fmt.Sprintf(`rewards: - reward: - - amount: "387.100000000000000000" + - amount: "9.800000000000000000" denom: stake validator_address: %s total: -- amount: "387.100000000000000000" +- amount: "9.800000000000000000" denom: stake`, valAddr.String()), }, { @@ -388,7 +386,7 @@ total: }, false, `rewards: -- amount: "387.100000000000000000" +- amount: "9.800000000000000000" denom: stake`, }, } @@ -425,13 +423,13 @@ func (s *IntegrationTestSuite) TestGetCmdQueryCommunityPool() { { "json output", []string{fmt.Sprintf("--%s=3", flags.FlagHeight), fmt.Sprintf("--%s=json", tmcli.OutputFlag)}, - `{"pool":[{"denom":"stake","amount":"4.740000000000000000"}]}`, + `{"pool":[{"denom":"stake","amount":"0.120000000000000000"}]}`, }, { "text output", []string{fmt.Sprintf("--%s=text", tmcli.OutputFlag), fmt.Sprintf("--%s=3", flags.FlagHeight)}, `pool: -- amount: "4.740000000000000000" +- amount: "0.120000000000000000" denom: stake`, }, } diff --git a/x/distribution/client/rest/grpc_query_test.go b/x/distribution/client/rest/grpc_query_test.go index 639c7cb7d8..62539ce551 100644 --- a/x/distribution/client/rest/grpc_query_test.go +++ b/x/distribution/client/rest/grpc_query_test.go @@ -71,7 +71,7 @@ func (s *IntegrationTestSuite) TestQueryOutstandingRewardsGRPC() { val := s.network.Validators[0] baseURL := val.APIAddress - rewards, err := sdk.ParseDecCoins("19.6stake") + rewards, err := sdk.ParseDecCoins("3.92stake") s.Require().NoError(err) testCases := []struct { @@ -125,7 +125,7 @@ func (s *IntegrationTestSuite) TestQueryValidatorCommissionGRPC() { val := s.network.Validators[0] baseURL := val.APIAddress - commission, err := sdk.ParseDecCoins("9.8stake") + commission, err := sdk.ParseDecCoins("1.96stake") s.Require().NoError(err) testCases := []struct { @@ -238,7 +238,7 @@ func (s *IntegrationTestSuite) TestQueryDelegatorRewardsGRPC() { val := s.network.Validators[0] baseUrl := val.APIAddress - rewards, err := sdk.ParseDecCoins("9.8stake") + rewards, err := sdk.ParseDecCoins("1.96stake") s.Require().NoError(err) testCases := []struct { @@ -418,7 +418,7 @@ func (s *IntegrationTestSuite) TestQueryValidatorCommunityPoolGRPC() { val := s.network.Validators[0] baseURL := val.APIAddress - communityPool, err := sdk.ParseDecCoins("0.4stake") + communityPool, err := sdk.ParseDecCoins("0.08stake") s.Require().NoError(err) testCases := []struct { diff --git a/x/evidence/types/evidence.pb.go b/x/evidence/types/evidence.pb.go index 284f33a5ba..116d6362d5 100644 --- a/x/evidence/types/evidence.pb.go +++ b/x/evidence/types/evidence.pb.go @@ -8,7 +8,7 @@ import ( _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" - _ "github.com/golang/protobuf/ptypes/timestamp" + _ "google.golang.org/protobuf/types/known/timestamppb" io "io" math "math" math_bits "math/bits" diff --git a/x/gov/types/gov.pb.go b/x/gov/types/gov.pb.go index 57730bcb90..6f2b7dc697 100644 --- a/x/gov/types/gov.pb.go +++ b/x/gov/types/gov.pb.go @@ -11,9 +11,9 @@ import ( _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" - _ "github.com/golang/protobuf/ptypes/duration" - _ "github.com/golang/protobuf/ptypes/timestamp" _ "github.com/regen-network/cosmos-proto" + _ "google.golang.org/protobuf/types/known/durationpb" + _ "google.golang.org/protobuf/types/known/timestamppb" io "io" math "math" math_bits "math/bits" diff --git a/x/ibc/light-clients/07-tendermint/types/tendermint.pb.go b/x/ibc/light-clients/07-tendermint/types/tendermint.pb.go index 510a643c25..547a88318e 100644 --- a/x/ibc/light-clients/07-tendermint/types/tendermint.pb.go +++ b/x/ibc/light-clients/07-tendermint/types/tendermint.pb.go @@ -11,10 +11,10 @@ import ( _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" - _ "github.com/golang/protobuf/ptypes/duration" - _ "github.com/golang/protobuf/ptypes/timestamp" github_com_tendermint_tendermint_libs_bytes "github.com/tendermint/tendermint/libs/bytes" types2 "github.com/tendermint/tendermint/proto/tendermint/types" + _ "google.golang.org/protobuf/types/known/durationpb" + _ "google.golang.org/protobuf/types/known/timestamppb" io "io" math "math" math_bits "math/bits" diff --git a/x/mint/abci.go b/x/mint/abci.go index 410415d743..c0dbb5d124 100644 --- a/x/mint/abci.go +++ b/x/mint/abci.go @@ -20,7 +20,7 @@ func BeginBlocker(ctx sdk.Context, k keeper.Keeper) { // recalculate inflation rate totalStakingSupply := k.StakingTokenSupply(ctx) bondedRatio := k.BondedRatio(ctx) - minter.Inflation = minter.NextInflationRate(params, bondedRatio) + minter.Inflation = minter.NextInflationRate(params) minter.AnnualProvisions = minter.NextAnnualProvisions(params, totalStakingSupply) k.SetMinter(ctx, minter) diff --git a/x/mint/client/cli/cli_test.go b/x/mint/client/cli/cli_test.go index 6425f369a9..55824d7abd 100644 --- a/x/mint/client/cli/cli_test.go +++ b/x/mint/client/cli/cli_test.go @@ -37,8 +37,6 @@ func (s *IntegrationTestSuite) SetupSuite() { inflation := sdk.MustNewDecFromStr("1.0") mintData.Minter.Inflation = inflation - mintData.Params.InflationMin = inflation - mintData.Params.InflationMax = inflation mintDataBz, err := cfg.Codec.MarshalJSON(&mintData) s.Require().NoError(err) @@ -68,16 +66,13 @@ func (s *IntegrationTestSuite) TestGetCmdQueryParams() { { "json output", []string{fmt.Sprintf("--%s=1", flags.FlagHeight), fmt.Sprintf("--%s=json", tmcli.OutputFlag)}, - `{"mint_denom":"stake","inflation_rate_change":"0.130000000000000000","inflation_max":"1.000000000000000000","inflation_min":"1.000000000000000000","goal_bonded":"0.670000000000000000","blocks_per_year":"6311520"}`, + `{"mint_denom":"stake","inflation_rate":"0.030000000000000000","blocks_per_year":"6311520"}`, }, { "text output", []string{fmt.Sprintf("--%s=1", flags.FlagHeight), fmt.Sprintf("--%s=text", tmcli.OutputFlag)}, `blocks_per_year: "6311520" -goal_bonded: "0.670000000000000000" -inflation_max: "1.000000000000000000" -inflation_min: "1.000000000000000000" -inflation_rate_change: "0.130000000000000000" +inflation_rate: "0.030000000000000000" mint_denom: stake`, }, } @@ -107,12 +102,12 @@ func (s *IntegrationTestSuite) TestGetCmdQueryInflation() { { "json output", []string{fmt.Sprintf("--%s=1", flags.FlagHeight), fmt.Sprintf("--%s=json", tmcli.OutputFlag)}, - `1.000000000000000000`, + `0.030000000000000000`, }, { "text output", []string{fmt.Sprintf("--%s=1", flags.FlagHeight), fmt.Sprintf("--%s=text", tmcli.OutputFlag)}, - `1.000000000000000000`, + `0.030000000000000000`, }, } @@ -141,12 +136,12 @@ func (s *IntegrationTestSuite) TestGetCmdQueryAnnualProvisions() { { "json output", []string{fmt.Sprintf("--%s=1", flags.FlagHeight), fmt.Sprintf("--%s=json", tmcli.OutputFlag)}, - `500000000.000000000000000000`, + `15000000.000000000000000000`, }, { "text output", []string{fmt.Sprintf("--%s=1", flags.FlagHeight), fmt.Sprintf("--%s=text", tmcli.OutputFlag)}, - `500000000.000000000000000000`, + `15000000.000000000000000000`, }, } diff --git a/x/mint/client/rest/grpc_query_test.go b/x/mint/client/rest/grpc_query_test.go index b2024e7d57..0f7b0b215d 100644 --- a/x/mint/client/rest/grpc_query_test.go +++ b/x/mint/client/rest/grpc_query_test.go @@ -36,8 +36,6 @@ func (s *IntegrationTestSuite) SetupSuite() { inflation := sdk.MustNewDecFromStr("1.0") mintData.Minter.Inflation = inflation - mintData.Params.InflationMin = inflation - mintData.Params.InflationMax = inflation mintDataBz, err := cfg.Codec.MarshalJSON(&mintData) s.Require().NoError(err) @@ -72,8 +70,7 @@ func (s *IntegrationTestSuite) TestQueryGRPC() { map[string]string{}, &minttypes.QueryParamsResponse{}, &minttypes.QueryParamsResponse{ - Params: minttypes.NewParams("stake", sdk.NewDecWithPrec(13, 2), sdk.NewDecWithPrec(100, 2), - sdk.NewDec(1), sdk.NewDecWithPrec(67, 2), (60 * 60 * 8766 / 5)), + Params: minttypes.NewParams("stake", sdk.NewDecWithPrec(3, 2), (60 * 60 * 8766 / 5)), }, }, { @@ -82,7 +79,7 @@ func (s *IntegrationTestSuite) TestQueryGRPC() { map[string]string{}, &minttypes.QueryInflationResponse{}, &minttypes.QueryInflationResponse{ - Inflation: sdk.NewDec(1), + Inflation: sdk.NewDecWithPrec(3, 2), }, }, { @@ -93,7 +90,7 @@ func (s *IntegrationTestSuite) TestQueryGRPC() { }, &minttypes.QueryAnnualProvisionsResponse{}, &minttypes.QueryAnnualProvisionsResponse{ - AnnualProvisions: sdk.NewDec(500000000), + AnnualProvisions: sdk.NewDec(15000000), }, }, } diff --git a/x/mint/legacy/v039/types.go b/x/mint/legacy/v039/types.go index 10b351b7fb..59a7a7c400 100644 --- a/x/mint/legacy/v039/types.go +++ b/x/mint/legacy/v039/types.go @@ -15,12 +15,9 @@ type ( // mint parameters Params struct { - MintDenom string `json:"mint_denom" yaml:"mint_denom"` // type of coin to mint - InflationRateChange sdk.Dec `json:"inflation_rate_change" yaml:"inflation_rate_change"` // maximum annual change in inflation rate - InflationMax sdk.Dec `json:"inflation_max" yaml:"inflation_max"` // maximum inflation rate - InflationMin sdk.Dec `json:"inflation_min" yaml:"inflation_min"` // minimum inflation rate - GoalBonded sdk.Dec `json:"goal_bonded" yaml:"goal_bonded"` // goal of percent bonded atoms - BlocksPerYear uint64 `json:"blocks_per_year" yaml:"blocks_per_year"` // expected blocks per year + MintDenom string `json:"mint_denom" yaml:"mint_denom"` // type of coin to mint + InflationRate sdk.Dec `json:"inflation_rate" yaml:"inflation_rate"` // maximum annual change in inflation rate + BlocksPerYear uint64 `json:"blocks_per_year" yaml:"blocks_per_year"` // expected blocks per year } // GenesisState - minter state diff --git a/x/mint/legacy/v040/migrate.go b/x/mint/legacy/v040/migrate.go index b417c68289..c94e2304cc 100644 --- a/x/mint/legacy/v040/migrate.go +++ b/x/mint/legacy/v040/migrate.go @@ -16,12 +16,9 @@ func Migrate(mintGenState v039mint.GenesisState) *v040mint.GenesisState { AnnualProvisions: mintGenState.Minter.AnnualProvisions, }, Params: v040mint.Params{ - MintDenom: mintGenState.Params.MintDenom, - InflationRateChange: mintGenState.Params.InflationRateChange, - InflationMax: mintGenState.Params.InflationMax, - InflationMin: mintGenState.Params.InflationMin, - GoalBonded: mintGenState.Params.GoalBonded, - BlocksPerYear: mintGenState.Params.BlocksPerYear, + MintDenom: mintGenState.Params.MintDenom, + InflationRate: mintGenState.Params.InflationRate, + BlocksPerYear: mintGenState.Params.BlocksPerYear, }, } } diff --git a/x/mint/simulation/genesis.go b/x/mint/simulation/genesis.go index 77d5064416..ce1fa89d96 100644 --- a/x/mint/simulation/genesis.go +++ b/x/mint/simulation/genesis.go @@ -14,11 +14,8 @@ import ( // Simulation parameter constants const ( - Inflation = "inflation" - InflationRateChange = "inflation_rate_change" - InflationMax = "inflation_max" - InflationMin = "inflation_min" - GoalBonded = "goal_bonded" + Inflation = "inflation" + InflationRate = "inflation_rate" ) // GenInflation randomized Inflation @@ -26,26 +23,11 @@ func GenInflation(r *rand.Rand) sdk.Dec { return sdk.NewDecWithPrec(int64(r.Intn(99)), 2) } -// GenInflationRateChange randomized InflationRateChange -func GenInflationRateChange(r *rand.Rand) sdk.Dec { +// GenInflationRate randomized InflationRate +func GenInflationRate(r *rand.Rand) sdk.Dec { return sdk.NewDecWithPrec(int64(r.Intn(99)), 2) } -// GenInflationMax randomized InflationMax -func GenInflationMax(r *rand.Rand) sdk.Dec { - return sdk.NewDecWithPrec(20, 2) -} - -// GenInflationMin randomized InflationMin -func GenInflationMin(r *rand.Rand) sdk.Dec { - return sdk.NewDecWithPrec(7, 2) -} - -// GenGoalBonded randomized GoalBonded -func GenGoalBonded(r *rand.Rand) sdk.Dec { - return sdk.NewDecWithPrec(67, 2) -} - // RandomizedGenState generates a random GenesisState for mint func RandomizedGenState(simState *module.SimulationState) { // minter @@ -58,31 +40,13 @@ func RandomizedGenState(simState *module.SimulationState) { // params var inflationRateChange sdk.Dec simState.AppParams.GetOrGenerate( - simState.Cdc, InflationRateChange, &inflationRateChange, simState.Rand, - func(r *rand.Rand) { inflationRateChange = GenInflationRateChange(r) }, - ) - - var inflationMax sdk.Dec - simState.AppParams.GetOrGenerate( - simState.Cdc, InflationMax, &inflationMax, simState.Rand, - func(r *rand.Rand) { inflationMax = GenInflationMax(r) }, - ) - - var inflationMin sdk.Dec - simState.AppParams.GetOrGenerate( - simState.Cdc, InflationMin, &inflationMin, simState.Rand, - func(r *rand.Rand) { inflationMin = GenInflationMin(r) }, - ) - - var goalBonded sdk.Dec - simState.AppParams.GetOrGenerate( - simState.Cdc, GoalBonded, &goalBonded, simState.Rand, - func(r *rand.Rand) { goalBonded = GenGoalBonded(r) }, + simState.Cdc, InflationRate, &inflationRateChange, simState.Rand, + func(r *rand.Rand) { inflationRateChange = GenInflationRate(r) }, ) mintDenom := sdk.DefaultBondDenom blocksPerYear := uint64(60 * 60 * 8766 / 5) - params := types.NewParams(mintDenom, inflationRateChange, inflationMax, inflationMin, goalBonded, blocksPerYear) + params := types.NewParams(mintDenom, inflationRateChange, blocksPerYear) mintGenesis := types.NewGenesisState(types.InitialMinter(inflation), params) diff --git a/x/mint/simulation/genesis_test.go b/x/mint/simulation/genesis_test.go index ac57da7acc..79ddfd4b99 100644 --- a/x/mint/simulation/genesis_test.go +++ b/x/mint/simulation/genesis_test.go @@ -40,18 +40,10 @@ func TestRandomizedGenState(t *testing.T) { var mintGenesis types.GenesisState simState.Cdc.MustUnmarshalJSON(simState.GenState[types.ModuleName], &mintGenesis) - dec1, _ := sdk.NewDecFromStr("0.670000000000000000") - dec2, _ := sdk.NewDecFromStr("0.200000000000000000") - dec3, _ := sdk.NewDecFromStr("0.070000000000000000") - require.Equal(t, uint64(6311520), mintGenesis.Params.BlocksPerYear) - require.Equal(t, dec1, mintGenesis.Params.GoalBonded) - require.Equal(t, dec2, mintGenesis.Params.InflationMax) - require.Equal(t, dec3, mintGenesis.Params.InflationMin) require.Equal(t, "stake", mintGenesis.Params.MintDenom) require.Equal(t, "0stake", mintGenesis.Minter.BlockProvision(mintGenesis.Params).String()) require.Equal(t, "0.170000000000000000", mintGenesis.Minter.NextAnnualProvisions(mintGenesis.Params, sdk.OneInt()).String()) - require.Equal(t, "0.169999926644441493", mintGenesis.Minter.NextInflationRate(mintGenesis.Params, sdk.OneDec()).String()) require.Equal(t, "0.170000000000000000", mintGenesis.Minter.Inflation.String()) require.Equal(t, "0.000000000000000000", mintGenesis.Minter.AnnualProvisions.String()) } diff --git a/x/mint/simulation/params.go b/x/mint/simulation/params.go index b75b0fc700..22c2b0c38e 100644 --- a/x/mint/simulation/params.go +++ b/x/mint/simulation/params.go @@ -13,34 +13,16 @@ import ( ) const ( - keyInflationRateChange = "InflationRateChange" - keyInflationMax = "InflationMax" - keyInflationMin = "InflationMin" - keyGoalBonded = "GoalBonded" + keyInflationRate = "InflationRate" ) // ParamChanges defines the parameters that can be modified by param change proposals // on the simulation func ParamChanges(r *rand.Rand) []simtypes.ParamChange { return []simtypes.ParamChange{ - simulation.NewSimParamChange(types.ModuleName, keyInflationRateChange, + simulation.NewSimParamChange(types.ModuleName, keyInflationRate, func(r *rand.Rand) string { - return fmt.Sprintf("\"%s\"", GenInflationRateChange(r)) - }, - ), - simulation.NewSimParamChange(types.ModuleName, keyInflationMax, - func(r *rand.Rand) string { - return fmt.Sprintf("\"%s\"", GenInflationMax(r)) - }, - ), - simulation.NewSimParamChange(types.ModuleName, keyInflationMin, - func(r *rand.Rand) string { - return fmt.Sprintf("\"%s\"", GenInflationMin(r)) - }, - ), - simulation.NewSimParamChange(types.ModuleName, keyGoalBonded, - func(r *rand.Rand) string { - return fmt.Sprintf("\"%s\"", GenGoalBonded(r)) + return fmt.Sprintf("\"%s\"", GenInflationRate(r)) }, ), } diff --git a/x/mint/simulation/params_test.go b/x/mint/simulation/params_test.go index 6bc0f624cf..239649357b 100644 --- a/x/mint/simulation/params_test.go +++ b/x/mint/simulation/params_test.go @@ -19,14 +19,11 @@ func TestParamChangest(t *testing.T) { simValue string subspace string }{ - {"mint/InflationRateChange", "InflationRateChange", "\"0.230000000000000000\"", "mint"}, - {"mint/InflationMax", "InflationMax", "\"0.200000000000000000\"", "mint"}, - {"mint/InflationMin", "InflationMin", "\"0.070000000000000000\"", "mint"}, - {"mint/GoalBonded", "GoalBonded", "\"0.670000000000000000\"", "mint"}, + {"mint/InflationRate", "InflationRate", "\"0.230000000000000000\"", "mint"}, } paramChanges := simulation.ParamChanges(r) - require.Len(t, paramChanges, 4) + require.Len(t, paramChanges, 1) for i, p := range paramChanges { require.Equal(t, expected[i].composedKey, p.ComposedKey()) diff --git a/x/mint/types/mint.pb.go b/x/mint/types/mint.pb.go index 4ed1cccd69..0904b57a6d 100644 --- a/x/mint/types/mint.pb.go +++ b/x/mint/types/mint.pb.go @@ -70,13 +70,7 @@ type Params struct { // type of coin to mint MintDenom string `protobuf:"bytes,1,opt,name=mint_denom,json=mintDenom,proto3" json:"mint_denom,omitempty"` // maximum annual change in inflation rate - InflationRateChange github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,2,opt,name=inflation_rate_change,json=inflationRateChange,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"inflation_rate_change" yaml:"inflation_rate_change"` - // maximum inflation rate - InflationMax github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,3,opt,name=inflation_max,json=inflationMax,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"inflation_max" yaml:"inflation_max"` - // minimum inflation rate - InflationMin github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,4,opt,name=inflation_min,json=inflationMin,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"inflation_min" yaml:"inflation_min"` - // goal of percent bonded atoms - GoalBonded github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,5,opt,name=goal_bonded,json=goalBonded,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"goal_bonded" yaml:"goal_bonded"` + InflationRate github_com_cosmos_cosmos_sdk_types.Dec `protobuf:"bytes,2,opt,name=inflation_rate,json=inflationRate,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Dec" json:"inflation_rate" yaml:"inflation_rate"` // expected blocks per year BlocksPerYear uint64 `protobuf:"varint,6,opt,name=blocks_per_year,json=blocksPerYear,proto3" json:"blocks_per_year,omitempty" yaml:"blocks_per_year"` } @@ -135,35 +129,29 @@ func init() { func init() { proto.RegisterFile("cosmos/mint/v1beta1/mint.proto", fileDescriptor_2df116d183c1e223) } var fileDescriptor_2df116d183c1e223 = []byte{ - // 437 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x93, 0xc1, 0x6e, 0xd3, 0x30, - 0x1c, 0xc6, 0x63, 0x28, 0x95, 0x6a, 0x98, 0x00, 0x6f, 0xa0, 0x68, 0x82, 0x64, 0xca, 0x01, 0x8d, - 0x03, 0x89, 0x26, 0x6e, 0x3b, 0x66, 0x15, 0x07, 0xc4, 0x50, 0xe5, 0x1b, 0x5c, 0xa2, 0x7f, 0x52, - 0x93, 0x59, 0x8d, 0xed, 0xca, 0xf6, 0x46, 0x7b, 0xe5, 0x09, 0x38, 0x72, 0xe4, 0x2d, 0x78, 0x85, - 0xdd, 0xd8, 0x11, 0x71, 0xa8, 0x50, 0xfb, 0x06, 0x7b, 0x02, 0x14, 0xbb, 0x6a, 0xa1, 0x20, 0xa4, - 0x4a, 0x9c, 0x92, 0xef, 0xfb, 0xff, 0xf3, 0xfd, 0xbe, 0x58, 0x32, 0x8e, 0x2a, 0x65, 0x84, 0x32, - 0x99, 0xe0, 0xd2, 0x66, 0x17, 0x47, 0x25, 0xb3, 0x70, 0xe4, 0x44, 0x3a, 0xd6, 0xca, 0x2a, 0xb2, - 0xeb, 0xe7, 0xa9, 0xb3, 0x96, 0xf3, 0xfd, 0xbd, 0x5a, 0xd5, 0xca, 0xcd, 0xb3, 0xf6, 0xcd, 0xaf, - 0x26, 0x5f, 0x11, 0xee, 0x9e, 0x72, 0x69, 0x99, 0x26, 0xaf, 0x70, 0x8f, 0xcb, 0x77, 0x0d, 0x58, - 0xae, 0x64, 0x88, 0x0e, 0xd0, 0x61, 0x2f, 0x4f, 0x2f, 0x67, 0x71, 0xf0, 0x7d, 0x16, 0x3f, 0xa9, - 0xb9, 0x3d, 0x3b, 0x2f, 0xd3, 0x4a, 0x89, 0x6c, 0xc9, 0xf6, 0x8f, 0x67, 0x66, 0x38, 0xca, 0xec, - 0x74, 0xcc, 0x4c, 0xda, 0x67, 0x15, 0x5d, 0x07, 0x90, 0xf7, 0xf8, 0x3e, 0x48, 0x79, 0x0e, 0x4d, - 0x31, 0xd6, 0xea, 0x82, 0x1b, 0xae, 0xa4, 0x09, 0x6f, 0xb8, 0xd4, 0x97, 0xdb, 0xa5, 0x5e, 0xcf, - 0xe2, 0x70, 0x0a, 0xa2, 0x39, 0x4e, 0xfe, 0x08, 0x4c, 0xe8, 0x3d, 0xef, 0x0d, 0xd6, 0xd6, 0x97, - 0x0e, 0xee, 0x0e, 0x40, 0x83, 0x30, 0xe4, 0x31, 0xc6, 0xed, 0x11, 0x14, 0x43, 0x26, 0x95, 0xf0, - 0xbf, 0x44, 0x7b, 0xad, 0xd3, 0x6f, 0x0d, 0xf2, 0x01, 0xe1, 0x07, 0xab, 0xc2, 0x85, 0x06, 0xcb, - 0x8a, 0xea, 0x0c, 0x64, 0xcd, 0x96, 0x3d, 0x5f, 0x6f, 0xdd, 0xf3, 0x91, 0xef, 0xf9, 0xd7, 0xd0, - 0x84, 0xee, 0xae, 0x7c, 0x0a, 0x96, 0x9d, 0x38, 0x97, 0x8c, 0xf0, 0xce, 0x7a, 0x5d, 0xc0, 0x24, - 0xbc, 0xe9, 0xd8, 0x2f, 0xb6, 0x66, 0xef, 0x6d, 0xb2, 0x05, 0x4c, 0x12, 0x7a, 0x67, 0xa5, 0x4f, - 0x61, 0xb2, 0x01, 0xe3, 0x32, 0xec, 0xfc, 0x37, 0x18, 0x97, 0xbf, 0xc1, 0xb8, 0x24, 0x0c, 0xdf, - 0xae, 0x15, 0x34, 0x45, 0xa9, 0xe4, 0x90, 0x0d, 0xc3, 0x5b, 0x0e, 0xd5, 0xdf, 0x1a, 0x45, 0x3c, - 0xea, 0x97, 0xa8, 0x84, 0xe2, 0x56, 0xe5, 0x4e, 0x90, 0x1c, 0xdf, 0x2d, 0x1b, 0x55, 0x8d, 0x4c, - 0x31, 0x66, 0xba, 0x98, 0x32, 0xd0, 0x61, 0xf7, 0x00, 0x1d, 0x76, 0xf2, 0xfd, 0xeb, 0x59, 0xfc, - 0xd0, 0x7f, 0xbc, 0xb1, 0x90, 0xd0, 0x1d, 0xef, 0x0c, 0x98, 0x7e, 0xc3, 0x40, 0x1f, 0x77, 0x3e, - 0x7d, 0x8e, 0x83, 0xfc, 0xe4, 0x72, 0x1e, 0xa1, 0xab, 0x79, 0x84, 0x7e, 0xcc, 0x23, 0xf4, 0x71, - 0x11, 0x05, 0x57, 0x8b, 0x28, 0xf8, 0xb6, 0x88, 0x82, 0xb7, 0x4f, 0xff, 0xd9, 0x76, 0xe2, 0x2f, - 0xa2, 0x2b, 0x5d, 0x76, 0xdd, 0xbd, 0x7a, 0xfe, 0x33, 0x00, 0x00, 0xff, 0xff, 0x34, 0x52, 0xcf, - 0x87, 0xa4, 0x03, 0x00, 0x00, + // 351 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x92, 0x4d, 0x4b, 0xc3, 0x30, + 0x18, 0xc7, 0x1b, 0x19, 0x85, 0x05, 0xe6, 0x4b, 0x7d, 0xa1, 0x0c, 0x6c, 0x47, 0x0f, 0x32, 0x0f, + 0xb6, 0x0c, 0x6f, 0x3b, 0xd6, 0x81, 0x20, 0x0a, 0xa3, 0x37, 0xbd, 0x94, 0xb4, 0x8b, 0x33, 0xac, + 0x4d, 0x4a, 0x92, 0x4d, 0xf7, 0x2d, 0x3c, 0x7a, 0xf4, 0xe3, 0xec, 0xe6, 0x8e, 0xe2, 0xa1, 0xe8, + 0xf6, 0x0d, 0xf6, 0x09, 0xa4, 0xcd, 0xd8, 0x50, 0x41, 0xd8, 0x29, 0xc9, 0xef, 0x79, 0xf8, 0xe7, + 0x97, 0xf0, 0x40, 0x2b, 0x66, 0x22, 0x65, 0xc2, 0x4b, 0x09, 0x95, 0xde, 0xa8, 0x15, 0x61, 0x89, + 0x5a, 0xe5, 0xc1, 0xcd, 0x38, 0x93, 0xcc, 0xd8, 0x57, 0x75, 0xb7, 0x44, 0xcb, 0x7a, 0xfd, 0xa0, + 0xcf, 0xfa, 0xac, 0xac, 0x7b, 0xc5, 0x4e, 0xb5, 0x3a, 0x6f, 0x00, 0xea, 0x37, 0x84, 0x4a, 0xcc, + 0x8d, 0x6b, 0x58, 0x25, 0xf4, 0x3e, 0x41, 0x92, 0x30, 0x6a, 0x82, 0x06, 0x68, 0x56, 0x7d, 0x77, + 0x92, 0xdb, 0xda, 0x47, 0x6e, 0x9f, 0xf4, 0x89, 0x7c, 0x18, 0x46, 0x6e, 0xcc, 0x52, 0x6f, 0x79, + 0xb7, 0x5a, 0xce, 0x44, 0x6f, 0xe0, 0xc9, 0x71, 0x86, 0x85, 0xdb, 0xc1, 0x71, 0xb0, 0x0e, 0x30, + 0x1e, 0xe1, 0x1e, 0xa2, 0x74, 0x88, 0x92, 0x30, 0xe3, 0x6c, 0x44, 0x04, 0x61, 0x54, 0x98, 0x5b, + 0x65, 0xea, 0xd5, 0x66, 0xa9, 0x8b, 0xdc, 0x36, 0xc7, 0x28, 0x4d, 0xda, 0xce, 0x9f, 0x40, 0x27, + 0xd8, 0x55, 0xac, 0xbb, 0x46, 0x5f, 0x00, 0xea, 0x5d, 0xc4, 0x51, 0x2a, 0x8c, 0x63, 0x08, 0x8b, + 0x2f, 0x08, 0x7b, 0x98, 0xb2, 0x54, 0x3d, 0x29, 0xa8, 0x16, 0xa4, 0x53, 0x00, 0x83, 0xc2, 0xed, + 0x95, 0x6f, 0xc8, 0x91, 0xc4, 0x4b, 0xbf, 0xcb, 0x8d, 0xfd, 0x0e, 0x95, 0xdf, 0xcf, 0x34, 0x27, + 0xa8, 0xad, 0x40, 0x80, 0x24, 0x36, 0x7c, 0xb8, 0x13, 0x25, 0x2c, 0x1e, 0x88, 0x30, 0xc3, 0x3c, + 0x1c, 0x63, 0xc4, 0x4d, 0xbd, 0x01, 0x9a, 0x15, 0xbf, 0xbe, 0xc8, 0xed, 0x23, 0x15, 0xf1, 0xab, + 0xc1, 0x09, 0x6a, 0x8a, 0x74, 0x31, 0xbf, 0xc5, 0x88, 0xb7, 0x2b, 0x2f, 0xaf, 0xb6, 0xe6, 0x5f, + 0x4c, 0x66, 0x16, 0x98, 0xce, 0x2c, 0xf0, 0x39, 0xb3, 0xc0, 0xf3, 0xdc, 0xd2, 0xa6, 0x73, 0x4b, + 0x7b, 0x9f, 0x5b, 0xda, 0xdd, 0xe9, 0xbf, 0xce, 0x4f, 0x6a, 0x64, 0x4a, 0xf5, 0x48, 0x2f, 0x27, + 0xe0, 0xfc, 0x3b, 0x00, 0x00, 0xff, 0xff, 0x04, 0x68, 0xe1, 0x61, 0x4e, 0x02, 0x00, 0x00, } func (m *Minter) Marshal() (dAtA []byte, err error) { @@ -235,39 +223,9 @@ func (m *Params) MarshalToSizedBuffer(dAtA []byte) (int, error) { dAtA[i] = 0x30 } { - size := m.GoalBonded.Size() + size := m.InflationRate.Size() i -= size - if _, err := m.GoalBonded.MarshalTo(dAtA[i:]); err != nil { - return 0, err - } - i = encodeVarintMint(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x2a - { - size := m.InflationMin.Size() - i -= size - if _, err := m.InflationMin.MarshalTo(dAtA[i:]); err != nil { - return 0, err - } - i = encodeVarintMint(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x22 - { - size := m.InflationMax.Size() - i -= size - if _, err := m.InflationMax.MarshalTo(dAtA[i:]); err != nil { - return 0, err - } - i = encodeVarintMint(dAtA, i, uint64(size)) - } - i-- - dAtA[i] = 0x1a - { - size := m.InflationRateChange.Size() - i -= size - if _, err := m.InflationRateChange.MarshalTo(dAtA[i:]); err != nil { + if _, err := m.InflationRate.MarshalTo(dAtA[i:]); err != nil { return 0, err } i = encodeVarintMint(dAtA, i, uint64(size)) @@ -318,13 +276,7 @@ func (m *Params) Size() (n int) { if l > 0 { n += 1 + l + sovMint(uint64(l)) } - l = m.InflationRateChange.Size() - n += 1 + l + sovMint(uint64(l)) - l = m.InflationMax.Size() - n += 1 + l + sovMint(uint64(l)) - l = m.InflationMin.Size() - n += 1 + l + sovMint(uint64(l)) - l = m.GoalBonded.Size() + l = m.InflationRate.Size() n += 1 + l + sovMint(uint64(l)) if m.BlocksPerYear != 0 { n += 1 + sovMint(uint64(m.BlocksPerYear)) @@ -519,109 +471,7 @@ func (m *Params) Unmarshal(dAtA []byte) error { iNdEx = postIndex case 2: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field InflationRateChange", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowMint - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthMint - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthMint - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.InflationRateChange.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 3: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field InflationMax", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowMint - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthMint - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthMint - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.InflationMax.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 4: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field InflationMin", wireType) - } - var stringLen uint64 - for shift := uint(0); ; shift += 7 { - if shift >= 64 { - return ErrIntOverflowMint - } - if iNdEx >= l { - return io.ErrUnexpectedEOF - } - b := dAtA[iNdEx] - iNdEx++ - stringLen |= uint64(b&0x7F) << shift - if b < 0x80 { - break - } - } - intStringLen := int(stringLen) - if intStringLen < 0 { - return ErrInvalidLengthMint - } - postIndex := iNdEx + intStringLen - if postIndex < 0 { - return ErrInvalidLengthMint - } - if postIndex > l { - return io.ErrUnexpectedEOF - } - if err := m.InflationMin.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { - return err - } - iNdEx = postIndex - case 5: - if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field GoalBonded", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field InflationRate", wireType) } var stringLen uint64 for shift := uint(0); ; shift += 7 { @@ -649,7 +499,7 @@ func (m *Params) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := m.GoalBonded.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + if err := m.InflationRate.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex diff --git a/x/mint/types/minter.go b/x/mint/types/minter.go index 3285d6ddf0..5c49e7750e 100644 --- a/x/mint/types/minter.go +++ b/x/mint/types/minter.go @@ -24,10 +24,10 @@ func InitialMinter(inflation sdk.Dec) Minter { } // DefaultInitialMinter returns a default initial Minter object for a new chain -// which uses an inflation rate of 13%. +// which uses an inflation rate of 3%. func DefaultInitialMinter() Minter { return InitialMinter( - sdk.NewDecWithPrec(13, 2), + sdk.NewDecWithPrec(3, 2), ) } @@ -41,29 +41,8 @@ func ValidateMinter(minter Minter) error { } // NextInflationRate returns the new inflation rate for the next hour. -func (m Minter) NextInflationRate(params Params, bondedRatio sdk.Dec) sdk.Dec { - // The target annual inflation rate is recalculated for each previsions cycle. The - // inflation is also subject to a rate change (positive or negative) depending on - // the distance from the desired ratio (67%). The maximum rate change possible is - // defined to be 13% per year, however the annual inflation is capped as between - // 7% and 20%. - - // (1 - bondedRatio/GoalBonded) * InflationRateChange - inflationRateChangePerYear := sdk.OneDec(). - Sub(bondedRatio.Quo(params.GoalBonded)). - Mul(params.InflationRateChange) - inflationRateChange := inflationRateChangePerYear.Quo(sdk.NewDec(int64(params.BlocksPerYear))) - - // adjust the new annual inflation for this next cycle - inflation := m.Inflation.Add(inflationRateChange) // note inflationRateChange may be negative - if inflation.GT(params.InflationMax) { - inflation = params.InflationMax - } - if inflation.LT(params.InflationMin) { - inflation = params.InflationMin - } - - return inflation +func (m Minter) NextInflationRate(params Params) sdk.Dec { + return params.InflationRate } // NextAnnualProvisions returns the annual provisions based on current total diff --git a/x/mint/types/minter_test.go b/x/mint/types/minter_test.go index 8760a66f44..36f1736eec 100644 --- a/x/mint/types/minter_test.go +++ b/x/mint/types/minter_test.go @@ -12,41 +12,26 @@ import ( func TestNextInflation(t *testing.T) { minter := DefaultInitialMinter() params := DefaultParams() - blocksPerYr := sdk.NewDec(int64(params.BlocksPerYear)) // Governing Mechanism: // inflationRateChangePerYear = (1- BondedRatio/ GoalBonded) * MaxInflationRateChange tests := []struct { - bondedRatio, setInflation, expChange sdk.Dec + setInflation, expChange sdk.Dec }{ - // with 0% bonded atom supply the inflation should increase by InflationRateChange - {sdk.ZeroDec(), sdk.NewDecWithPrec(7, 2), params.InflationRateChange.Quo(blocksPerYr)}, + // no change from the default (3%) + {sdk.NewDecWithPrec(3, 2), sdk.ZeroDec()}, - // 100% bonded, starting at 20% inflation and being reduced - // (1 - (1/0.67))*(0.13/8667) - {sdk.OneDec(), sdk.NewDecWithPrec(20, 2), - sdk.OneDec().Sub(sdk.OneDec().Quo(params.GoalBonded)).Mul(params.InflationRateChange).Quo(blocksPerYr)}, + // a change from 4% to default (3%) + {sdk.NewDecWithPrec(4, 2), sdk.NewDecWithPrec(-1, 2)}, - // 50% bonded, starting at 10% inflation and being increased - {sdk.NewDecWithPrec(5, 1), sdk.NewDecWithPrec(10, 2), - sdk.OneDec().Sub(sdk.NewDecWithPrec(5, 1).Quo(params.GoalBonded)).Mul(params.InflationRateChange).Quo(blocksPerYr)}, - - // test 7% minimum stop (testing with 100% bonded) - {sdk.OneDec(), sdk.NewDecWithPrec(7, 2), sdk.ZeroDec()}, - {sdk.OneDec(), sdk.NewDecWithPrec(700000001, 10), sdk.NewDecWithPrec(-1, 10)}, - - // test 20% maximum stop (testing with 0% bonded) - {sdk.ZeroDec(), sdk.NewDecWithPrec(20, 2), sdk.ZeroDec()}, - {sdk.ZeroDec(), sdk.NewDecWithPrec(1999999999, 10), sdk.NewDecWithPrec(1, 10)}, - - // perfect balance shouldn't change inflation - {sdk.NewDecWithPrec(67, 2), sdk.NewDecWithPrec(15, 2), sdk.ZeroDec()}, + // a change from 1% to default (3%) + {sdk.NewDecWithPrec(1, 2), sdk.NewDecWithPrec(2, 2)}, } for i, tc := range tests { minter.Inflation = tc.setInflation - inflation := minter.NextInflationRate(params, tc.bondedRatio) + inflation := minter.NextInflationRate(params) diffInflation := inflation.Sub(tc.setInflation) require.True(t, diffInflation.Equal(tc.expChange), @@ -107,11 +92,9 @@ func BenchmarkBlockProvision(b *testing.B) { func BenchmarkNextInflation(b *testing.B) { minter := InitialMinter(sdk.NewDecWithPrec(1, 1)) params := DefaultParams() - bondedRatio := sdk.NewDecWithPrec(1, 1) - // run the NextInflationRate function b.N times for n := 0; n < b.N; n++ { - minter.NextInflationRate(params, bondedRatio) + minter.NextInflationRate(params) } } diff --git a/x/mint/types/params.go b/x/mint/types/params.go index f0f9ef494b..91b659bac2 100644 --- a/x/mint/types/params.go +++ b/x/mint/types/params.go @@ -13,12 +13,9 @@ import ( // Parameter store keys var ( - KeyMintDenom = []byte("MintDenom") - KeyInflationRateChange = []byte("InflationRateChange") - KeyInflationMax = []byte("InflationMax") - KeyInflationMin = []byte("InflationMin") - KeyGoalBonded = []byte("GoalBonded") - KeyBlocksPerYear = []byte("BlocksPerYear") + KeyMintDenom = []byte("MintDenom") + KeyInflationRate = []byte("InflationRate") + KeyBlocksPerYear = []byte("BlocksPerYear") ) // ParamTable for minting module. @@ -26,29 +23,20 @@ func ParamKeyTable() paramtypes.KeyTable { return paramtypes.NewKeyTable().RegisterParamSet(&Params{}) } -func NewParams( - mintDenom string, inflationRateChange, inflationMax, inflationMin, goalBonded sdk.Dec, blocksPerYear uint64, -) Params { - +func NewParams(mintDenom string, inflationRate sdk.Dec, blocksPerYear uint64) Params { return Params{ - MintDenom: mintDenom, - InflationRateChange: inflationRateChange, - InflationMax: inflationMax, - InflationMin: inflationMin, - GoalBonded: goalBonded, - BlocksPerYear: blocksPerYear, + MintDenom: mintDenom, + InflationRate: inflationRate, + BlocksPerYear: blocksPerYear, } } // default minting module parameters func DefaultParams() Params { return Params{ - MintDenom: sdk.DefaultBondDenom, - InflationRateChange: sdk.NewDecWithPrec(13, 2), - InflationMax: sdk.NewDecWithPrec(20, 2), - InflationMin: sdk.NewDecWithPrec(7, 2), - GoalBonded: sdk.NewDecWithPrec(67, 2), - BlocksPerYear: uint64(60 * 60 * 8766 / 5), // assuming 5 second block times + MintDenom: sdk.DefaultBondDenom, + InflationRate: sdk.NewDecWithPrec(3, 2), + BlocksPerYear: uint64(60 * 60 * 8766 / 5), // assuming 5 second block times } } @@ -57,30 +45,13 @@ func (p Params) Validate() error { if err := validateMintDenom(p.MintDenom); err != nil { return err } - if err := validateInflationRateChange(p.InflationRateChange); err != nil { - return err - } - if err := validateInflationMax(p.InflationMax); err != nil { - return err - } - if err := validateInflationMin(p.InflationMin); err != nil { - return err - } - if err := validateGoalBonded(p.GoalBonded); err != nil { + if err := validateInflationRate(p.InflationRate); err != nil { return err } if err := validateBlocksPerYear(p.BlocksPerYear); err != nil { return err } - if p.InflationMax.LT(p.InflationMin) { - return fmt.Errorf( - "max inflation (%s) must be greater than or equal to min inflation (%s)", - p.InflationMax, p.InflationMin, - ) - } - return nil - } // String implements the Stringer interface. @@ -93,10 +64,7 @@ func (p Params) String() string { func (p *Params) ParamSetPairs() paramtypes.ParamSetPairs { return paramtypes.ParamSetPairs{ paramtypes.NewParamSetPair(KeyMintDenom, &p.MintDenom, validateMintDenom), - paramtypes.NewParamSetPair(KeyInflationRateChange, &p.InflationRateChange, validateInflationRateChange), - paramtypes.NewParamSetPair(KeyInflationMax, &p.InflationMax, validateInflationMax), - paramtypes.NewParamSetPair(KeyInflationMin, &p.InflationMin, validateInflationMin), - paramtypes.NewParamSetPair(KeyGoalBonded, &p.GoalBonded, validateGoalBonded), + paramtypes.NewParamSetPair(KeyInflationRate, &p.InflationRate, validateInflationRate), paramtypes.NewParamSetPair(KeyBlocksPerYear, &p.BlocksPerYear, validateBlocksPerYear), } } @@ -117,7 +85,7 @@ func validateMintDenom(i interface{}) error { return nil } -func validateInflationRateChange(i interface{}) error { +func validateInflationRate(i interface{}) error { v, ok := i.(sdk.Dec) if !ok { return fmt.Errorf("invalid parameter type: %T", i) @@ -133,54 +101,6 @@ func validateInflationRateChange(i interface{}) error { return nil } -func validateInflationMax(i interface{}) error { - v, ok := i.(sdk.Dec) - if !ok { - return fmt.Errorf("invalid parameter type: %T", i) - } - - if v.IsNegative() { - return fmt.Errorf("max inflation cannot be negative: %s", v) - } - if v.GT(sdk.OneDec()) { - return fmt.Errorf("max inflation too large: %s", v) - } - - return nil -} - -func validateInflationMin(i interface{}) error { - v, ok := i.(sdk.Dec) - if !ok { - return fmt.Errorf("invalid parameter type: %T", i) - } - - if v.IsNegative() { - return fmt.Errorf("min inflation cannot be negative: %s", v) - } - if v.GT(sdk.OneDec()) { - return fmt.Errorf("min inflation too large: %s", v) - } - - return nil -} - -func validateGoalBonded(i interface{}) error { - v, ok := i.(sdk.Dec) - if !ok { - return fmt.Errorf("invalid parameter type: %T", i) - } - - if v.IsNegative() { - return fmt.Errorf("goal bonded cannot be negative: %s", v) - } - if v.GT(sdk.OneDec()) { - return fmt.Errorf("goal bonded too large: %s", v) - } - - return nil -} - func validateBlocksPerYear(i interface{}) error { v, ok := i.(uint64) if !ok { diff --git a/x/slashing/types/slashing.pb.go b/x/slashing/types/slashing.pb.go index 2f48e117eb..1db4757a95 100644 --- a/x/slashing/types/slashing.pb.go +++ b/x/slashing/types/slashing.pb.go @@ -9,8 +9,8 @@ import ( _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" - _ "github.com/golang/protobuf/ptypes/duration" - _ "github.com/golang/protobuf/ptypes/timestamp" + _ "google.golang.org/protobuf/types/known/durationpb" + _ "google.golang.org/protobuf/types/known/timestamppb" io "io" math "math" math_bits "math/bits" @@ -33,19 +33,16 @@ const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package // liveness activity. type ValidatorSigningInfo struct { Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"` - // Height at which validator was first a candidate OR was unjailed + // height at which validator was first a candidate OR was unjailed StartHeight int64 `protobuf:"varint,2,opt,name=start_height,json=startHeight,proto3" json:"start_height,omitempty" yaml:"start_height"` - // Index which is incremented each time the validator was a bonded - // in a block and may have signed a precommit or not. This in conjunction with the - // `SignedBlocksWindow` param determines the index in the `MissedBlocksBitArray`. + // index offset into signed block bit array IndexOffset int64 `protobuf:"varint,3,opt,name=index_offset,json=indexOffset,proto3" json:"index_offset,omitempty" yaml:"index_offset"` - // Timestamp until which the validator is jailed due to liveness downtime. + // timestamp validator cannot be unjailed until JailedUntil time.Time `protobuf:"bytes,4,opt,name=jailed_until,json=jailedUntil,proto3,stdtime" json:"jailed_until" yaml:"jailed_until"` - // Whether or not a validator has been tombstoned (killed out of validator set). It is set - // once the validator commits an equivocation or for any other configured misbehiavor. + // whether or not a validator has been tombstoned (killed out of validator + // set) Tombstoned bool `protobuf:"varint,5,opt,name=tombstoned,proto3" json:"tombstoned,omitempty"` - // A counter kept to avoid unnecessary array reads. - // Note that `Sum(MissedBlocksBitArray)` always equals `MissedBlocksCounter`. + // missed blocks counter (to avoid scanning the array every time) MissedBlocksCounter int64 `protobuf:"varint,6,opt,name=missed_blocks_counter,json=missedBlocksCounter,proto3" json:"missed_blocks_counter,omitempty" yaml:"missed_blocks_counter"` } diff --git a/x/staking/types/staking.pb.go b/x/staking/types/staking.pb.go index 45b30b7a0e..aae4d7b54f 100644 --- a/x/staking/types/staking.pb.go +++ b/x/staking/types/staking.pb.go @@ -15,10 +15,10 @@ import ( proto "github.com/gogo/protobuf/proto" github_com_gogo_protobuf_protoc_gen_gogo_descriptor "github.com/gogo/protobuf/protoc-gen-gogo/descriptor" github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" - _ "github.com/golang/protobuf/ptypes/duration" - _ "github.com/golang/protobuf/ptypes/timestamp" _ "github.com/regen-network/cosmos-proto" types "github.com/tendermint/tendermint/proto/tendermint/types" + _ "google.golang.org/protobuf/types/known/durationpb" + _ "google.golang.org/protobuf/types/known/timestamppb" io "io" io_ioutil "io/ioutil" math "math" @@ -1260,608 +1260,607 @@ func (this *Pool) Description() (desc *github_com_gogo_protobuf_protoc_gen_gogo_ func StakingDescription() (desc *github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet) { d := &github_com_gogo_protobuf_protoc_gen_gogo_descriptor.FileDescriptorSet{} var gzipped = []byte{ - // 9603 bytes of a gzipped FileDescriptorSet + // 9591 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x6d, 0x70, 0x24, 0xd7, - 0x71, 0xd8, 0xcd, 0xee, 0x02, 0xd8, 0x6d, 0x2c, 0x80, 0xc5, 0x03, 0xee, 0x6e, 0x6f, 0x79, 0x04, - 0xc0, 0xe1, 0xd7, 0xf1, 0x48, 0x02, 0xe4, 0x91, 0x77, 0x24, 0xf7, 0x24, 0xd2, 0x58, 0x60, 0x0f, + 0x71, 0x18, 0x66, 0x77, 0x01, 0xec, 0x36, 0x16, 0xc0, 0xe2, 0x01, 0x77, 0xb7, 0xb7, 0x3c, 0x02, + 0xe0, 0xf0, 0xeb, 0x78, 0x24, 0x71, 0xe4, 0x91, 0x77, 0x24, 0xf7, 0x24, 0xd1, 0x58, 0x60, 0x0f, 0x07, 0x1e, 0xbe, 0x38, 0x00, 0x8e, 0xd4, 0x87, 0xb3, 0x35, 0x98, 0x7d, 0x58, 0x0c, 0xb1, 0x3b, - 0x33, 0x9c, 0x99, 0xbd, 0x3b, 0x50, 0x52, 0x15, 0x2d, 0x29, 0x8a, 0x44, 0xc7, 0x91, 0x14, 0xb9, - 0x1c, 0x89, 0xd6, 0x29, 0x92, 0xe5, 0x44, 0x8e, 0xac, 0xc4, 0x1f, 0x52, 0x94, 0x38, 0x49, 0x55, - 0xa4, 0x24, 0x8e, 0x25, 0xa5, 0xe2, 0x92, 0x2a, 0xae, 0xc4, 0x71, 0x25, 0x67, 0x87, 0x52, 0x39, - 0x8c, 0xa2, 0xc4, 0xf2, 0x59, 0x4e, 0x9c, 0x52, 0xa5, 0x92, 0x7a, 0x5f, 0xf3, 0xb5, 0x1f, 0xb3, - 0x0b, 0xdd, 0x49, 0x72, 0x9c, 0x5f, 0xd8, 0xd7, 0xaf, 0xbb, 0x5f, 0xbf, 0x7e, 0xfd, 0xba, 0xfb, - 0x7d, 0x0d, 0xe0, 0x9f, 0x9f, 0x87, 0x99, 0x9a, 0x69, 0xd6, 0xea, 0x78, 0xce, 0xb2, 0x4d, 0xd7, - 0xdc, 0x69, 0xee, 0xce, 0x55, 0xb1, 0xa3, 0xd9, 0xba, 0xe5, 0x9a, 0xf6, 0x2c, 0x85, 0xa1, 0x31, - 0x86, 0x31, 0x2b, 0x30, 0xe4, 0x55, 0x18, 0xbf, 0xa0, 0xd7, 0xf1, 0xa2, 0x87, 0xb8, 0x89, 0x5d, - 0xf4, 0x24, 0xa4, 0x76, 0xf5, 0x3a, 0xce, 0x4b, 0x33, 0xc9, 0x53, 0xc3, 0x67, 0xee, 0x99, 0x8d, - 0x10, 0xcd, 0x86, 0x29, 0x36, 0x08, 0x58, 0xa1, 0x14, 0xf2, 0xb7, 0x52, 0x30, 0xd1, 0xa6, 0x16, - 0x21, 0x48, 0x19, 0x6a, 0x83, 0x70, 0x94, 0x4e, 0x65, 0x14, 0xfa, 0x1b, 0xe5, 0x61, 0xc8, 0x52, - 0xb5, 0x7d, 0xb5, 0x86, 0xf3, 0x09, 0x0a, 0x16, 0x45, 0x34, 0x05, 0x50, 0xc5, 0x16, 0x36, 0xaa, - 0xd8, 0xd0, 0x0e, 0xf2, 0xc9, 0x99, 0xe4, 0xa9, 0x8c, 0x12, 0x80, 0xa0, 0x07, 0x61, 0xdc, 0x6a, - 0xee, 0xd4, 0x75, 0xad, 0x12, 0x40, 0x83, 0x99, 0xe4, 0xa9, 0x01, 0x25, 0xc7, 0x2a, 0x16, 0x7d, - 0xe4, 0xfb, 0x61, 0xec, 0x2a, 0x56, 0xf7, 0x83, 0xa8, 0xc3, 0x14, 0x75, 0x94, 0x80, 0x03, 0x88, - 0x0b, 0x90, 0x6d, 0x60, 0xc7, 0x51, 0x6b, 0xb8, 0xe2, 0x1e, 0x58, 0x38, 0x9f, 0xa2, 0xbd, 0x9f, - 0x69, 0xe9, 0x7d, 0xb4, 0xe7, 0xc3, 0x9c, 0x6a, 0xeb, 0xc0, 0xc2, 0x68, 0x1e, 0x32, 0xd8, 0x68, - 0x36, 0x18, 0x87, 0x81, 0x0e, 0xfa, 0x2b, 0x1b, 0xcd, 0x46, 0x94, 0x4b, 0x9a, 0x90, 0x71, 0x16, - 0x43, 0x0e, 0xb6, 0xaf, 0xe8, 0x1a, 0xce, 0x0f, 0x52, 0x06, 0xf7, 0xb7, 0x30, 0xd8, 0x64, 0xf5, - 0x51, 0x1e, 0x82, 0x0e, 0x2d, 0x40, 0x06, 0x5f, 0x73, 0xb1, 0xe1, 0xe8, 0xa6, 0x91, 0x1f, 0xa2, - 0x4c, 0xee, 0x6d, 0x33, 0x8a, 0xb8, 0x5e, 0x8d, 0xb2, 0xf0, 0xe9, 0xd0, 0x39, 0x18, 0x32, 0x2d, - 0x57, 0x37, 0x0d, 0x27, 0x9f, 0x9e, 0x91, 0x4e, 0x0d, 0x9f, 0x39, 0xd9, 0xd6, 0x10, 0xd6, 0x19, - 0x8e, 0x22, 0x90, 0xd1, 0x32, 0xe4, 0x1c, 0xb3, 0x69, 0x6b, 0xb8, 0xa2, 0x99, 0x55, 0x5c, 0xd1, - 0x8d, 0x5d, 0x33, 0x9f, 0xa1, 0x0c, 0xa6, 0x5b, 0x3b, 0x42, 0x11, 0x17, 0xcc, 0x2a, 0x5e, 0x36, - 0x76, 0x4d, 0x65, 0xd4, 0x09, 0x95, 0xd1, 0x31, 0x18, 0x74, 0x0e, 0x0c, 0x57, 0xbd, 0x96, 0xcf, - 0x52, 0x0b, 0xe1, 0x25, 0xf9, 0x37, 0x06, 0x61, 0xac, 0x17, 0x13, 0x3b, 0x0f, 0x03, 0xbb, 0xa4, - 0x97, 0xf9, 0x44, 0x3f, 0x3a, 0x60, 0x34, 0x61, 0x25, 0x0e, 0x1e, 0x52, 0x89, 0xf3, 0x30, 0x6c, - 0x60, 0xc7, 0xc5, 0x55, 0x66, 0x11, 0xc9, 0x1e, 0x6d, 0x0a, 0x18, 0x51, 0xab, 0x49, 0xa5, 0x0e, - 0x65, 0x52, 0x2f, 0xc0, 0x98, 0x27, 0x52, 0xc5, 0x56, 0x8d, 0x9a, 0xb0, 0xcd, 0xb9, 0x38, 0x49, - 0x66, 0xcb, 0x82, 0x4e, 0x21, 0x64, 0xca, 0x28, 0x0e, 0x95, 0xd1, 0x22, 0x80, 0x69, 0x60, 0x73, - 0xb7, 0x52, 0xc5, 0x5a, 0x3d, 0x9f, 0xee, 0xa0, 0xa5, 0x75, 0x82, 0xd2, 0xa2, 0x25, 0x93, 0x41, - 0xb5, 0x3a, 0x7a, 0xca, 0x37, 0xb5, 0xa1, 0x0e, 0x96, 0xb2, 0xca, 0x26, 0x59, 0x8b, 0xb5, 0x6d, - 0xc3, 0xa8, 0x8d, 0x89, 0xdd, 0xe3, 0x2a, 0xef, 0x59, 0x86, 0x0a, 0x31, 0x1b, 0xdb, 0x33, 0x85, - 0x93, 0xb1, 0x8e, 0x8d, 0xd8, 0xc1, 0x22, 0xba, 0x1b, 0x3c, 0x40, 0x85, 0x9a, 0x15, 0x50, 0x2f, - 0x94, 0x15, 0xc0, 0x35, 0xb5, 0x81, 0x0b, 0x2f, 0xc3, 0x68, 0x58, 0x3d, 0x68, 0x12, 0x06, 0x1c, - 0x57, 0xb5, 0x5d, 0x6a, 0x85, 0x03, 0x0a, 0x2b, 0xa0, 0x1c, 0x24, 0xb1, 0x51, 0xa5, 0x5e, 0x6e, - 0x40, 0x21, 0x3f, 0xd1, 0x4f, 0xf8, 0x1d, 0x4e, 0xd2, 0x0e, 0xdf, 0xd7, 0x3a, 0xa2, 0x21, 0xce, - 0xd1, 0x7e, 0x17, 0x9e, 0x80, 0x91, 0x50, 0x07, 0x7a, 0x6d, 0x5a, 0x7e, 0x27, 0x1c, 0x6d, 0xcb, - 0x1a, 0xbd, 0x00, 0x93, 0x4d, 0x43, 0x37, 0x5c, 0x6c, 0x5b, 0x36, 0x26, 0x16, 0xcb, 0x9a, 0xca, - 0xff, 0xe7, 0xa1, 0x0e, 0x36, 0xb7, 0x1d, 0xc4, 0x66, 0x5c, 0x94, 0x89, 0x66, 0x2b, 0xf0, 0x74, - 0x26, 0xfd, 0xc6, 0x50, 0xee, 0x95, 0x57, 0x5e, 0x79, 0x25, 0x21, 0x7f, 0x79, 0x10, 0x26, 0xdb, - 0xcd, 0x99, 0xb6, 0xd3, 0xf7, 0x18, 0x0c, 0x1a, 0xcd, 0xc6, 0x0e, 0xb6, 0xa9, 0x92, 0x06, 0x14, - 0x5e, 0x42, 0xf3, 0x30, 0x50, 0x57, 0x77, 0x70, 0x3d, 0x9f, 0x9a, 0x91, 0x4e, 0x8d, 0x9e, 0x79, - 0xb0, 0xa7, 0x59, 0x39, 0xbb, 0x42, 0x48, 0x14, 0x46, 0x89, 0x9e, 0x86, 0x14, 0x77, 0xd1, 0x84, - 0xc3, 0xe9, 0xde, 0x38, 0x90, 0xb9, 0xa4, 0x50, 0x3a, 0x74, 0x07, 0x64, 0xc8, 0x5f, 0x66, 0x1b, - 0x83, 0x54, 0xe6, 0x34, 0x01, 0x10, 0xbb, 0x40, 0x05, 0x48, 0xd3, 0x69, 0x52, 0xc5, 0x22, 0xb4, - 0x79, 0x65, 0x62, 0x58, 0x55, 0xbc, 0xab, 0x36, 0xeb, 0x6e, 0xe5, 0x8a, 0x5a, 0x6f, 0x62, 0x6a, - 0xf0, 0x19, 0x25, 0xcb, 0x81, 0x97, 0x09, 0x0c, 0x4d, 0xc3, 0x30, 0x9b, 0x55, 0xba, 0x51, 0xc5, - 0xd7, 0xa8, 0xf7, 0x1c, 0x50, 0xd8, 0x44, 0x5b, 0x26, 0x10, 0xd2, 0xfc, 0x8b, 0x8e, 0x69, 0x08, - 0xd3, 0xa4, 0x4d, 0x10, 0x00, 0x6d, 0xfe, 0x89, 0xa8, 0xe3, 0xbe, 0xb3, 0x7d, 0xf7, 0x5a, 0xe6, - 0xd2, 0xfd, 0x30, 0x46, 0x31, 0x1e, 0xe3, 0x43, 0xaf, 0xd6, 0xf3, 0xe3, 0x33, 0xd2, 0xa9, 0xb4, - 0x32, 0xca, 0xc0, 0xeb, 0x1c, 0x2a, 0x7f, 0x31, 0x01, 0x29, 0xea, 0x58, 0xc6, 0x60, 0x78, 0xeb, - 0x2d, 0x1b, 0xe5, 0xca, 0xe2, 0xfa, 0x76, 0x69, 0xa5, 0x9c, 0x93, 0xd0, 0x28, 0x00, 0x05, 0x5c, - 0x58, 0x59, 0x9f, 0xdf, 0xca, 0x25, 0xbc, 0xf2, 0xf2, 0xda, 0xd6, 0xb9, 0xc7, 0x73, 0x49, 0x8f, - 0x60, 0x9b, 0x01, 0x52, 0x41, 0x84, 0xc7, 0xce, 0xe4, 0x06, 0x50, 0x0e, 0xb2, 0x8c, 0xc1, 0xf2, - 0x0b, 0xe5, 0xc5, 0x73, 0x8f, 0xe7, 0x06, 0xc3, 0x90, 0xc7, 0xce, 0xe4, 0x86, 0xd0, 0x08, 0x64, - 0x28, 0xa4, 0xb4, 0xbe, 0xbe, 0x92, 0x4b, 0x7b, 0x3c, 0x37, 0xb7, 0x94, 0xe5, 0xb5, 0xa5, 0x5c, - 0xc6, 0xe3, 0xb9, 0xa4, 0xac, 0x6f, 0x6f, 0xe4, 0xc0, 0xe3, 0xb0, 0x5a, 0xde, 0xdc, 0x9c, 0x5f, - 0x2a, 0xe7, 0x86, 0x3d, 0x8c, 0xd2, 0x5b, 0xb6, 0xca, 0x9b, 0xb9, 0x6c, 0x48, 0xac, 0xc7, 0xce, - 0xe4, 0x46, 0xbc, 0x26, 0xca, 0x6b, 0xdb, 0xab, 0xb9, 0x51, 0x34, 0x0e, 0x23, 0xac, 0x09, 0x21, - 0xc4, 0x58, 0x04, 0x74, 0xee, 0xf1, 0x5c, 0xce, 0x17, 0x84, 0x71, 0x19, 0x0f, 0x01, 0xce, 0x3d, - 0x9e, 0x43, 0xf2, 0x02, 0x0c, 0x50, 0x33, 0x44, 0x08, 0x46, 0x57, 0xe6, 0x4b, 0xe5, 0x95, 0xca, - 0xfa, 0xc6, 0xd6, 0xf2, 0xfa, 0xda, 0xfc, 0x4a, 0x4e, 0xf2, 0x61, 0x4a, 0xf9, 0xb9, 0xed, 0x65, - 0xa5, 0xbc, 0x98, 0x4b, 0x04, 0x61, 0x1b, 0xe5, 0xf9, 0xad, 0xf2, 0x62, 0x2e, 0x29, 0x6b, 0x30, - 0xd9, 0xce, 0xa1, 0xb6, 0x9d, 0x42, 0x01, 0x5b, 0x48, 0x74, 0xb0, 0x05, 0xca, 0x2b, 0x6a, 0x0b, - 0xf2, 0x37, 0x13, 0x30, 0xd1, 0x26, 0xa8, 0xb4, 0x6d, 0xe4, 0x19, 0x18, 0x60, 0xb6, 0xcc, 0xc2, - 0xec, 0x03, 0x6d, 0xa3, 0x13, 0xb5, 0xec, 0x96, 0x50, 0x4b, 0xe9, 0x82, 0xa9, 0x46, 0xb2, 0x43, - 0xaa, 0x41, 0x58, 0xb4, 0x18, 0xec, 0x4f, 0xb6, 0x38, 0x7f, 0x16, 0x1f, 0xcf, 0xf5, 0x12, 0x1f, - 0x29, 0xac, 0xbf, 0x20, 0x30, 0xd0, 0x26, 0x08, 0x9c, 0x87, 0xf1, 0x16, 0x46, 0x3d, 0x3b, 0xe3, - 0xf7, 0x48, 0x90, 0xef, 0xa4, 0x9c, 0x18, 0x97, 0x98, 0x08, 0xb9, 0xc4, 0xf3, 0x51, 0x0d, 0xde, - 0xd5, 0x79, 0x10, 0x5a, 0xc6, 0xfa, 0x33, 0x12, 0x1c, 0x6b, 0x9f, 0x52, 0xb6, 0x95, 0xe1, 0x69, - 0x18, 0x6c, 0x60, 0x77, 0xcf, 0x14, 0x69, 0xd5, 0x7d, 0x6d, 0x82, 0x35, 0xa9, 0x8e, 0x0e, 0x36, - 0xa7, 0x0a, 0x46, 0xfb, 0x64, 0xa7, 0xbc, 0x90, 0x49, 0xd3, 0x22, 0xe9, 0x07, 0x12, 0x70, 0xb4, - 0x2d, 0xf3, 0xb6, 0x82, 0xde, 0x09, 0xa0, 0x1b, 0x56, 0xd3, 0x65, 0xa9, 0x13, 0xf3, 0xc4, 0x19, - 0x0a, 0xa1, 0xce, 0x8b, 0x78, 0xd9, 0xa6, 0xeb, 0xd5, 0x27, 0x69, 0x3d, 0x30, 0x10, 0x45, 0x78, - 0xd2, 0x17, 0x34, 0x45, 0x05, 0x9d, 0xea, 0xd0, 0xd3, 0x16, 0xc3, 0x7c, 0x04, 0x72, 0x5a, 0x5d, - 0xc7, 0x86, 0x5b, 0x71, 0x5c, 0x1b, 0xab, 0x0d, 0xdd, 0xa8, 0xd1, 0x50, 0x93, 0x2e, 0x0e, 0xec, - 0xaa, 0x75, 0x07, 0x2b, 0x63, 0xac, 0x7a, 0x53, 0xd4, 0x12, 0x0a, 0x6a, 0x40, 0x76, 0x80, 0x62, - 0x30, 0x44, 0xc1, 0xaa, 0x3d, 0x0a, 0xf9, 0xc3, 0x19, 0x18, 0x0e, 0x24, 0xe0, 0xe8, 0x2e, 0xc8, - 0xbe, 0xa8, 0x5e, 0x51, 0x2b, 0x62, 0x51, 0xc5, 0x34, 0x31, 0x4c, 0x60, 0x1b, 0x7c, 0x61, 0xf5, - 0x08, 0x4c, 0x52, 0x14, 0xb3, 0xe9, 0x62, 0xbb, 0xa2, 0xd5, 0x55, 0xc7, 0xa1, 0x4a, 0x4b, 0x53, - 0x54, 0x44, 0xea, 0xd6, 0x49, 0xd5, 0x82, 0xa8, 0x41, 0x67, 0x61, 0x82, 0x52, 0x34, 0x9a, 0x75, - 0x57, 0xb7, 0xea, 0xb8, 0x42, 0x96, 0x79, 0x0e, 0x0d, 0x39, 0x9e, 0x64, 0xe3, 0x04, 0x63, 0x95, - 0x23, 0x10, 0x89, 0x1c, 0xb4, 0x08, 0x77, 0x52, 0xb2, 0x1a, 0x36, 0xb0, 0xad, 0xba, 0xb8, 0x82, - 0x5f, 0x6a, 0xaa, 0x75, 0xa7, 0xa2, 0x1a, 0xd5, 0xca, 0x9e, 0xea, 0xec, 0xe5, 0x27, 0x09, 0x83, - 0x52, 0x22, 0x2f, 0x29, 0x27, 0x08, 0xe2, 0x12, 0xc7, 0x2b, 0x53, 0xb4, 0x79, 0xa3, 0x7a, 0x51, - 0x75, 0xf6, 0x50, 0x11, 0x8e, 0x51, 0x2e, 0x8e, 0x6b, 0xeb, 0x46, 0xad, 0xa2, 0xed, 0x61, 0x6d, - 0xbf, 0xd2, 0x74, 0x77, 0x9f, 0xcc, 0xdf, 0x11, 0x6c, 0x9f, 0x4a, 0xb8, 0x49, 0x71, 0x16, 0x08, - 0xca, 0xb6, 0xbb, 0xfb, 0x24, 0xda, 0x84, 0x2c, 0x19, 0x8c, 0x86, 0xfe, 0x32, 0xae, 0xec, 0x9a, - 0x36, 0x8d, 0xa1, 0xa3, 0x6d, 0x5c, 0x53, 0x40, 0x83, 0xb3, 0xeb, 0x9c, 0x60, 0xd5, 0xac, 0xe2, - 0xe2, 0xc0, 0xe6, 0x46, 0xb9, 0xbc, 0xa8, 0x0c, 0x0b, 0x2e, 0x17, 0x4c, 0x9b, 0x18, 0x54, 0xcd, - 0xf4, 0x14, 0x3c, 0xcc, 0x0c, 0xaa, 0x66, 0x0a, 0xf5, 0x9e, 0x85, 0x09, 0x4d, 0x63, 0x7d, 0xd6, - 0xb5, 0x0a, 0x5f, 0x8c, 0x39, 0xf9, 0x5c, 0x48, 0x59, 0x9a, 0xb6, 0xc4, 0x10, 0xb8, 0x8d, 0x3b, - 0xe8, 0x29, 0x38, 0xea, 0x2b, 0x2b, 0x48, 0x38, 0xde, 0xd2, 0xcb, 0x28, 0xe9, 0x59, 0x98, 0xb0, - 0x0e, 0x5a, 0x09, 0x51, 0xa8, 0x45, 0xeb, 0x20, 0x4a, 0xf6, 0x04, 0x4c, 0x5a, 0x7b, 0x56, 0x2b, - 0xdd, 0xe9, 0x20, 0x1d, 0xb2, 0xf6, 0xac, 0x28, 0xe1, 0xbd, 0x74, 0x65, 0x6e, 0x63, 0x4d, 0x75, - 0x71, 0x35, 0x7f, 0x3c, 0x88, 0x1e, 0xa8, 0x40, 0xb3, 0x90, 0xd3, 0xb4, 0x0a, 0x36, 0xd4, 0x9d, - 0x3a, 0xae, 0xa8, 0x36, 0x36, 0x54, 0x27, 0x3f, 0x4d, 0x91, 0x53, 0xae, 0xdd, 0xc4, 0xca, 0xa8, - 0xa6, 0x95, 0x69, 0xe5, 0x3c, 0xad, 0x43, 0xa7, 0x61, 0xdc, 0xdc, 0x79, 0x51, 0x63, 0x16, 0x59, - 0xb1, 0x6c, 0xbc, 0xab, 0x5f, 0xcb, 0xdf, 0x43, 0xd5, 0x3b, 0x46, 0x2a, 0xa8, 0x3d, 0x6e, 0x50, - 0x30, 0x7a, 0x00, 0x72, 0x9a, 0xb3, 0xa7, 0xda, 0x16, 0x75, 0xc9, 0x8e, 0xa5, 0x6a, 0x38, 0x7f, - 0x2f, 0x43, 0x65, 0xf0, 0x35, 0x01, 0x26, 0x33, 0xc2, 0xb9, 0xaa, 0xef, 0xba, 0x82, 0xe3, 0xfd, - 0x6c, 0x46, 0x50, 0x18, 0xe7, 0x76, 0x0a, 0x72, 0x44, 0x13, 0xa1, 0x86, 0x4f, 0x51, 0xb4, 0x51, - 0x6b, 0xcf, 0x0a, 0xb6, 0x7b, 0x37, 0x8c, 0x10, 0x4c, 0xbf, 0xd1, 0x07, 0x58, 0xe2, 0x66, 0xed, - 0x05, 0x5a, 0x7c, 0x1c, 0x8e, 0x11, 0xa4, 0x06, 0x76, 0xd5, 0xaa, 0xea, 0xaa, 0x01, 0xec, 0x87, - 0x28, 0x36, 0x51, 0xfb, 0x2a, 0xaf, 0x0c, 0xc9, 0x69, 0x37, 0x77, 0x0e, 0x3c, 0xc3, 0x7a, 0x98, - 0xc9, 0x49, 0x60, 0xc2, 0xb4, 0x6e, 0x5b, 0x72, 0x2e, 0x17, 0x21, 0x1b, 0xb4, 0x7b, 0x94, 0x01, - 0x66, 0xf9, 0x39, 0x89, 0x24, 0x41, 0x0b, 0xeb, 0x8b, 0x24, 0x7d, 0x79, 0x6b, 0x39, 0x97, 0x20, - 0x69, 0xd4, 0xca, 0xf2, 0x56, 0xb9, 0xa2, 0x6c, 0xaf, 0x6d, 0x2d, 0xaf, 0x96, 0x73, 0xc9, 0x40, - 0x62, 0xff, 0x6c, 0x2a, 0x7d, 0x5f, 0xee, 0x7e, 0xf9, 0x1b, 0x09, 0x18, 0x0d, 0xaf, 0xd4, 0xd0, - 0x9b, 0xe0, 0xb8, 0xd8, 0x56, 0x71, 0xb0, 0x5b, 0xb9, 0xaa, 0xdb, 0x74, 0x42, 0x36, 0x54, 0x16, - 0x1c, 0x3d, 0xfb, 0x99, 0xe4, 0x58, 0x9b, 0xd8, 0x7d, 0x5e, 0xb7, 0xc9, 0x74, 0x6b, 0xa8, 0x2e, - 0x5a, 0x81, 0x69, 0xc3, 0xac, 0x38, 0xae, 0x6a, 0x54, 0x55, 0xbb, 0x5a, 0xf1, 0x37, 0xb4, 0x2a, - 0xaa, 0xa6, 0x61, 0xc7, 0x31, 0x59, 0x20, 0xf4, 0xb8, 0x9c, 0x34, 0xcc, 0x4d, 0x8e, 0xec, 0x47, - 0x88, 0x79, 0x8e, 0x1a, 0x31, 0xdf, 0x64, 0x27, 0xf3, 0xbd, 0x03, 0x32, 0x0d, 0xd5, 0xaa, 0x60, - 0xc3, 0xb5, 0x0f, 0x68, 0x7e, 0x9e, 0x56, 0xd2, 0x0d, 0xd5, 0x2a, 0x93, 0xf2, 0x0f, 0x65, 0x99, - 0xf4, 0x6c, 0x2a, 0x9d, 0xce, 0x65, 0x9e, 0x4d, 0xa5, 0x33, 0x39, 0x90, 0x5f, 0x4f, 0x42, 0x36, - 0x98, 0xaf, 0x93, 0xe5, 0x8f, 0x46, 0x23, 0x96, 0x44, 0x7d, 0xda, 0xdd, 0x5d, 0xb3, 0xfb, 0xd9, - 0x05, 0x12, 0xca, 0x8a, 0x83, 0x2c, 0x39, 0x56, 0x18, 0x25, 0x49, 0x23, 0x88, 0xb1, 0x61, 0x96, - 0x8c, 0xa4, 0x15, 0x5e, 0x42, 0x4b, 0x30, 0xf8, 0xa2, 0x43, 0x79, 0x0f, 0x52, 0xde, 0xf7, 0x74, - 0xe7, 0xfd, 0xec, 0x26, 0x65, 0x9e, 0x79, 0x76, 0xb3, 0xb2, 0xb6, 0xae, 0xac, 0xce, 0xaf, 0x28, - 0x9c, 0x1c, 0x9d, 0x80, 0x54, 0x5d, 0x7d, 0xf9, 0x20, 0x1c, 0xf4, 0x28, 0xa8, 0xd7, 0x41, 0x38, - 0x01, 0xa9, 0xab, 0x58, 0xdd, 0x0f, 0x87, 0x1a, 0x0a, 0xba, 0x8d, 0x93, 0x61, 0x0e, 0x06, 0xa8, - 0xbe, 0x10, 0x00, 0xd7, 0x58, 0xee, 0x08, 0x4a, 0x43, 0x6a, 0x61, 0x5d, 0x21, 0x13, 0x22, 0x07, - 0x59, 0x06, 0xad, 0x6c, 0x2c, 0x97, 0x17, 0xca, 0xb9, 0x84, 0x7c, 0x16, 0x06, 0x99, 0x12, 0xc8, - 0x64, 0xf1, 0xd4, 0x90, 0x3b, 0xc2, 0x8b, 0x9c, 0x87, 0x24, 0x6a, 0xb7, 0x57, 0x4b, 0x65, 0x25, - 0x97, 0x08, 0x0f, 0x75, 0x2a, 0x37, 0x20, 0x3b, 0x90, 0x0d, 0xe6, 0xe1, 0x3f, 0x9c, 0xc5, 0xf8, - 0x97, 0x24, 0x18, 0x0e, 0xe4, 0xd5, 0x24, 0x21, 0x52, 0xeb, 0x75, 0xf3, 0x6a, 0x45, 0xad, 0xeb, - 0xaa, 0xc3, 0x4d, 0x03, 0x28, 0x68, 0x9e, 0x40, 0x7a, 0x1d, 0xba, 0x1f, 0xd2, 0x14, 0x19, 0xc8, - 0x0d, 0xca, 0x9f, 0x90, 0x20, 0x17, 0x4d, 0x6c, 0x23, 0x62, 0x4a, 0x3f, 0x4a, 0x31, 0xe5, 0x8f, - 0x4b, 0x30, 0x1a, 0xce, 0x66, 0x23, 0xe2, 0xdd, 0xf5, 0x23, 0x15, 0xef, 0x0f, 0x12, 0x30, 0x12, - 0xca, 0x61, 0x7b, 0x95, 0xee, 0x25, 0x18, 0xd7, 0xab, 0xb8, 0x61, 0x99, 0x2e, 0x36, 0xb4, 0x83, - 0x4a, 0x1d, 0x5f, 0xc1, 0xf5, 0xbc, 0x4c, 0x9d, 0xc6, 0x5c, 0xf7, 0x2c, 0x79, 0x76, 0xd9, 0xa7, - 0x5b, 0x21, 0x64, 0xc5, 0x89, 0xe5, 0xc5, 0xf2, 0xea, 0xc6, 0xfa, 0x56, 0x79, 0x6d, 0xe1, 0x2d, - 0x95, 0xed, 0xb5, 0x4b, 0x6b, 0xeb, 0xcf, 0xaf, 0x29, 0x39, 0x3d, 0x82, 0x76, 0x1b, 0xa7, 0xfd, - 0x06, 0xe4, 0xa2, 0x42, 0xa1, 0xe3, 0xd0, 0x4e, 0xac, 0xdc, 0x11, 0x34, 0x01, 0x63, 0x6b, 0xeb, - 0x95, 0xcd, 0xe5, 0xc5, 0x72, 0xa5, 0x7c, 0xe1, 0x42, 0x79, 0x61, 0x6b, 0x93, 0xed, 0x7b, 0x78, - 0xd8, 0x5b, 0xa1, 0x09, 0x2e, 0xbf, 0x96, 0x84, 0x89, 0x36, 0x92, 0xa0, 0x79, 0xbe, 0x62, 0x61, - 0x8b, 0xa8, 0x87, 0x7b, 0x91, 0x7e, 0x96, 0xe4, 0x0c, 0x1b, 0xaa, 0xed, 0xf2, 0x05, 0xce, 0x03, - 0x40, 0xb4, 0x64, 0xb8, 0xfa, 0xae, 0x8e, 0x6d, 0xbe, 0x9f, 0xc4, 0x96, 0x31, 0x63, 0x3e, 0x9c, - 0x6d, 0x29, 0x3d, 0x04, 0xc8, 0x32, 0x1d, 0xdd, 0xd5, 0xaf, 0xe0, 0x8a, 0x6e, 0x88, 0xcd, 0x27, - 0xb2, 0xac, 0x49, 0x29, 0x39, 0x51, 0xb3, 0x6c, 0xb8, 0x1e, 0xb6, 0x81, 0x6b, 0x6a, 0x04, 0x9b, - 0x38, 0xf3, 0xa4, 0x92, 0x13, 0x35, 0x1e, 0xf6, 0x5d, 0x90, 0xad, 0x9a, 0x4d, 0x92, 0xeb, 0x31, - 0x3c, 0x12, 0x3b, 0x24, 0x65, 0x98, 0xc1, 0x3c, 0x14, 0x9e, 0xc5, 0xfb, 0xbb, 0x5e, 0x59, 0x65, - 0x98, 0xc1, 0x18, 0xca, 0xfd, 0x30, 0xa6, 0xd6, 0x6a, 0x36, 0x61, 0x2e, 0x18, 0xb1, 0x75, 0xc9, - 0xa8, 0x07, 0xa6, 0x88, 0x85, 0x67, 0x21, 0x2d, 0xf4, 0x40, 0x42, 0x35, 0xd1, 0x44, 0xc5, 0x62, - 0x8b, 0xed, 0xc4, 0xa9, 0x8c, 0x92, 0x36, 0x44, 0xe5, 0x5d, 0x90, 0xd5, 0x9d, 0x8a, 0xbf, 0x89, - 0x9f, 0x98, 0x49, 0x9c, 0x4a, 0x2b, 0xc3, 0xba, 0xe3, 0x6d, 0x80, 0xca, 0x9f, 0x49, 0xc0, 0x68, - 0xf8, 0x10, 0x02, 0x2d, 0x42, 0xba, 0x6e, 0x6a, 0x2a, 0x35, 0x2d, 0x76, 0x02, 0x76, 0x2a, 0xe6, - 0xdc, 0x62, 0x76, 0x85, 0xe3, 0x2b, 0x1e, 0x65, 0xe1, 0xb7, 0x25, 0x48, 0x0b, 0x30, 0x3a, 0x06, - 0x29, 0x4b, 0x75, 0xf7, 0x28, 0xbb, 0x81, 0x52, 0x22, 0x27, 0x29, 0xb4, 0x4c, 0xe0, 0x8e, 0xa5, - 0x1a, 0xd4, 0x04, 0x38, 0x9c, 0x94, 0xc9, 0xb8, 0xd6, 0xb1, 0x5a, 0xa5, 0x8b, 0x1e, 0xb3, 0xd1, - 0xc0, 0x86, 0xeb, 0x88, 0x71, 0xe5, 0xf0, 0x05, 0x0e, 0x46, 0x0f, 0xc2, 0xb8, 0x6b, 0xab, 0x7a, - 0x3d, 0x84, 0x9b, 0xa2, 0xb8, 0x39, 0x51, 0xe1, 0x21, 0x17, 0xe1, 0x84, 0xe0, 0x5b, 0xc5, 0xae, - 0xaa, 0xed, 0xe1, 0xaa, 0x4f, 0x34, 0x48, 0x37, 0x37, 0x8e, 0x73, 0x84, 0x45, 0x5e, 0x2f, 0x68, - 0xe5, 0x6f, 0x48, 0x30, 0x2e, 0x96, 0x69, 0x55, 0x4f, 0x59, 0xab, 0x00, 0xaa, 0x61, 0x98, 0x6e, - 0x50, 0x5d, 0xad, 0xa6, 0xdc, 0x42, 0x37, 0x3b, 0xef, 0x11, 0x29, 0x01, 0x06, 0x85, 0x06, 0x80, - 0x5f, 0xd3, 0x51, 0x6d, 0xd3, 0x30, 0xcc, 0x4f, 0x98, 0xe8, 0x31, 0x25, 0x5b, 0xd8, 0x03, 0x03, - 0x91, 0xf5, 0x1c, 0x9a, 0x84, 0x81, 0x1d, 0x5c, 0xd3, 0x0d, 0xbe, 0x6f, 0xcc, 0x0a, 0x62, 0xfb, - 0x25, 0xe5, 0x6d, 0xbf, 0x94, 0x3e, 0x28, 0xc1, 0x84, 0x66, 0x36, 0xa2, 0xf2, 0x96, 0x72, 0x91, - 0xdd, 0x05, 0xe7, 0xa2, 0xf4, 0xd6, 0xa7, 0x6b, 0xba, 0xbb, 0xd7, 0xdc, 0x99, 0xd5, 0xcc, 0xc6, - 0x5c, 0xcd, 0xac, 0xab, 0x46, 0xcd, 0x3f, 0x67, 0xa5, 0x3f, 0xb4, 0x87, 0x6b, 0xd8, 0x78, 0xb8, - 0x66, 0x06, 0x4e, 0x5d, 0xcf, 0xfb, 0x3f, 0xff, 0x4c, 0x92, 0x7e, 0x21, 0x91, 0x5c, 0xda, 0x28, - 0x7d, 0x36, 0x51, 0x58, 0x62, 0xcd, 0x6d, 0x08, 0xf5, 0x28, 0x78, 0xb7, 0x8e, 0x35, 0xd2, 0x65, - 0xf8, 0xf6, 0x83, 0x30, 0x59, 0x33, 0x6b, 0x26, 0xe5, 0x38, 0x47, 0x7e, 0xf1, 0x93, 0xdb, 0x8c, - 0x07, 0x2d, 0xc4, 0x1e, 0xf3, 0x16, 0xd7, 0x60, 0x82, 0x23, 0x57, 0xe8, 0xd1, 0x11, 0x5b, 0xd8, - 0xa0, 0xae, 0xbb, 0x6a, 0xf9, 0x5f, 0xfb, 0x16, 0x0d, 0xe8, 0xca, 0x38, 0x27, 0x25, 0x75, 0x6c, - 0xed, 0x53, 0x54, 0xe0, 0x68, 0x88, 0x1f, 0x9b, 0xb6, 0xd8, 0x8e, 0xe1, 0xf8, 0x9b, 0x9c, 0xe3, - 0x44, 0x80, 0xe3, 0x26, 0x27, 0x2d, 0x2e, 0xc0, 0x48, 0x3f, 0xbc, 0xfe, 0x25, 0xe7, 0x95, 0xc5, - 0x41, 0x26, 0x4b, 0x30, 0x46, 0x99, 0x68, 0x4d, 0xc7, 0x35, 0x1b, 0xd4, 0x27, 0x76, 0x67, 0xf3, - 0x5b, 0xdf, 0x62, 0xf3, 0x68, 0x94, 0x90, 0x2d, 0x78, 0x54, 0xc5, 0x22, 0xd0, 0xd3, 0xb2, 0x2a, - 0xd6, 0xea, 0x31, 0x1c, 0xbe, 0xc2, 0x05, 0xf1, 0xf0, 0x8b, 0x97, 0x61, 0x92, 0xfc, 0xa6, 0x2e, - 0x2b, 0x28, 0x49, 0xfc, 0x16, 0x5c, 0xfe, 0x1b, 0xef, 0x61, 0x53, 0x75, 0xc2, 0x63, 0x10, 0x90, - 0x29, 0x30, 0x8a, 0x35, 0xec, 0xba, 0xd8, 0x76, 0x2a, 0x6a, 0xbd, 0x9d, 0x78, 0x81, 0x3d, 0x8c, - 0xfc, 0xc7, 0xbe, 0x13, 0x1e, 0xc5, 0x25, 0x46, 0x39, 0x5f, 0xaf, 0x17, 0xb7, 0xe1, 0x78, 0x1b, - 0xab, 0xe8, 0x81, 0xe7, 0x6b, 0x9c, 0xe7, 0x64, 0x8b, 0x65, 0x10, 0xb6, 0x1b, 0x20, 0xe0, 0xde, - 0x58, 0xf6, 0xc0, 0xf3, 0xe7, 0x39, 0x4f, 0xc4, 0x69, 0xc5, 0x90, 0x12, 0x8e, 0xcf, 0xc2, 0xf8, - 0x15, 0x6c, 0xef, 0x98, 0x0e, 0xdf, 0x37, 0xea, 0x81, 0xdd, 0xc7, 0x39, 0xbb, 0x31, 0x4e, 0x48, - 0x37, 0x92, 0x08, 0xaf, 0xa7, 0x20, 0xbd, 0xab, 0x6a, 0xb8, 0x07, 0x16, 0xd7, 0x39, 0x8b, 0x21, - 0x82, 0x4f, 0x48, 0xe7, 0x21, 0x5b, 0x33, 0x79, 0xd4, 0x8a, 0x27, 0xff, 0x04, 0x27, 0x1f, 0x16, - 0x34, 0x9c, 0x85, 0x65, 0x5a, 0xcd, 0x3a, 0x09, 0x69, 0xf1, 0x2c, 0xfe, 0xa6, 0x60, 0x21, 0x68, - 0x38, 0x8b, 0x3e, 0xd4, 0xfa, 0x49, 0xc1, 0xc2, 0x09, 0xe8, 0xf3, 0x19, 0x18, 0x36, 0x8d, 0xfa, - 0x81, 0x69, 0xf4, 0x22, 0xc4, 0xa7, 0x38, 0x07, 0xe0, 0x24, 0x84, 0xc1, 0x79, 0xc8, 0xf4, 0x3a, - 0x10, 0x7f, 0xeb, 0x3b, 0x62, 0x7a, 0x88, 0x11, 0x58, 0x82, 0x31, 0xe1, 0xa0, 0x74, 0xd3, 0xe8, - 0x81, 0xc5, 0xdf, 0xe6, 0x2c, 0x46, 0x03, 0x64, 0xbc, 0x1b, 0x2e, 0x76, 0xdc, 0x1a, 0xee, 0x85, - 0xc9, 0x67, 0x44, 0x37, 0x38, 0x09, 0x57, 0xe5, 0x0e, 0x36, 0xb4, 0xbd, 0xde, 0x38, 0xfc, 0x92, - 0x50, 0xa5, 0xa0, 0x21, 0x2c, 0x16, 0x60, 0xa4, 0xa1, 0xda, 0xce, 0x9e, 0x5a, 0xef, 0x69, 0x38, - 0xfe, 0x0e, 0xe7, 0x91, 0xf5, 0x88, 0xb8, 0x46, 0x9a, 0x46, 0x3f, 0x6c, 0x3e, 0x2b, 0x34, 0x12, - 0x20, 0xe3, 0x53, 0xcf, 0x71, 0xe9, 0x26, 0x5b, 0x3f, 0xdc, 0x7e, 0x59, 0x4c, 0x3d, 0x46, 0xbb, - 0x1a, 0xe4, 0x78, 0x1e, 0x32, 0x8e, 0xfe, 0x72, 0x4f, 0x6c, 0x3e, 0x27, 0x46, 0x9a, 0x12, 0x10, - 0xe2, 0xb7, 0xc0, 0x89, 0xb6, 0x61, 0xa2, 0x07, 0x66, 0x7f, 0x97, 0x33, 0x3b, 0xd6, 0x26, 0x54, - 0x70, 0x97, 0xd0, 0x2f, 0xcb, 0xbf, 0x27, 0x5c, 0x02, 0x8e, 0xf0, 0xda, 0x20, 0xeb, 0x08, 0x47, - 0xdd, 0xed, 0x4f, 0x6b, 0xbf, 0x22, 0xb4, 0xc6, 0x68, 0x43, 0x5a, 0xdb, 0x82, 0x63, 0x9c, 0x63, - 0x7f, 0xe3, 0xfa, 0xab, 0xc2, 0xb1, 0x32, 0xea, 0xed, 0xf0, 0xe8, 0xbe, 0x0d, 0x0a, 0x9e, 0x3a, - 0x45, 0xc2, 0xea, 0x54, 0x1a, 0xaa, 0xd5, 0x03, 0xe7, 0x5f, 0xe3, 0x9c, 0x85, 0xc7, 0xf7, 0x32, - 0x5e, 0x67, 0x55, 0xb5, 0x08, 0xf3, 0x17, 0x20, 0x2f, 0x98, 0x37, 0x0d, 0x1b, 0x6b, 0x66, 0xcd, - 0xd0, 0x5f, 0xc6, 0xd5, 0x1e, 0x58, 0xff, 0x7a, 0x64, 0xa8, 0xb6, 0x03, 0xe4, 0x84, 0xf3, 0x32, - 0xe4, 0xbc, 0x5c, 0xa5, 0xa2, 0x37, 0x2c, 0xd3, 0x76, 0x63, 0x38, 0x7e, 0x5e, 0x8c, 0x94, 0x47, - 0xb7, 0x4c, 0xc9, 0x8a, 0x65, 0x60, 0x27, 0xcf, 0xbd, 0x9a, 0xe4, 0x17, 0x38, 0xa3, 0x11, 0x9f, - 0x8a, 0x3b, 0x0e, 0xcd, 0x6c, 0x58, 0xaa, 0xdd, 0x8b, 0xff, 0xfb, 0xfb, 0xc2, 0x71, 0x70, 0x12, - 0xee, 0x38, 0xdc, 0x03, 0x0b, 0x93, 0x68, 0xdf, 0x03, 0x87, 0x2f, 0x0a, 0xc7, 0x21, 0x68, 0x38, - 0x0b, 0x91, 0x30, 0xf4, 0xc0, 0xe2, 0x1f, 0x08, 0x16, 0x82, 0x86, 0xb0, 0x78, 0xce, 0x0f, 0xb4, - 0x36, 0xae, 0xe9, 0x8e, 0x6b, 0xb3, 0x34, 0xb9, 0x3b, 0xab, 0x7f, 0xf8, 0x9d, 0x70, 0x12, 0xa6, - 0x04, 0x48, 0x89, 0x27, 0xe2, 0xdb, 0xae, 0x74, 0x15, 0x15, 0x2f, 0xd8, 0x6f, 0x08, 0x4f, 0x14, - 0x20, 0x23, 0xb2, 0x05, 0x32, 0x44, 0xa2, 0x76, 0x8d, 0xac, 0x1d, 0x7a, 0x60, 0xf7, 0x8f, 0x22, - 0xc2, 0x6d, 0x0a, 0x5a, 0xc2, 0x33, 0x90, 0xff, 0x34, 0x8d, 0x7d, 0x7c, 0xd0, 0x93, 0x75, 0xfe, - 0xe3, 0x48, 0xfe, 0xb3, 0xcd, 0x28, 0x99, 0x0f, 0x19, 0x8b, 0xe4, 0x53, 0x28, 0xee, 0x9e, 0x51, - 0xfe, 0xa7, 0xbe, 0xc7, 0xfb, 0x1b, 0x4e, 0xa7, 0x8a, 0x2b, 0xc4, 0xc8, 0xc3, 0x49, 0x4f, 0x3c, - 0xb3, 0xf7, 0x7c, 0xcf, 0xb3, 0xf3, 0x50, 0xce, 0x53, 0xbc, 0x00, 0x23, 0xa1, 0x84, 0x27, 0x9e, - 0xd5, 0x7b, 0x39, 0xab, 0x6c, 0x30, 0xdf, 0x29, 0x9e, 0x85, 0x14, 0x49, 0x5e, 0xe2, 0xc9, 0xff, - 0x32, 0x27, 0xa7, 0xe8, 0xc5, 0x37, 0x43, 0x5a, 0x24, 0x2d, 0xf1, 0xa4, 0xef, 0xe3, 0xa4, 0x1e, - 0x09, 0x21, 0x17, 0x09, 0x4b, 0x3c, 0xf9, 0x5f, 0x11, 0xe4, 0x82, 0x84, 0x90, 0xf7, 0xae, 0xc2, - 0x2f, 0xfd, 0x74, 0x8a, 0x07, 0x1d, 0xa1, 0xbb, 0xf3, 0x30, 0xc4, 0x33, 0x95, 0x78, 0xea, 0x0f, - 0xf0, 0xc6, 0x05, 0x45, 0xf1, 0x09, 0x18, 0xe8, 0x51, 0xe1, 0x3f, 0xc3, 0x49, 0x19, 0x7e, 0x71, - 0x01, 0x86, 0x03, 0xd9, 0x49, 0x3c, 0xf9, 0x5f, 0xe3, 0xe4, 0x41, 0x2a, 0x22, 0x3a, 0xcf, 0x4e, - 0xe2, 0x19, 0x7c, 0x50, 0x88, 0xce, 0x29, 0x88, 0xda, 0x44, 0x62, 0x12, 0x4f, 0xfd, 0x21, 0xa1, - 0x75, 0x41, 0x52, 0x7c, 0x06, 0x32, 0x5e, 0xb0, 0x89, 0xa7, 0xff, 0x30, 0xa7, 0xf7, 0x69, 0x88, - 0x06, 0x02, 0xc1, 0x2e, 0x9e, 0xc5, 0x5f, 0x17, 0x1a, 0x08, 0x50, 0x91, 0x69, 0x14, 0x4d, 0x60, - 0xe2, 0x39, 0x7d, 0x44, 0x4c, 0xa3, 0x48, 0xfe, 0x42, 0x46, 0x93, 0xfa, 0xfc, 0x78, 0x16, 0x3f, - 0x2b, 0x46, 0x93, 0xe2, 0x13, 0x31, 0xa2, 0x19, 0x41, 0x3c, 0x8f, 0xbf, 0x21, 0xc4, 0x88, 0x24, - 0x04, 0xc5, 0x0d, 0x40, 0xad, 0xd9, 0x40, 0x3c, 0xbf, 0x8f, 0x72, 0x7e, 0xe3, 0x2d, 0xc9, 0x40, - 0xf1, 0x79, 0x38, 0xd6, 0x3e, 0x13, 0x88, 0xe7, 0xfa, 0xb1, 0xef, 0x45, 0xd6, 0x6e, 0xc1, 0x44, - 0xa0, 0xb8, 0xe5, 0x87, 0x94, 0x60, 0x16, 0x10, 0xcf, 0xf6, 0xb5, 0xef, 0x85, 0x1d, 0x77, 0x30, - 0x09, 0x28, 0xce, 0x03, 0xf8, 0x01, 0x38, 0x9e, 0xd7, 0xc7, 0x39, 0xaf, 0x00, 0x11, 0x99, 0x1a, - 0x3c, 0xfe, 0xc6, 0xd3, 0x5f, 0x17, 0x53, 0x83, 0x53, 0x90, 0xa9, 0x21, 0x42, 0x6f, 0x3c, 0xf5, - 0x27, 0xc4, 0xd4, 0x10, 0x24, 0xc4, 0xb2, 0x03, 0xd1, 0x2d, 0x9e, 0xc3, 0xa7, 0x84, 0x65, 0x07, - 0xa8, 0x8a, 0x6b, 0x30, 0xde, 0x12, 0x10, 0xe3, 0x59, 0xfd, 0x02, 0x67, 0x95, 0x8b, 0xc6, 0xc3, - 0x60, 0xf0, 0xe2, 0xc1, 0x30, 0x9e, 0xdb, 0xa7, 0x23, 0xc1, 0x8b, 0xc7, 0xc2, 0xe2, 0x79, 0x48, - 0x1b, 0xcd, 0x7a, 0x9d, 0x4c, 0x1e, 0xd4, 0xfd, 0x6e, 0x60, 0xfe, 0xbf, 0x7c, 0x9f, 0x6b, 0x47, - 0x10, 0x14, 0xcf, 0xc2, 0x00, 0x6e, 0xec, 0xe0, 0x6a, 0x1c, 0xe5, 0xb7, 0xbf, 0x2f, 0x1c, 0x26, - 0xc1, 0x2e, 0x3e, 0x03, 0xc0, 0xb6, 0x46, 0xe8, 0xf1, 0x60, 0x0c, 0xed, 0x7f, 0xfd, 0x3e, 0xbf, - 0x8c, 0xe3, 0x93, 0xf8, 0x0c, 0xd8, 0xd5, 0x9e, 0xee, 0x0c, 0xbe, 0x13, 0x66, 0x40, 0x47, 0xe4, - 0x29, 0x18, 0x7a, 0xd1, 0x31, 0x0d, 0x57, 0xad, 0xc5, 0x51, 0xff, 0x37, 0x4e, 0x2d, 0xf0, 0x89, - 0xc2, 0x1a, 0xa6, 0x8d, 0x5d, 0xb5, 0xe6, 0xc4, 0xd1, 0xfe, 0x77, 0x4e, 0xeb, 0x11, 0x10, 0x62, - 0x4d, 0x75, 0xdc, 0x5e, 0xfa, 0xfd, 0x47, 0x82, 0x58, 0x10, 0x10, 0xa1, 0xc9, 0xef, 0x7d, 0x7c, - 0x10, 0x47, 0xfb, 0x5d, 0x21, 0x34, 0xc7, 0x2f, 0xbe, 0x19, 0x32, 0xe4, 0x27, 0xbb, 0x61, 0x17, - 0x43, 0xfc, 0xc7, 0x9c, 0xd8, 0xa7, 0x20, 0x2d, 0x3b, 0x6e, 0xd5, 0xd5, 0xe3, 0x95, 0x7d, 0x93, - 0x8f, 0xb4, 0xc0, 0x2f, 0xce, 0xc3, 0xb0, 0xe3, 0x56, 0xab, 0x4d, 0x9e, 0x9f, 0xc6, 0x90, 0xff, - 0xc9, 0xf7, 0xbd, 0x2d, 0x0b, 0x8f, 0x86, 0x8c, 0xf6, 0xd5, 0x7d, 0xd7, 0x32, 0xe9, 0x11, 0x48, - 0x1c, 0x87, 0xef, 0x71, 0x0e, 0x01, 0x92, 0xe2, 0x02, 0x64, 0x49, 0x5f, 0x6c, 0x6c, 0x61, 0x7a, - 0x5e, 0x15, 0xc3, 0xe2, 0x4f, 0xb9, 0x02, 0x42, 0x44, 0xa5, 0x9f, 0xfc, 0xca, 0xeb, 0x53, 0xd2, - 0xd7, 0x5f, 0x9f, 0x92, 0xfe, 0xe0, 0xf5, 0x29, 0xe9, 0x43, 0xdf, 0x9c, 0x3a, 0xf2, 0xf5, 0x6f, - 0x4e, 0x1d, 0xf9, 0xdd, 0x6f, 0x4e, 0x1d, 0x69, 0xbf, 0x6d, 0x0c, 0x4b, 0xe6, 0x92, 0xc9, 0x36, - 0x8c, 0xdf, 0x2a, 0x87, 0xb6, 0x8b, 0x6b, 0xa6, 0xbf, 0x5b, 0xeb, 0x2d, 0x72, 0xe0, 0x4f, 0x25, - 0xb2, 0x60, 0x0e, 0xef, 0xe5, 0xaa, 0xc6, 0x41, 0x87, 0xb7, 0x3a, 0x85, 0xb6, 0x1b, 0xc3, 0xf2, - 0x9b, 0x20, 0x39, 0x6f, 0x1c, 0xa0, 0x13, 0xcc, 0xe7, 0x55, 0x9a, 0x76, 0x9d, 0xdf, 0xfc, 0x1a, - 0x22, 0xe5, 0x6d, 0xbb, 0x8e, 0x26, 0xfd, 0xeb, 0x99, 0xd2, 0xa9, 0x2c, 0xbf, 0x73, 0x59, 0x4c, - 0x7d, 0xf7, 0x53, 0xd3, 0x47, 0x4a, 0xfb, 0xd1, 0x1e, 0x7e, 0x29, 0xb6, 0x97, 0xe9, 0x79, 0xe3, - 0x80, 0x76, 0x72, 0x43, 0x7a, 0xeb, 0x00, 0x69, 0xc3, 0x11, 0x1b, 0xdb, 0x53, 0xd1, 0x8d, 0xed, - 0xe7, 0x71, 0xbd, 0x7e, 0xc9, 0x30, 0xaf, 0x1a, 0x5b, 0x04, 0x6d, 0x67, 0x90, 0x5d, 0x23, 0x86, - 0xbf, 0x9a, 0x80, 0xa9, 0x96, 0x3d, 0x6c, 0x3e, 0xf2, 0x9d, 0x1e, 0x2a, 0x15, 0x21, 0xbd, 0x28, - 0x0c, 0x2a, 0x0f, 0x43, 0x0e, 0xd6, 0x4c, 0xa3, 0xea, 0xd0, 0xae, 0x26, 0x15, 0x51, 0x24, 0x5d, - 0x35, 0x54, 0xc3, 0x74, 0xf8, 0xed, 0x48, 0x56, 0x28, 0xfd, 0xac, 0xd4, 0xdf, 0x38, 0x8e, 0x88, - 0x96, 0x44, 0x37, 0x4f, 0x77, 0xdb, 0xfb, 0xa7, 0x2a, 0xf0, 0xe4, 0x0f, 0xec, 0xf3, 0xf7, 0xaa, - 0x8e, 0x0f, 0x25, 0x60, 0x3a, 0xaa, 0x0e, 0x32, 0x8f, 0x1c, 0x57, 0x6d, 0x58, 0x9d, 0xf4, 0x71, - 0x1e, 0x32, 0x5b, 0x02, 0xa7, 0x6f, 0x85, 0xfc, 0x5c, 0x9f, 0x0a, 0x19, 0xf5, 0x9a, 0x12, 0x1a, - 0x79, 0x30, 0x5e, 0x23, 0x5e, 0x17, 0x0e, 0xa1, 0x92, 0x77, 0x27, 0xe1, 0x84, 0x66, 0x3a, 0x0d, - 0xd3, 0xa9, 0x30, 0x83, 0x67, 0x05, 0xae, 0x8c, 0x6c, 0xb0, 0xaa, 0x87, 0xe3, 0x90, 0x8b, 0x30, - 0x4a, 0x9d, 0x02, 0xdd, 0x08, 0xa6, 0x7e, 0x38, 0x36, 0x74, 0x7e, 0xf5, 0xdf, 0x0e, 0xd0, 0x49, - 0x34, 0xe2, 0x11, 0xd2, 0x9b, 0x2e, 0x5b, 0x30, 0xa9, 0x37, 0xac, 0x3a, 0xa6, 0x47, 0x62, 0x15, - 0xaf, 0x2e, 0x9e, 0xdf, 0xd7, 0x38, 0xbf, 0x09, 0x9f, 0x7c, 0x59, 0x50, 0x17, 0x57, 0x60, 0x5c, - 0xd5, 0x34, 0x6c, 0x85, 0x58, 0xc6, 0x38, 0x2c, 0x21, 0x60, 0x8e, 0x53, 0x7a, 0xdc, 0x4a, 0xcf, - 0x74, 0x1a, 0xdb, 0xb7, 0xde, 0x1b, 0x18, 0x34, 0x1b, 0xd7, 0xb0, 0xf1, 0xb0, 0x81, 0xdd, 0xab, - 0xa6, 0xbd, 0xcf, 0xd5, 0xfb, 0x30, 0x6b, 0x4a, 0x0c, 0xc2, 0x7b, 0x93, 0x30, 0xc5, 0x2a, 0xe6, - 0x76, 0x54, 0x07, 0xcf, 0x5d, 0x79, 0x74, 0x07, 0xbb, 0xea, 0xa3, 0x73, 0x9a, 0xa9, 0x8b, 0x69, - 0x3a, 0xc1, 0xc7, 0x85, 0xd4, 0xcf, 0xf2, 0xfa, 0x0e, 0x7e, 0x6a, 0x09, 0x52, 0x0b, 0xa6, 0x6e, - 0x10, 0x8b, 0xac, 0x62, 0xc3, 0x6c, 0x70, 0x2f, 0xc5, 0x0a, 0xe8, 0x6e, 0x18, 0x54, 0x1b, 0x66, - 0xd3, 0x70, 0xd9, 0x69, 0x5e, 0x69, 0xf8, 0x2b, 0x37, 0xa6, 0x8f, 0xfc, 0xde, 0x8d, 0xe9, 0xe4, - 0xb2, 0xe1, 0x2a, 0xbc, 0xaa, 0x98, 0x7a, 0xe3, 0x93, 0xd3, 0x92, 0xfc, 0x2c, 0x0c, 0x2d, 0x62, - 0xed, 0x30, 0xbc, 0x16, 0xb1, 0x16, 0xe1, 0xf5, 0x00, 0xa4, 0x97, 0x0d, 0x97, 0xdd, 0x20, 0xbe, - 0x13, 0x92, 0xba, 0xc1, 0x2e, 0xa5, 0x45, 0xda, 0x27, 0x70, 0x82, 0xba, 0x88, 0x35, 0x0f, 0xb5, - 0x8a, 0xb5, 0x28, 0x2a, 0x61, 0x4f, 0xe0, 0xa5, 0xc5, 0xdf, 0xfd, 0x4f, 0x53, 0x47, 0x5e, 0x79, - 0x7d, 0xea, 0x48, 0xc7, 0x91, 0x08, 0x46, 0x07, 0xae, 0x62, 0x3e, 0x04, 0x4e, 0x75, 0x7f, 0xce, - 0x0d, 0xcd, 0x85, 0xcf, 0xa6, 0xe0, 0x4e, 0xfa, 0x78, 0xc4, 0x6e, 0xe8, 0x86, 0x3b, 0xa7, 0xd9, - 0x07, 0x96, 0x4b, 0xc3, 0x89, 0xb9, 0xcb, 0x47, 0x61, 0xdc, 0xaf, 0x9e, 0x65, 0xd5, 0x1d, 0xc6, - 0x60, 0x17, 0x06, 0x36, 0x08, 0x1d, 0x51, 0x9c, 0x6b, 0xba, 0x6a, 0x9d, 0xbb, 0x0b, 0x56, 0x20, - 0x50, 0xf6, 0xe0, 0x24, 0xc1, 0xa0, 0xba, 0x78, 0x6b, 0x52, 0xc7, 0xea, 0x2e, 0xbb, 0xb7, 0x9b, - 0xa4, 0x21, 0x24, 0x4d, 0x00, 0xf4, 0x8a, 0xee, 0x24, 0x0c, 0xa8, 0x4d, 0x76, 0xe4, 0x9c, 0x24, - 0xb1, 0x85, 0x16, 0xe4, 0x4b, 0x30, 0xc4, 0x8f, 0xb9, 0x50, 0x0e, 0x92, 0xfb, 0xf8, 0x80, 0xb6, - 0x93, 0x55, 0xc8, 0x4f, 0x34, 0x0b, 0x03, 0x54, 0x78, 0xfe, 0x20, 0x21, 0x3f, 0xdb, 0x22, 0xfd, - 0x2c, 0x15, 0x52, 0x61, 0x68, 0xf2, 0xb3, 0x90, 0x5e, 0x34, 0x1b, 0xba, 0x61, 0x86, 0xb9, 0x65, - 0x18, 0x37, 0x2a, 0xb3, 0xd5, 0xe4, 0x63, 0xad, 0xb0, 0x02, 0x3a, 0x06, 0x83, 0xec, 0x1e, 0x37, - 0x3f, 0x36, 0xe7, 0x25, 0x79, 0x01, 0x86, 0x28, 0xef, 0x75, 0x0b, 0x21, 0xfe, 0x02, 0x88, 0x5f, - 0x18, 0xa7, 0x6e, 0x81, 0xb3, 0x4f, 0xf8, 0xc2, 0x22, 0x48, 0x55, 0x55, 0x57, 0xe5, 0xfd, 0xa6, - 0xbf, 0xe5, 0xa7, 0x21, 0xcd, 0x99, 0x38, 0xe8, 0x0c, 0x24, 0x4d, 0xcb, 0xe1, 0x07, 0xdf, 0x85, - 0x4e, 0x5d, 0x59, 0xb7, 0x4a, 0x29, 0x62, 0x25, 0x0a, 0x41, 0x2e, 0x29, 0x1d, 0xcd, 0xe2, 0xc9, - 0x80, 0x59, 0x04, 0x86, 0x3c, 0xf0, 0x93, 0x0d, 0x69, 0x8b, 0x39, 0x78, 0xc6, 0xf2, 0xa9, 0x04, - 0x4c, 0x05, 0x6a, 0xaf, 0x60, 0x9b, 0xac, 0xf5, 0x98, 0x45, 0x71, 0x6b, 0x41, 0x01, 0x21, 0x79, - 0x7d, 0x07, 0x73, 0x79, 0x33, 0x24, 0xe7, 0x2d, 0x0b, 0x15, 0x20, 0xcd, 0x0e, 0xb8, 0x4d, 0x66, - 0x2f, 0x29, 0xc5, 0x2b, 0x93, 0x3a, 0xc7, 0xdc, 0x75, 0xaf, 0xaa, 0xb6, 0xf7, 0xd4, 0x49, 0x94, - 0xe5, 0xa7, 0x20, 0xb3, 0x60, 0x1a, 0x0e, 0x36, 0x9c, 0x26, 0x0d, 0x44, 0x3b, 0x75, 0x53, 0xdb, - 0xe7, 0x1c, 0x58, 0x81, 0x28, 0x5c, 0xb5, 0x2c, 0x4a, 0x99, 0x52, 0xc8, 0x4f, 0x36, 0x2f, 0x4b, - 0x9b, 0x1d, 0x55, 0xf4, 0x54, 0xff, 0x2a, 0xe2, 0x9d, 0xf4, 0x74, 0xf4, 0xbf, 0x25, 0x38, 0xd9, - 0x3a, 0xa1, 0xf6, 0xf1, 0x81, 0xd3, 0xef, 0x7c, 0x7a, 0x01, 0x32, 0x1b, 0xf4, 0xbd, 0xf1, 0x25, - 0x7c, 0x80, 0x0a, 0x30, 0x84, 0xab, 0x67, 0xce, 0x9e, 0x7d, 0xf4, 0x29, 0x66, 0xed, 0x17, 0x8f, - 0x28, 0x02, 0x80, 0xa6, 0x20, 0xe3, 0x60, 0xcd, 0x3a, 0x73, 0xf6, 0xdc, 0xfe, 0xa3, 0xcc, 0xbc, - 0x2e, 0x1e, 0x51, 0x7c, 0x50, 0x31, 0x4d, 0x7a, 0xfd, 0xc6, 0xa7, 0xa6, 0xa5, 0xd2, 0x00, 0x24, - 0x9d, 0x66, 0xe3, 0xb6, 0xda, 0xc8, 0x6b, 0x03, 0x30, 0x13, 0xa4, 0xa4, 0xd1, 0xfa, 0x8a, 0x5a, - 0xd7, 0xab, 0xaa, 0xff, 0x52, 0x3c, 0x17, 0xd0, 0x01, 0xc5, 0x68, 0xaf, 0x82, 0x42, 0x57, 0x4d, - 0xca, 0xbf, 0x2e, 0x41, 0xf6, 0xb2, 0xe0, 0xbc, 0x89, 0x5d, 0x74, 0x1e, 0xc0, 0x6b, 0x49, 0x4c, - 0x9b, 0x3b, 0x66, 0xa3, 0x6d, 0xcd, 0x7a, 0x34, 0x4a, 0x00, 0x1d, 0x3d, 0x41, 0x0d, 0xd1, 0x32, - 0x1d, 0xfe, 0xfc, 0x25, 0x86, 0xd4, 0x43, 0x46, 0x0f, 0x01, 0xa2, 0x1e, 0xae, 0x72, 0xc5, 0x74, - 0x75, 0xa3, 0x56, 0xb1, 0xcc, 0xab, 0xfc, 0x51, 0x61, 0x52, 0xc9, 0xd1, 0x9a, 0xcb, 0xb4, 0x62, - 0x83, 0xc0, 0x89, 0xd0, 0x19, 0x8f, 0x0b, 0xc9, 0xad, 0xd4, 0x6a, 0xd5, 0xc6, 0x8e, 0xc3, 0x9d, - 0x98, 0x28, 0xa2, 0xf3, 0x30, 0x64, 0x35, 0x77, 0x2a, 0xc2, 0x63, 0x0c, 0x9f, 0x39, 0xd9, 0x6e, - 0xfe, 0x0b, 0xfb, 0xe0, 0x1e, 0x60, 0xd0, 0x6a, 0xee, 0x10, 0x6b, 0xb9, 0x0b, 0xb2, 0x6d, 0x84, - 0x19, 0xbe, 0xe2, 0xcb, 0x41, 0x9f, 0xb9, 0xf3, 0x1e, 0x54, 0x2c, 0x5b, 0x37, 0x6d, 0xdd, 0x3d, - 0xa0, 0xb7, 0x57, 0x92, 0x4a, 0x4e, 0x54, 0x6c, 0x70, 0xb8, 0xbc, 0x0f, 0x63, 0x9b, 0x34, 0xb7, - 0xf0, 0x25, 0x3f, 0xeb, 0xcb, 0x27, 0xc5, 0xcb, 0xd7, 0x51, 0xb2, 0x44, 0x8b, 0x64, 0xa5, 0xe7, - 0x3a, 0x5a, 0xe7, 0x13, 0xfd, 0x5b, 0x67, 0x38, 0xda, 0xfd, 0xd1, 0x89, 0xd0, 0xe4, 0xe4, 0xa9, - 0x64, 0xc0, 0x7d, 0xf5, 0x6a, 0x98, 0x71, 0x29, 0x75, 0xa1, 0x7b, 0x50, 0x2d, 0xc4, 0xb8, 0xd1, - 0x42, 0xec, 0x14, 0x92, 0x9f, 0x82, 0x91, 0x0d, 0xd5, 0x76, 0x37, 0xb1, 0x7b, 0x11, 0xab, 0x55, - 0x6c, 0x87, 0xa3, 0xee, 0x88, 0x88, 0xba, 0x08, 0x52, 0x34, 0xb4, 0xb2, 0xa8, 0x43, 0x7f, 0xcb, - 0x7b, 0x90, 0xa2, 0x37, 0xd8, 0xbc, 0x88, 0xcc, 0x29, 0x58, 0x44, 0x26, 0xbe, 0xf4, 0xc0, 0xc5, - 0x8e, 0x58, 0xd0, 0xd1, 0x02, 0x7a, 0x5c, 0xc4, 0xd5, 0x64, 0xf7, 0xb8, 0xca, 0x0d, 0x91, 0x47, - 0xd7, 0x3a, 0x0c, 0x95, 0x88, 0x2b, 0x5e, 0x5e, 0xf4, 0x04, 0x91, 0x7c, 0x41, 0xd0, 0x2a, 0x8c, - 0x59, 0xaa, 0xed, 0xd2, 0xab, 0xfb, 0x7b, 0xb4, 0x17, 0xdc, 0xd6, 0xa7, 0x5b, 0x67, 0x5e, 0xa8, - 0xb3, 0xbc, 0x95, 0x11, 0x2b, 0x08, 0x94, 0xff, 0x30, 0x05, 0x83, 0x5c, 0x19, 0x6f, 0x86, 0x21, - 0xae, 0x56, 0x6e, 0x9d, 0x77, 0xce, 0xb6, 0x06, 0xa6, 0x59, 0x2f, 0x80, 0x70, 0x7e, 0x82, 0x06, - 0xdd, 0x07, 0x69, 0x6d, 0x4f, 0xd5, 0x8d, 0x8a, 0x5e, 0x15, 0x69, 0xde, 0xeb, 0x37, 0xa6, 0x87, - 0x16, 0x08, 0x6c, 0x79, 0x51, 0x19, 0xa2, 0x95, 0xcb, 0x55, 0x92, 0x09, 0xec, 0x61, 0xbd, 0xb6, - 0xe7, 0xf2, 0x19, 0xc6, 0x4b, 0xe8, 0x49, 0x48, 0x11, 0x83, 0xe0, 0x0f, 0xbb, 0x0a, 0x2d, 0xc9, - 0xb6, 0xb7, 0xe2, 0x29, 0xa5, 0x49, 0xc3, 0x1f, 0xfa, 0xfd, 0x69, 0x49, 0xa1, 0x14, 0x68, 0x01, - 0x46, 0xea, 0xaa, 0xe3, 0x56, 0x68, 0x04, 0x23, 0xcd, 0x0f, 0x50, 0x16, 0x27, 0x5a, 0x15, 0xc2, - 0x15, 0xcb, 0x45, 0x1f, 0x26, 0x54, 0x0c, 0x54, 0x45, 0xa7, 0x20, 0x47, 0x99, 0x68, 0x66, 0xa3, - 0xa1, 0xbb, 0x2c, 0xb7, 0x1a, 0xa4, 0x7a, 0x1f, 0x25, 0xf0, 0x05, 0x0a, 0xa6, 0x19, 0xd6, 0x1d, - 0x90, 0xa1, 0x4f, 0x49, 0x28, 0x0a, 0xbb, 0x36, 0x99, 0x26, 0x00, 0x5a, 0x79, 0x3f, 0x8c, 0xf9, - 0xfe, 0x91, 0xa1, 0xa4, 0x19, 0x17, 0x1f, 0x4c, 0x11, 0x1f, 0x81, 0x49, 0x03, 0x5f, 0xa3, 0x17, - 0x39, 0x43, 0xd8, 0x19, 0x8a, 0x8d, 0x48, 0xdd, 0xe5, 0x30, 0xc5, 0xbd, 0x30, 0xaa, 0x09, 0xe5, - 0x33, 0x5c, 0xa0, 0xb8, 0x23, 0x1e, 0x94, 0xa2, 0x9d, 0x80, 0xb4, 0x6a, 0x59, 0x0c, 0x61, 0x98, - 0xfb, 0x47, 0xcb, 0xa2, 0x55, 0xa7, 0x61, 0x9c, 0xf6, 0xd1, 0xc6, 0x4e, 0xb3, 0xee, 0x72, 0x26, - 0x59, 0x8a, 0x33, 0x46, 0x2a, 0x14, 0x06, 0xa7, 0xb8, 0x77, 0xc3, 0x08, 0xbe, 0xa2, 0x57, 0xb1, - 0xa1, 0x61, 0x86, 0x37, 0x42, 0xf1, 0xb2, 0x02, 0x48, 0x91, 0x1e, 0x00, 0xcf, 0xef, 0x55, 0x84, - 0x4f, 0x1e, 0x65, 0xfc, 0x04, 0x7c, 0x9e, 0x81, 0xe5, 0x3c, 0xa4, 0x16, 0x55, 0x57, 0x25, 0x09, - 0x86, 0x7b, 0x8d, 0x05, 0x9a, 0xac, 0x42, 0x7e, 0xca, 0x6f, 0x24, 0x20, 0x75, 0xd9, 0x74, 0x31, - 0x7a, 0x2c, 0x90, 0x00, 0x8e, 0xb6, 0xb3, 0xe7, 0x4d, 0xbd, 0x66, 0xe0, 0xea, 0xaa, 0x53, 0x0b, - 0xbc, 0xfb, 0xf6, 0xcd, 0x29, 0x11, 0x32, 0xa7, 0x49, 0x18, 0xb0, 0xcd, 0xa6, 0x51, 0x15, 0x37, - 0x0e, 0x69, 0x01, 0x95, 0x21, 0xed, 0x59, 0x49, 0x2a, 0xce, 0x4a, 0xc6, 0x88, 0x95, 0x10, 0x1b, - 0xe6, 0x00, 0x65, 0x68, 0x87, 0x1b, 0x4b, 0x09, 0x32, 0x9e, 0xf3, 0xe2, 0xd6, 0xd6, 0x9b, 0xc1, - 0xfa, 0x64, 0x24, 0x98, 0x78, 0x63, 0xef, 0x29, 0x8f, 0x59, 0x5c, 0xce, 0xab, 0xe0, 0xda, 0x0b, - 0x99, 0x15, 0x7f, 0x83, 0x3e, 0x44, 0xfb, 0xe5, 0x9b, 0x15, 0x7b, 0x87, 0x7e, 0x12, 0x32, 0x8e, - 0x5e, 0x33, 0x54, 0xb7, 0x69, 0x63, 0x6e, 0x79, 0x3e, 0x40, 0xfe, 0x92, 0x04, 0x83, 0xcc, 0x92, - 0x03, 0x7a, 0x93, 0xda, 0xeb, 0x2d, 0xd1, 0x49, 0x6f, 0xc9, 0xc3, 0xeb, 0x6d, 0x1e, 0xc0, 0x13, - 0xc6, 0xe1, 0x4f, 0x83, 0xdb, 0x64, 0x0c, 0x4c, 0xc4, 0x4d, 0xbd, 0xc6, 0x27, 0x6a, 0x80, 0x48, - 0xfe, 0x8f, 0x12, 0x49, 0x62, 0x79, 0x3d, 0x9a, 0x87, 0x11, 0x21, 0x57, 0x65, 0xb7, 0xae, 0xd6, - 0xb8, 0xed, 0xdc, 0xd9, 0x51, 0xb8, 0x0b, 0x75, 0xb5, 0xa6, 0x0c, 0x73, 0x79, 0x48, 0xa1, 0xfd, - 0x38, 0x24, 0x3a, 0x8c, 0x43, 0x68, 0xe0, 0x93, 0x87, 0x1b, 0xf8, 0xd0, 0x10, 0xa5, 0xa2, 0x43, - 0xf4, 0xf9, 0x04, 0x5d, 0xcc, 0x58, 0xa6, 0xa3, 0xd6, 0x7f, 0x18, 0x33, 0xe2, 0x0e, 0xc8, 0x58, - 0x66, 0xbd, 0xc2, 0x6a, 0xd8, 0x4d, 0xdc, 0xb4, 0x65, 0xd6, 0x95, 0x96, 0x61, 0x1f, 0xb8, 0x45, - 0xd3, 0x65, 0xf0, 0x16, 0x68, 0x6d, 0x28, 0xaa, 0x35, 0x1b, 0xb2, 0x4c, 0x15, 0x3c, 0x96, 0x3d, - 0x42, 0x74, 0x40, 0x83, 0xa3, 0xd4, 0x1a, 0x7b, 0x99, 0xd8, 0x0c, 0x53, 0xe1, 0x78, 0x84, 0x82, - 0xb9, 0xfe, 0x76, 0xab, 0xe0, 0xa0, 0x59, 0x2a, 0x1c, 0x4f, 0xfe, 0x39, 0x09, 0x60, 0x85, 0x68, - 0x96, 0xf6, 0x97, 0x44, 0x21, 0x87, 0x8a, 0x50, 0x09, 0xb5, 0x3c, 0xd5, 0x69, 0xd0, 0x78, 0xfb, - 0x59, 0x27, 0x28, 0xf7, 0x02, 0x8c, 0xf8, 0xc6, 0xe8, 0x60, 0x21, 0xcc, 0x54, 0x97, 0xac, 0x7a, - 0x13, 0xbb, 0x4a, 0xf6, 0x4a, 0xa0, 0x24, 0xff, 0x33, 0x09, 0x32, 0x54, 0xa6, 0x55, 0xec, 0xaa, - 0xa1, 0x31, 0x94, 0x0e, 0x3f, 0x86, 0x77, 0x02, 0x30, 0x36, 0x8e, 0xfe, 0x32, 0xe6, 0x96, 0x95, - 0xa1, 0x90, 0x4d, 0xfd, 0x65, 0x8c, 0xce, 0x79, 0x0a, 0x4f, 0x76, 0x57, 0xb8, 0xc8, 0xba, 0xb9, - 0xda, 0x8f, 0xc3, 0x10, 0xfd, 0x94, 0xce, 0x35, 0x87, 0x27, 0xd2, 0x83, 0x46, 0xb3, 0xb1, 0x75, - 0xcd, 0x91, 0x5f, 0x84, 0xa1, 0xad, 0x6b, 0x6c, 0x6f, 0xe4, 0x0e, 0xc8, 0xd8, 0xa6, 0xc9, 0x63, - 0x32, 0xcb, 0x85, 0xd2, 0x04, 0x40, 0x43, 0x90, 0xd8, 0x0f, 0x48, 0xf8, 0xfb, 0x01, 0xfe, 0x86, - 0x46, 0xb2, 0xa7, 0x0d, 0x8d, 0xd3, 0xff, 0x4e, 0x82, 0xe1, 0x80, 0x7f, 0x40, 0x8f, 0xc2, 0xd1, - 0xd2, 0xca, 0xfa, 0xc2, 0xa5, 0xca, 0xf2, 0x62, 0xe5, 0xc2, 0xca, 0xfc, 0x92, 0xff, 0xd6, 0xa4, - 0x70, 0xec, 0xd5, 0xeb, 0x33, 0x28, 0x80, 0xbb, 0x6d, 0xec, 0x1b, 0xe6, 0x55, 0x03, 0xcd, 0xc1, - 0x64, 0x98, 0x64, 0xbe, 0xb4, 0x59, 0x5e, 0xdb, 0xca, 0x49, 0x85, 0xa3, 0xaf, 0x5e, 0x9f, 0x19, - 0x0f, 0x50, 0xcc, 0xef, 0x38, 0xd8, 0x70, 0x5b, 0x09, 0x16, 0xd6, 0x57, 0x57, 0x97, 0xb7, 0x72, - 0x89, 0x16, 0x02, 0xee, 0xb0, 0x1f, 0x80, 0xf1, 0x30, 0xc1, 0xda, 0xf2, 0x4a, 0x2e, 0x59, 0x40, - 0xaf, 0x5e, 0x9f, 0x19, 0x0d, 0x60, 0xaf, 0xe9, 0xf5, 0x42, 0xfa, 0xfd, 0x9f, 0x9e, 0x3a, 0xf2, - 0x4b, 0xbf, 0x38, 0x25, 0x91, 0x9e, 0x8d, 0x84, 0x7c, 0x04, 0x7a, 0x08, 0x8e, 0x6f, 0x2e, 0x2f, - 0xad, 0x95, 0x17, 0x2b, 0xab, 0x9b, 0x4b, 0x15, 0xf6, 0x8d, 0x0d, 0xaf, 0x77, 0x63, 0xaf, 0x5e, - 0x9f, 0x19, 0xe6, 0x5d, 0xea, 0x84, 0xbd, 0xa1, 0x94, 0x2f, 0xaf, 0x6f, 0x95, 0x73, 0x12, 0xc3, - 0xde, 0xb0, 0xf1, 0x15, 0xd3, 0x65, 0xdf, 0xda, 0x7a, 0x04, 0x4e, 0xb4, 0xc1, 0xf6, 0x3a, 0x36, - 0xfe, 0xea, 0xf5, 0x99, 0x91, 0x0d, 0x1b, 0xb3, 0xf9, 0x43, 0x29, 0x66, 0x21, 0xdf, 0x4a, 0xb1, - 0xbe, 0xb1, 0xbe, 0x39, 0xbf, 0x92, 0x9b, 0x29, 0xe4, 0x5e, 0xbd, 0x3e, 0x93, 0x15, 0xce, 0x90, - 0xe0, 0xfb, 0x3d, 0xbb, 0x9d, 0x2b, 0x9e, 0x3f, 0x79, 0x18, 0xee, 0xe1, 0x7b, 0x80, 0x8e, 0xab, - 0xee, 0xeb, 0x46, 0xcd, 0xdb, 0x69, 0xe5, 0x65, 0xbe, 0xf2, 0x39, 0xc6, 0x37, 0x5b, 0x05, 0xb4, - 0xeb, 0x7e, 0x6b, 0xa1, 0xf3, 0xc9, 0x52, 0x21, 0xe6, 0xf0, 0x25, 0x7e, 0xe9, 0xd4, 0x79, 0x6f, - 0xbe, 0x10, 0xb3, 0x63, 0x5c, 0xe8, 0xba, 0xb8, 0x93, 0x3f, 0x20, 0xc1, 0xe8, 0x45, 0xdd, 0x71, - 0x4d, 0x5b, 0xd7, 0xd4, 0x3a, 0x7d, 0x61, 0x72, 0xae, 0x57, 0xdf, 0x1a, 0x99, 0xea, 0xcf, 0xc0, - 0xe0, 0x15, 0xb5, 0xce, 0x9c, 0x5a, 0x92, 0x7e, 0x10, 0xa3, 0xbd, 0xfa, 0x7c, 0xd7, 0x26, 0x18, - 0x30, 0x32, 0xf9, 0x57, 0x12, 0x30, 0x46, 0x27, 0x83, 0xc3, 0x3e, 0x95, 0x44, 0xd6, 0x58, 0x25, - 0x48, 0xd9, 0xaa, 0xcb, 0x37, 0x0d, 0x4b, 0xb3, 0x7c, 0xe7, 0xf7, 0xbe, 0xf8, 0xdd, 0xdc, 0xd9, - 0x45, 0xac, 0x29, 0x94, 0x16, 0xbd, 0x1d, 0xd2, 0x0d, 0xf5, 0x5a, 0x85, 0xf2, 0x61, 0x2b, 0x97, - 0xf9, 0xfe, 0xf8, 0xdc, 0xbc, 0x31, 0x3d, 0x76, 0xa0, 0x36, 0xea, 0x45, 0x59, 0xf0, 0x91, 0x95, - 0xa1, 0x86, 0x7a, 0x8d, 0x88, 0x88, 0x2c, 0x18, 0x23, 0x50, 0x6d, 0x4f, 0x35, 0x6a, 0x98, 0x35, - 0x42, 0xb7, 0x40, 0x4b, 0x17, 0xfb, 0x6e, 0xe4, 0x98, 0xdf, 0x48, 0x80, 0x9d, 0xac, 0x8c, 0x34, - 0xd4, 0x6b, 0x0b, 0x14, 0x40, 0x5a, 0x2c, 0xa6, 0x3f, 0xfa, 0xc9, 0xe9, 0x23, 0x74, 0x37, 0xfd, - 0x1b, 0x12, 0x80, 0xaf, 0x31, 0xf4, 0x76, 0xc8, 0x69, 0x5e, 0x89, 0xd2, 0x3a, 0x7c, 0x0c, 0xef, - 0xef, 0x34, 0x16, 0x11, 0x7d, 0xb3, 0xd8, 0xfc, 0xf5, 0x1b, 0xd3, 0x92, 0x32, 0xa6, 0x45, 0x86, - 0xe2, 0x6d, 0x30, 0xdc, 0xb4, 0xaa, 0xaa, 0x8b, 0x2b, 0x74, 0x1d, 0x97, 0x88, 0x8d, 0xf3, 0x53, - 0x84, 0xd7, 0xcd, 0x1b, 0xd3, 0x88, 0x75, 0x2b, 0x40, 0x2c, 0xd3, 0xe8, 0x0f, 0x0c, 0x42, 0x08, - 0x02, 0x7d, 0xfa, 0xaa, 0x04, 0xc3, 0x8b, 0x81, 0x9b, 0x5e, 0x79, 0x18, 0x6a, 0x98, 0x86, 0xbe, - 0xcf, 0xed, 0x31, 0xa3, 0x88, 0x22, 0x2a, 0x40, 0x9a, 0x3d, 0xba, 0x73, 0x0f, 0xc4, 0x56, 0xa8, - 0x28, 0x13, 0xaa, 0xab, 0x78, 0xc7, 0xd1, 0xc5, 0x68, 0x28, 0xa2, 0x88, 0x2e, 0x40, 0xce, 0xc1, - 0x5a, 0xd3, 0xd6, 0xdd, 0x83, 0x8a, 0x66, 0x1a, 0xae, 0xaa, 0xb9, 0xec, 0xf9, 0x56, 0xe9, 0x8e, - 0x9b, 0x37, 0xa6, 0x8f, 0x33, 0x59, 0xa3, 0x18, 0xb2, 0x32, 0x26, 0x40, 0x0b, 0x0c, 0x42, 0x5a, - 0xa8, 0x62, 0x57, 0xd5, 0xeb, 0x4e, 0x9e, 0x1d, 0x0c, 0x89, 0x62, 0xa0, 0x2f, 0x9f, 0x1b, 0x0a, - 0x6e, 0x6c, 0x5d, 0x80, 0x9c, 0x69, 0x61, 0x3b, 0x94, 0x88, 0x4a, 0xd1, 0x96, 0xa3, 0x18, 0xb2, - 0x32, 0x26, 0x40, 0x22, 0x49, 0x75, 0xc9, 0x30, 0x8b, 0x85, 0xa2, 0xd5, 0xdc, 0xf1, 0xf7, 0xc3, - 0x26, 0x5b, 0x46, 0x63, 0xde, 0x38, 0x28, 0x3d, 0xe6, 0x73, 0x8f, 0xd2, 0xc9, 0x5f, 0xfb, 0xc2, - 0xc3, 0x93, 0xdc, 0x34, 0xfc, 0xfd, 0xa9, 0x4b, 0xf8, 0x80, 0x0c, 0x3f, 0x47, 0xdd, 0xa0, 0x98, - 0x24, 0xed, 0x7c, 0x51, 0xd5, 0xeb, 0xe2, 0x19, 0xb2, 0xc2, 0x4b, 0xa8, 0x08, 0x83, 0x8e, 0xab, - 0xba, 0x4d, 0x87, 0x7f, 0x1c, 0x4c, 0xee, 0x64, 0x6a, 0x25, 0xd3, 0xa8, 0x6e, 0x52, 0x4c, 0x85, - 0x53, 0xa0, 0x0b, 0x30, 0xe8, 0x9a, 0xfb, 0xd8, 0xe0, 0x2a, 0xec, 0x6b, 0x7e, 0xd3, 0x73, 0x2a, - 0x46, 0x4d, 0x34, 0x52, 0xc5, 0x75, 0x5c, 0x63, 0x69, 0xd5, 0x9e, 0x4a, 0x56, 0x1f, 0xf4, 0x1b, - 0x61, 0xa5, 0xe5, 0xbe, 0x27, 0x21, 0xd7, 0x54, 0x94, 0x9f, 0xac, 0x8c, 0x79, 0xa0, 0x4d, 0x0a, - 0x41, 0x97, 0x42, 0x57, 0x12, 0xf9, 0x87, 0xf4, 0xee, 0xee, 0xd4, 0xfd, 0x80, 0x4d, 0x8b, 0xfd, - 0x89, 0xe0, 0x85, 0xc6, 0x0b, 0x90, 0x6b, 0x1a, 0x3b, 0xa6, 0x41, 0xdf, 0x0a, 0xf2, 0xfc, 0x9e, - 0xac, 0xef, 0x92, 0x41, 0xe3, 0x88, 0x62, 0xc8, 0xca, 0x98, 0x07, 0xba, 0xc8, 0x56, 0x01, 0x55, - 0x18, 0xf5, 0xb1, 0xe8, 0x44, 0xcd, 0xc4, 0x4e, 0xd4, 0xbb, 0xf8, 0x44, 0x3d, 0x1a, 0x6d, 0xc5, - 0x9f, 0xab, 0x23, 0x1e, 0x90, 0x90, 0xa1, 0x8b, 0x00, 0xbe, 0x7b, 0xa0, 0xfb, 0x14, 0xc3, 0x9d, - 0x07, 0xde, 0xf7, 0x31, 0x62, 0xbd, 0xe7, 0xd3, 0xa2, 0x77, 0xc2, 0x44, 0x43, 0x37, 0x2a, 0x0e, - 0xae, 0xef, 0x56, 0xb8, 0x82, 0x09, 0x4b, 0xfa, 0xa9, 0x97, 0xd2, 0x4a, 0x7f, 0xf6, 0x70, 0xf3, - 0xc6, 0x74, 0x81, 0xbb, 0xd0, 0x56, 0x96, 0xb2, 0x32, 0xde, 0xd0, 0x8d, 0x4d, 0x5c, 0xdf, 0x5d, - 0xf4, 0x60, 0xc5, 0xec, 0xfb, 0x3f, 0x39, 0x7d, 0x84, 0x4f, 0xd7, 0x23, 0xf2, 0x39, 0xba, 0x77, - 0xce, 0xa7, 0x19, 0x76, 0xc8, 0x9a, 0x44, 0x15, 0x05, 0xba, 0xa3, 0x91, 0x51, 0x7c, 0x00, 0x9b, - 0xe6, 0xaf, 0xfc, 0x87, 0x19, 0x49, 0xfe, 0x9c, 0x04, 0x83, 0x8b, 0x97, 0x37, 0x54, 0xdd, 0x46, - 0xcb, 0x30, 0xee, 0x5b, 0x4e, 0x78, 0x92, 0x9f, 0xbc, 0x79, 0x63, 0x3a, 0x1f, 0x35, 0x2e, 0x6f, - 0x96, 0xfb, 0x06, 0x2c, 0xa6, 0xf9, 0x72, 0xa7, 0x85, 0x6b, 0x88, 0x55, 0x0b, 0x8a, 0xdc, 0xba, - 0xac, 0x8d, 0x74, 0xb3, 0x0c, 0x43, 0x4c, 0x5a, 0x07, 0x15, 0x61, 0xc0, 0x22, 0x3f, 0xf8, 0xc1, - 0xc0, 0x54, 0x47, 0xe3, 0xa5, 0xf8, 0xde, 0x46, 0x26, 0x21, 0x91, 0x3f, 0x9c, 0x00, 0x58, 0xbc, - 0x7c, 0x79, 0xcb, 0xd6, 0xad, 0x3a, 0x76, 0x6f, 0x65, 0xcf, 0xb7, 0xe0, 0x68, 0x60, 0x95, 0x64, - 0x6b, 0x91, 0xde, 0xcf, 0xdc, 0xbc, 0x31, 0x7d, 0x32, 0xda, 0xfb, 0x00, 0x9a, 0xac, 0x4c, 0xf8, - 0xeb, 0x25, 0x5b, 0x6b, 0xcb, 0xb5, 0xea, 0xb8, 0x1e, 0xd7, 0x64, 0x67, 0xae, 0x01, 0xb4, 0x20, - 0xd7, 0x45, 0xc7, 0x6d, 0xaf, 0xda, 0x4d, 0x18, 0xf6, 0x55, 0xe2, 0xa0, 0x45, 0x48, 0xbb, 0xfc, - 0x37, 0xd7, 0xb0, 0xdc, 0x59, 0xc3, 0x82, 0x8c, 0x6b, 0xd9, 0xa3, 0x94, 0xff, 0x4c, 0x02, 0xf0, - 0x6d, 0xf6, 0xc7, 0xd3, 0xc4, 0x88, 0x2b, 0xe7, 0x8e, 0x37, 0x79, 0xa8, 0x54, 0x8d, 0x53, 0x47, - 0xf4, 0xf9, 0xd3, 0x09, 0x98, 0xd8, 0x16, 0x9e, 0xe7, 0xc7, 0x5e, 0x07, 0x1b, 0x30, 0x84, 0x0d, - 0xd7, 0xd6, 0xa9, 0x12, 0xc8, 0x68, 0x3f, 0xd2, 0x69, 0xb4, 0xdb, 0xf4, 0x89, 0x7e, 0xec, 0x46, - 0x6c, 0xba, 0x73, 0x36, 0x11, 0x6d, 0x7c, 0x30, 0x09, 0xf9, 0x4e, 0x94, 0x68, 0x01, 0xc6, 0x34, - 0x1b, 0x53, 0x40, 0x25, 0xb8, 0xf3, 0x57, 0x2a, 0xf8, 0x99, 0x65, 0x04, 0x41, 0x56, 0x46, 0x05, - 0x84, 0x47, 0x8f, 0x1a, 0x90, 0xb4, 0x8f, 0x98, 0x1d, 0xc1, 0xea, 0x31, 0xcf, 0x93, 0x79, 0xf8, - 0x10, 0x8d, 0x84, 0x19, 0xb0, 0xf8, 0x31, 0xea, 0x43, 0x69, 0x00, 0x79, 0x09, 0xc6, 0x74, 0x43, - 0x77, 0x75, 0xb5, 0x5e, 0xd9, 0x51, 0xeb, 0xaa, 0xa1, 0x1d, 0x26, 0x6b, 0x66, 0x2e, 0x9f, 0x37, - 0x1b, 0x61, 0x27, 0x2b, 0xa3, 0x1c, 0x52, 0x62, 0x00, 0x74, 0x11, 0x86, 0x44, 0x53, 0xa9, 0x43, - 0x65, 0x1b, 0x82, 0x3c, 0x90, 0xe0, 0xfd, 0x4c, 0x12, 0xc6, 0x15, 0x5c, 0xfd, 0xff, 0x43, 0xd1, - 0xdf, 0x50, 0xac, 0x02, 0xb0, 0xe9, 0x4e, 0x1c, 0xec, 0x21, 0x46, 0x83, 0x38, 0x8c, 0x0c, 0xe3, - 0xb0, 0xe8, 0xb8, 0x81, 0xf1, 0xb8, 0x91, 0x80, 0x6c, 0x70, 0x3c, 0xfe, 0x82, 0x46, 0x25, 0xb4, - 0xec, 0x7b, 0xa2, 0x14, 0xff, 0x44, 0x68, 0x07, 0x4f, 0xd4, 0x62, 0xbd, 0xdd, 0x5d, 0xd0, 0xff, - 0x48, 0xc0, 0xe0, 0x86, 0x6a, 0xab, 0x0d, 0x07, 0x69, 0x2d, 0x99, 0xa6, 0xd8, 0x7e, 0x6c, 0xf9, - 0x10, 0x34, 0xdf, 0xed, 0x88, 0x49, 0x34, 0x3f, 0xda, 0x26, 0xd1, 0xfc, 0x09, 0x18, 0x25, 0xcb, - 0xe1, 0xc0, 0x15, 0x06, 0xa2, 0xed, 0x91, 0xd2, 0x09, 0x9f, 0x4b, 0xb8, 0x9e, 0xad, 0x96, 0x2f, - 0x07, 0xef, 0x30, 0x0c, 0x13, 0x0c, 0xdf, 0x31, 0x13, 0xf2, 0x63, 0xfe, 0xb2, 0x34, 0x50, 0x29, - 0x2b, 0xd0, 0x50, 0xaf, 0x95, 0x59, 0x01, 0xad, 0x00, 0xda, 0xf3, 0x76, 0x46, 0x2a, 0xbe, 0x3a, - 0x09, 0xfd, 0x9d, 0x37, 0x6f, 0x4c, 0x9f, 0x60, 0xf4, 0xad, 0x38, 0xb2, 0x32, 0xee, 0x03, 0x05, - 0xb7, 0xc7, 0x01, 0x48, 0xbf, 0x2a, 0xec, 0xfa, 0x1c, 0x5b, 0xee, 0x1c, 0xbd, 0x79, 0x63, 0x7a, - 0x9c, 0x71, 0xf1, 0xeb, 0x64, 0x25, 0x43, 0x0a, 0x8b, 0xe4, 0x77, 0xc0, 0xb2, 0x3f, 0x2d, 0x01, - 0xf2, 0x5d, 0xbe, 0x82, 0x1d, 0x8b, 0xac, 0xcf, 0x48, 0x22, 0x1e, 0xc8, 0x9a, 0xa5, 0xee, 0x89, - 0xb8, 0x4f, 0x2f, 0x12, 0xf1, 0xc0, 0x4c, 0x79, 0xca, 0x77, 0x8f, 0x09, 0x3e, 0x8e, 0x6d, 0xee, - 0x1a, 0xce, 0x2e, 0x98, 0xba, 0xa0, 0x6e, 0xf1, 0x87, 0x47, 0xe4, 0x7f, 0x25, 0xc1, 0x89, 0x16, - 0x8b, 0xf2, 0x84, 0xfd, 0x4b, 0x80, 0xec, 0x40, 0x25, 0xff, 0xde, 0x1b, 0x13, 0xba, 0x6f, 0x03, - 0x1d, 0xb7, 0x5b, 0xfc, 0xee, 0xad, 0xf3, 0xf0, 0xec, 0xb2, 0xe2, 0x3f, 0x95, 0x60, 0x32, 0xd8, - 0xbc, 0xd7, 0x91, 0x35, 0xc8, 0x06, 0x5b, 0xe7, 0x5d, 0xb8, 0xa7, 0x97, 0x2e, 0x70, 0xe9, 0x43, - 0xf4, 0xe8, 0x39, 0x7f, 0xba, 0xb2, 0xbd, 0xb3, 0x47, 0x7b, 0xd6, 0x86, 0x90, 0x29, 0x3a, 0x6d, - 0x53, 0x74, 0x3c, 0xfe, 0x8f, 0x04, 0xa9, 0x0d, 0xd3, 0xac, 0x23, 0x13, 0xc6, 0x0d, 0xd3, 0xad, - 0x10, 0xcb, 0xc2, 0xd5, 0x0a, 0x5f, 0x74, 0x33, 0x3f, 0xb8, 0xd0, 0x9f, 0x92, 0xbe, 0x7d, 0x63, - 0xba, 0x95, 0x95, 0x32, 0x66, 0x98, 0x6e, 0x89, 0x42, 0xb6, 0xd8, 0x92, 0xfc, 0x9d, 0x30, 0x12, - 0x6e, 0x8c, 0x79, 0xc9, 0xe7, 0xfb, 0x6e, 0x2c, 0xcc, 0xe6, 0xe6, 0x8d, 0xe9, 0x49, 0x7f, 0xc6, - 0x78, 0x60, 0x59, 0xc9, 0xee, 0x04, 0x5a, 0x67, 0xd7, 0xbb, 0xbe, 0xfb, 0xc9, 0x69, 0xe9, 0xf4, - 0x17, 0x25, 0x00, 0x7f, 0xe7, 0x01, 0x3d, 0x04, 0xc7, 0x4b, 0xeb, 0x6b, 0x8b, 0x95, 0xcd, 0xad, - 0xf9, 0xad, 0xed, 0xcd, 0xca, 0xf6, 0xda, 0xe6, 0x46, 0x79, 0x61, 0xf9, 0xc2, 0x72, 0x79, 0xd1, - 0xdf, 0x1e, 0x77, 0x2c, 0xac, 0xe9, 0xbb, 0x3a, 0xae, 0xa2, 0xfb, 0x60, 0x32, 0x8c, 0x4d, 0x4a, - 0xe5, 0xc5, 0x9c, 0x54, 0xc8, 0xbe, 0x7a, 0x7d, 0x26, 0xcd, 0x72, 0x31, 0x5c, 0x45, 0xa7, 0xe0, - 0x68, 0x2b, 0xde, 0xf2, 0xda, 0x52, 0x2e, 0x51, 0x18, 0x79, 0xf5, 0xfa, 0x4c, 0xc6, 0x4b, 0xda, - 0x90, 0x0c, 0x28, 0x88, 0xc9, 0xf9, 0x25, 0x0b, 0xf0, 0xea, 0xf5, 0x99, 0x41, 0xa6, 0xc0, 0x42, - 0xea, 0xfd, 0x9f, 0x9e, 0x3a, 0x52, 0xba, 0xd0, 0x71, 0x03, 0xfc, 0xa1, 0xae, 0xba, 0xbb, 0xe6, - 0x6d, 0x6a, 0x87, 0x77, 0xbd, 0xff, 0x78, 0xa8, 0xe3, 0xae, 0x77, 0x0d, 0x1b, 0xd8, 0xd1, 0x9d, - 0x43, 0xed, 0x7a, 0xf7, 0xb4, 0x93, 0x2e, 0xff, 0xce, 0x00, 0x64, 0x97, 0x58, 0x2b, 0x64, 0x20, - 0x30, 0x7a, 0x13, 0x0c, 0x5a, 0x34, 0x8c, 0x78, 0xc7, 0x68, 0x1d, 0x0c, 0x9e, 0x05, 0x1b, 0xef, - 0x2e, 0x17, 0x0b, 0x3d, 0x0e, 0xbf, 0xcc, 0xc1, 0xee, 0x98, 0xf9, 0xb7, 0xa6, 0xb2, 0x7d, 0xed, - 0xf7, 0xb0, 0x9c, 0x85, 0x6f, 0xad, 0x44, 0xf9, 0xc9, 0xec, 0x5e, 0xc8, 0x16, 0x81, 0xb0, 0xdb, - 0x61, 0xef, 0x95, 0xe0, 0x28, 0xc5, 0xf2, 0x03, 0x31, 0xc5, 0x14, 0xc9, 0xfe, 0xe9, 0x4e, 0x5d, - 0x58, 0x51, 0x1d, 0xff, 0xae, 0x07, 0xbb, 0xcf, 0x75, 0x0f, 0x0f, 0x84, 0x27, 0x03, 0x8d, 0x47, - 0xd9, 0xca, 0xca, 0x44, 0xbd, 0x85, 0xd2, 0x41, 0x4b, 0xa1, 0x0b, 0x7d, 0xa9, 0xfe, 0xb6, 0xda, - 0x83, 0x97, 0xfb, 0x9e, 0x85, 0x61, 0xdf, 0x97, 0x38, 0xfc, 0xff, 0x53, 0xf4, 0x1e, 0x3b, 0x82, - 0xc4, 0xe8, 0x7d, 0x12, 0x1c, 0xf5, 0xa3, 0x79, 0x90, 0x2d, 0xfb, 0x3f, 0x1e, 0x0f, 0xf6, 0xb1, - 0x10, 0x8a, 0x2a, 0xa7, 0x2d, 0x5f, 0x59, 0x99, 0x6c, 0xb6, 0x92, 0x92, 0x25, 0xd8, 0x48, 0xd0, - 0xb3, 0x3a, 0x79, 0xf1, 0xa9, 0xba, 0xde, 0x5d, 0x73, 0x98, 0x01, 0xfb, 0xdf, 0x02, 0x96, 0x69, - 0xbb, 0xb8, 0x4a, 0x37, 0xe4, 0xd2, 0x8a, 0x57, 0x96, 0xd7, 0x00, 0xb5, 0x0e, 0x6e, 0xf4, 0x02, - 0x63, 0xc6, 0xbf, 0xc0, 0x38, 0x09, 0x03, 0xc1, 0x2b, 0x7e, 0xac, 0x50, 0x4c, 0xbf, 0x9f, 0x87, - 0xcf, 0x5b, 0x3e, 0xe7, 0xff, 0x45, 0x02, 0x4e, 0x07, 0x8f, 0x87, 0x5e, 0x6a, 0x62, 0xfb, 0xc0, - 0x9b, 0xa2, 0x96, 0x5a, 0xd3, 0x8d, 0xe0, 0x1b, 0xa0, 0x13, 0xc1, 0x80, 0x4f, 0x71, 0x85, 0x9e, - 0x64, 0x03, 0x86, 0x37, 0xd4, 0x1a, 0x56, 0xf0, 0x4b, 0x4d, 0xec, 0xb8, 0x6d, 0x2e, 0x99, 0x1f, - 0x83, 0x41, 0x73, 0x77, 0x57, 0x1c, 0x69, 0xa7, 0x14, 0x5e, 0x22, 0x5d, 0xae, 0xeb, 0x0d, 0x9d, - 0xdd, 0x06, 0x4b, 0x29, 0xac, 0x80, 0xa6, 0x61, 0x58, 0x33, 0x9b, 0x06, 0x9f, 0x71, 0xf9, 0x94, - 0xf8, 0x00, 0x44, 0xd3, 0x60, 0x33, 0x4e, 0x7e, 0x06, 0xb2, 0xac, 0x3d, 0x1e, 0x71, 0x4f, 0x40, - 0x9a, 0x5e, 0xa7, 0xf2, 0x5b, 0x1d, 0x22, 0xe5, 0x4b, 0xec, 0x42, 0x3a, 0xe3, 0xc2, 0x1a, 0x66, - 0x85, 0x52, 0xa9, 0xa3, 0x2a, 0x4f, 0xc5, 0xbb, 0x06, 0xa6, 0x28, 0x4f, 0x8d, 0xbf, 0x39, 0x00, - 0x47, 0xf9, 0x09, 0x9d, 0x6a, 0xe9, 0x73, 0x7b, 0xae, 0x2b, 0x5e, 0x09, 0x01, 0x4f, 0x75, 0x55, - 0x4b, 0x97, 0x0f, 0x20, 0x75, 0xd1, 0x75, 0x2d, 0x74, 0x1a, 0x06, 0xec, 0x66, 0x1d, 0x8b, 0x1d, - 0x1f, 0x6f, 0x4f, 0x5e, 0xb5, 0xf4, 0x59, 0x82, 0xa0, 0x34, 0xeb, 0x58, 0x61, 0x28, 0xa8, 0x0c, - 0xd3, 0xbb, 0xcd, 0x7a, 0xfd, 0xa0, 0x52, 0xc5, 0xf4, 0x7f, 0xf7, 0x78, 0x5f, 0xbf, 0xc7, 0xd7, - 0x2c, 0x55, 0x7c, 0x43, 0x8f, 0xe8, 0xe6, 0x24, 0x45, 0x5b, 0xa4, 0x58, 0xe2, 0xcb, 0xf7, 0x65, - 0x81, 0x23, 0xff, 0x5e, 0x02, 0xd2, 0x82, 0x35, 0xbd, 0x21, 0x8e, 0xeb, 0x58, 0x73, 0x4d, 0x71, - 0x62, 0xe2, 0x95, 0x11, 0x82, 0x64, 0x8d, 0x0f, 0x51, 0xe6, 0xe2, 0x11, 0x85, 0x14, 0x08, 0xcc, - 0xbb, 0xb7, 0x4f, 0x60, 0x56, 0x93, 0x8c, 0x5a, 0xca, 0x32, 0xc5, 0xd2, 0xec, 0xe2, 0x11, 0x85, - 0x96, 0x50, 0x1e, 0x06, 0xc9, 0xcc, 0x70, 0xd9, 0x87, 0x09, 0x09, 0x9c, 0x97, 0xd1, 0x31, 0x18, - 0xb0, 0x54, 0x57, 0x63, 0x57, 0xea, 0x48, 0x05, 0x2b, 0xa2, 0x27, 0x60, 0x90, 0x3d, 0x08, 0x8d, - 0xfe, 0x63, 0x0c, 0xa2, 0x0c, 0xf6, 0xe5, 0x2d, 0x22, 0xf7, 0x86, 0xea, 0xba, 0xd8, 0x36, 0x08, - 0x43, 0x86, 0x8e, 0x10, 0xa4, 0x76, 0xcc, 0xea, 0x01, 0xff, 0x67, 0x1d, 0xf4, 0x37, 0xff, 0xef, - 0x00, 0xd4, 0x1e, 0x2a, 0xb4, 0x92, 0xfd, 0x8f, 0xa2, 0xac, 0x00, 0x96, 0x08, 0x52, 0x19, 0x26, - 0xd4, 0x6a, 0x55, 0x67, 0xff, 0x37, 0xa3, 0xb2, 0xa3, 0x53, 0x0f, 0xe1, 0xd0, 0xff, 0x40, 0xd5, - 0x69, 0x2c, 0x90, 0x4f, 0x50, 0xe2, 0xf8, 0xa5, 0x0c, 0x0c, 0x59, 0x4c, 0x28, 0xf9, 0x3c, 0x8c, - 0xb7, 0x48, 0x4a, 0xe4, 0xdb, 0xd7, 0x8d, 0xaa, 0x78, 0xcc, 0x40, 0x7e, 0x13, 0x18, 0xfd, 0x7a, - 0x1e, 0x3b, 0x8b, 0xa2, 0xbf, 0x4b, 0xef, 0xee, 0xfc, 0xf0, 0x6b, 0x34, 0xf0, 0xf0, 0x4b, 0xb5, - 0xf4, 0x52, 0x86, 0xf2, 0xe7, 0xcf, 0xbd, 0xe6, 0x79, 0x05, 0x7b, 0xea, 0x35, 0x6b, 0xda, 0x35, - 0x12, 0xa5, 0x45, 0xf4, 0x25, 0x55, 0xaa, 0xa5, 0x3b, 0xd4, 0x1c, 0xfd, 0xaf, 0xf9, 0x39, 0xe7, - 0x03, 0xbf, 0xe9, 0x23, 0xb0, 0xd4, 0xd2, 0xfc, 0xc6, 0xb2, 0x67, 0xc7, 0x5f, 0x4e, 0xc0, 0xc9, - 0x80, 0x1d, 0x07, 0x90, 0x5b, 0xcd, 0xb9, 0xd0, 0xde, 0xe2, 0x7b, 0x78, 0xfc, 0x75, 0x09, 0x52, - 0x04, 0x1f, 0xc5, 0x7c, 0xbb, 0x3f, 0xff, 0xab, 0x5f, 0xfb, 0x27, 0x72, 0xf8, 0xd4, 0x2a, 0x34, - 0x2a, 0x94, 0x49, 0xe9, 0x7d, 0xbd, 0xeb, 0x2f, 0xe7, 0x7f, 0xc8, 0xd0, 0xb9, 0x75, 0x6a, 0x8c, - 0xea, 0xf0, 0x5b, 0x67, 0x41, 0xee, 0x90, 0xf2, 0x30, 0x8f, 0xd9, 0x3d, 0x89, 0xea, 0xc3, 0x1d, - 0x77, 0xba, 0xff, 0xdf, 0x6d, 0x04, 0x7b, 0x4c, 0xc7, 0xae, 0xc1, 0xb1, 0xe7, 0x48, 0xdb, 0xfe, - 0x32, 0x59, 0x38, 0xf6, 0x63, 0xde, 0x69, 0x9e, 0xc4, 0xff, 0x01, 0x98, 0x38, 0xa9, 0x03, 0x5f, - 0x3e, 0xbe, 0x40, 0xbc, 0x6f, 0xb6, 0x63, 0xbc, 0x98, 0x0d, 0x04, 0x0b, 0x25, 0x40, 0x29, 0xff, - 0xb2, 0x04, 0xc7, 0x5b, 0x9a, 0xe6, 0x3e, 0x7e, 0xa9, 0xcd, 0x53, 0x85, 0x43, 0x65, 0x36, 0x4b, - 0x6d, 0x84, 0xbd, 0x3f, 0x56, 0x58, 0x26, 0x45, 0x48, 0xda, 0xa7, 0xe1, 0x68, 0x58, 0x58, 0xa1, - 0xa6, 0x7b, 0x61, 0x34, 0xbc, 0x23, 0xcc, 0xd5, 0x35, 0x12, 0xda, 0x13, 0x96, 0x2b, 0x51, 0x3d, - 0x7b, 0x7d, 0x2d, 0x43, 0xc6, 0x43, 0xe5, 0x29, 0x70, 0xcf, 0x5d, 0xf5, 0x29, 0xe5, 0x0f, 0x4b, - 0x30, 0x13, 0x6e, 0x21, 0x90, 0x0c, 0xf5, 0x27, 0xec, 0x2d, 0x1b, 0xe2, 0x37, 0x24, 0xb8, 0xab, - 0x8b, 0x4c, 0x5c, 0x01, 0x2f, 0xc3, 0x64, 0x60, 0x27, 0x40, 0xb8, 0x70, 0x31, 0xec, 0xa7, 0xe3, - 0xd3, 0x50, 0x6f, 0xe1, 0x7b, 0x07, 0x51, 0xca, 0x67, 0x7f, 0x7f, 0x7a, 0xa2, 0xb5, 0xce, 0x51, - 0x26, 0x5a, 0x57, 0xef, 0xb7, 0xd0, 0x3e, 0x5e, 0x93, 0xe0, 0x81, 0x70, 0x57, 0xdb, 0xe4, 0xb3, - 0x3f, 0xaa, 0x71, 0xf8, 0xf7, 0x12, 0x9c, 0xee, 0x45, 0x38, 0x3e, 0x20, 0x3b, 0x30, 0xe1, 0x67, - 0xda, 0xd1, 0xf1, 0xe8, 0x2b, 0x7f, 0x67, 0x56, 0x8a, 0x3c, 0x6e, 0xb7, 0x41, 0xf1, 0x16, 0x9f, - 0x58, 0xc1, 0x21, 0xf7, 0x94, 0x1c, 0xde, 0xcd, 0x15, 0x4a, 0x0e, 0xed, 0xe7, 0xb6, 0x19, 0x8b, - 0x44, 0x9b, 0xb1, 0xf0, 0x53, 0x73, 0xf9, 0x0a, 0xf7, 0x5b, 0x6d, 0xf6, 0xe0, 0xde, 0x06, 0x13, - 0x6d, 0x4c, 0x99, 0xcf, 0xea, 0x3e, 0x2c, 0x59, 0x41, 0xad, 0xc6, 0x2a, 0x1f, 0xc0, 0x34, 0x6d, - 0xb7, 0x8d, 0xa2, 0x6f, 0x77, 0x97, 0x1b, 0xdc, 0xb7, 0xb4, 0x6d, 0x9a, 0xf7, 0x7d, 0x19, 0x06, - 0xd9, 0x38, 0xf3, 0xee, 0x1e, 0xc2, 0x50, 0x38, 0x03, 0xf9, 0xe7, 0x85, 0x2f, 0x5b, 0x14, 0x62, - 0xb7, 0x9f, 0x43, 0xbd, 0xf4, 0xf5, 0x16, 0xcd, 0xa1, 0x80, 0x32, 0xbe, 0x21, 0xbc, 0x5a, 0x7b, - 0xe9, 0xb8, 0x3a, 0xb4, 0x5b, 0xe6, 0xd5, 0x98, 0x6e, 0x6e, 0xaf, 0xfb, 0xfa, 0x45, 0xe1, 0xbe, - 0xbc, 0x3e, 0xc5, 0xb8, 0xaf, 0x1f, 0x8d, 0xea, 0x3d, 0x47, 0x16, 0x23, 0xe6, 0x9f, 0x47, 0x47, - 0xf6, 0x5d, 0x09, 0x4e, 0xd0, 0xbe, 0x05, 0x37, 0x22, 0xfa, 0x55, 0xf9, 0x43, 0x80, 0x1c, 0x5b, - 0xab, 0xb4, 0x9d, 0xdd, 0x39, 0xc7, 0xd6, 0x2e, 0x87, 0xe2, 0xcb, 0x43, 0x80, 0xaa, 0xa1, 0xed, - 0x26, 0x8a, 0xcd, 0x6e, 0xc9, 0xe5, 0xaa, 0x81, 0xdd, 0x8c, 0x36, 0xc3, 0x99, 0xba, 0x05, 0xc3, - 0xf9, 0x75, 0x09, 0x0a, 0xed, 0xba, 0xcc, 0x87, 0x4f, 0x87, 0x63, 0xa1, 0x43, 0x82, 0xe8, 0x08, - 0x3e, 0xd4, 0xcb, 0x56, 0x4e, 0x64, 0x1a, 0x1d, 0xb5, 0xf1, 0xed, 0xce, 0x03, 0xa6, 0xc3, 0x16, - 0xda, 0x9a, 0x59, 0xff, 0xc8, 0xa6, 0xcf, 0x17, 0x5a, 0xfc, 0xea, 0x9f, 0x8b, 0xdc, 0xfb, 0x1a, - 0x4c, 0x75, 0x90, 0xfa, 0x76, 0xc7, 0xbd, 0xbd, 0x8e, 0x83, 0x79, 0xab, 0xd3, 0xf7, 0xc7, 0xf9, - 0x4c, 0x08, 0xdf, 0xc0, 0x0e, 0xac, 0xc5, 0xda, 0x3d, 0xe1, 0x92, 0xdf, 0x02, 0x77, 0xb4, 0xa5, - 0xe2, 0xb2, 0x15, 0x21, 0xb5, 0xa7, 0x3b, 0x2e, 0x17, 0xeb, 0xbe, 0x4e, 0x62, 0x45, 0xa8, 0x29, - 0x8d, 0x8c, 0x20, 0x47, 0x59, 0x6f, 0x98, 0x66, 0x9d, 0x8b, 0x21, 0x5f, 0x82, 0xf1, 0x00, 0x8c, - 0x37, 0x72, 0x0e, 0x52, 0x96, 0xc9, 0x3f, 0x4f, 0x30, 0x7c, 0xe6, 0x64, 0xc7, 0xdd, 0x7b, 0xd3, - 0xac, 0xf3, 0x6e, 0x53, 0x7c, 0x79, 0x12, 0x10, 0x63, 0x46, 0x37, 0xf2, 0x45, 0x13, 0x9b, 0x30, - 0x11, 0x82, 0xf2, 0x46, 0x7e, 0xa0, 0x43, 0x82, 0x33, 0xdf, 0x3e, 0x0a, 0x03, 0x94, 0x2b, 0xfa, - 0x98, 0x04, 0x10, 0x38, 0x11, 0x9e, 0xed, 0xc4, 0xa6, 0xfd, 0x9a, 0xb8, 0x30, 0xd7, 0x33, 0x3e, - 0xcf, 0xd9, 0x4e, 0xbf, 0xfb, 0xdf, 0x7c, 0xeb, 0x23, 0x89, 0x7b, 0x90, 0x3c, 0xd7, 0x61, 0x35, - 0x1e, 0x98, 0x2f, 0x9f, 0x09, 0xbd, 0x7d, 0x7f, 0xb8, 0xb7, 0xa6, 0x84, 0x64, 0xb3, 0xbd, 0xa2, - 0x73, 0xc1, 0xce, 0x53, 0xc1, 0xce, 0xa2, 0xc7, 0xe2, 0x05, 0x9b, 0x7b, 0x47, 0x78, 0xd2, 0xbc, - 0x0b, 0xfd, 0x8e, 0x04, 0x93, 0xed, 0x96, 0x74, 0xe8, 0xc9, 0xde, 0xa4, 0x68, 0x4d, 0x29, 0x0a, - 0x4f, 0x1d, 0x82, 0x92, 0x77, 0x65, 0x89, 0x76, 0x65, 0x1e, 0x3d, 0x73, 0x88, 0xae, 0xcc, 0x05, - 0xf7, 0xf7, 0xff, 0x97, 0x04, 0x77, 0x76, 0x5d, 0x21, 0xa1, 0xf9, 0xde, 0xa4, 0xec, 0x92, 0x3b, - 0x15, 0x4a, 0x3f, 0x08, 0x0b, 0xde, 0xe3, 0xe7, 0x68, 0x8f, 0x2f, 0xa1, 0xe5, 0xc3, 0xf4, 0xb8, - 0xed, 0x21, 0x0a, 0xfa, 0xad, 0xf0, 0xcd, 0xc2, 0xee, 0xe6, 0xd4, 0xb2, 0xf0, 0x88, 0x99, 0x18, - 0xad, 0x49, 0xad, 0xfc, 0x02, 0xed, 0x82, 0x82, 0x36, 0x7e, 0xc0, 0x41, 0x9b, 0x7b, 0x47, 0xd8, - 0xf1, 0xbf, 0x0b, 0xfd, 0x4f, 0xa9, 0xfd, 0x45, 0xc1, 0x27, 0xba, 0x8a, 0xd8, 0x79, 0x51, 0x55, - 0x78, 0xb2, 0x7f, 0x42, 0xde, 0xc9, 0x06, 0xed, 0x64, 0x0d, 0xe1, 0x5b, 0xdd, 0xc9, 0xb6, 0x83, - 0x88, 0xbe, 0x2a, 0xc1, 0x64, 0xbb, 0x35, 0x49, 0xcc, 0xb4, 0xec, 0xb2, 0xc8, 0x8a, 0x99, 0x96, - 0xdd, 0x16, 0x40, 0xf2, 0x9b, 0x68, 0xe7, 0xcf, 0xa1, 0xc7, 0x3b, 0x75, 0xbe, 0xeb, 0x28, 0x92, - 0xb9, 0xd8, 0x35, 0xc9, 0x8f, 0x99, 0x8b, 0xbd, 0xac, 0x63, 0x62, 0xe6, 0x62, 0x4f, 0x6b, 0x8c, - 0xf8, 0xb9, 0xe8, 0xf5, 0xac, 0xc7, 0x61, 0x74, 0xd0, 0x97, 0x25, 0x18, 0x09, 0x65, 0xc4, 0xe8, - 0xd1, 0xae, 0x82, 0xb6, 0x5b, 0x30, 0x14, 0xce, 0xf4, 0x43, 0xc2, 0xfb, 0xb2, 0x4c, 0xfb, 0xb2, - 0x80, 0xe6, 0x0f, 0xd3, 0x97, 0xf0, 0x59, 0xe9, 0xd7, 0x25, 0x98, 0x68, 0x93, 0x65, 0xc6, 0xcc, - 0xc2, 0xce, 0x49, 0x73, 0xe1, 0xc9, 0xfe, 0x09, 0x79, 0xaf, 0x2e, 0xd0, 0x5e, 0xfd, 0x04, 0x7a, - 0xfa, 0x30, 0xbd, 0x0a, 0xc4, 0xe7, 0x1b, 0xfe, 0xbd, 0xab, 0x40, 0x3b, 0xe8, 0x5c, 0x9f, 0x82, - 0x89, 0x0e, 0x3d, 0xd1, 0x37, 0x1d, 0xef, 0xcf, 0xf3, 0xb4, 0x3f, 0xcf, 0xa1, 0xf5, 0x1f, 0xac, - 0x3f, 0xad, 0x61, 0xfd, 0xf3, 0xad, 0x2f, 0x00, 0xbb, 0x5b, 0x51, 0xdb, 0x64, 0xb5, 0xf0, 0x58, - 0x5f, 0x34, 0xbc, 0x53, 0x4f, 0xd2, 0x4e, 0x9d, 0x41, 0x8f, 0x74, 0xea, 0x54, 0xe0, 0x72, 0x9d, - 0x6e, 0xec, 0x9a, 0x73, 0xef, 0x60, 0x29, 0xf0, 0xbb, 0xd0, 0x4f, 0x89, 0x8b, 0x4d, 0xa7, 0xba, - 0xb6, 0x1b, 0xc8, 0x63, 0x0b, 0x0f, 0xf4, 0x80, 0xc9, 0xe5, 0xba, 0x87, 0xca, 0x35, 0x85, 0x4e, - 0x76, 0x92, 0x8b, 0xe4, 0xb2, 0xe8, 0x03, 0x92, 0x77, 0x17, 0xf2, 0x74, 0x77, 0xde, 0xc1, 0x64, - 0xb7, 0xf0, 0x60, 0x4f, 0xb8, 0x5c, 0x92, 0xfb, 0xa8, 0x24, 0x33, 0x68, 0xaa, 0xa3, 0x24, 0x2c, - 0xf5, 0xbd, 0xd5, 0x37, 0x07, 0x5e, 0x3d, 0x0e, 0xd3, 0x1d, 0x5a, 0x74, 0xaf, 0xc5, 0x9c, 0x71, - 0x75, 0x79, 0x08, 0x1b, 0xfb, 0xd0, 0xb5, 0xc3, 0xd3, 0xda, 0xc3, 0x3f, 0x7f, 0xed, 0xed, 0x40, - 0xec, 0x5f, 0xa7, 0x00, 0xad, 0x3a, 0xb5, 0x05, 0x1b, 0xb3, 0x7f, 0x7a, 0xc7, 0x67, 0x79, 0xe4, - 0x85, 0x97, 0xf4, 0x03, 0xbd, 0xf0, 0x5a, 0x0d, 0xbd, 0x99, 0x4a, 0xf4, 0xf7, 0x2e, 0xb3, 0xe7, - 0x87, 0x53, 0xc9, 0x1f, 0xca, 0xc3, 0xa9, 0xf6, 0xf7, 0xaa, 0x53, 0xb7, 0xee, 0x01, 0xc6, 0xc0, - 0x61, 0x1f, 0xa1, 0xf0, 0xf7, 0x90, 0x83, 0x5d, 0xde, 0x43, 0xe6, 0x3b, 0x3e, 0x7a, 0xe4, 0xd4, - 0xe8, 0xac, 0xf8, 0x80, 0xef, 0x50, 0x6f, 0x37, 0x61, 0xf9, 0x17, 0x7e, 0xfd, 0x2d, 0x84, 0x93, - 0x50, 0x68, 0x35, 0x27, 0x6f, 0x52, 0x7f, 0x24, 0x09, 0xb9, 0x55, 0xa7, 0x56, 0xae, 0xea, 0xee, - 0x6d, 0xb2, 0xb5, 0x67, 0x3a, 0x3f, 0x6a, 0x41, 0x37, 0x6f, 0x4c, 0x8f, 0x32, 0x9d, 0x76, 0xd1, - 0x64, 0x03, 0xc6, 0x22, 0x4f, 0x89, 0xb9, 0x65, 0x2d, 0x1e, 0xe6, 0x45, 0x73, 0x84, 0x95, 0x4c, - 0xdf, 0x20, 0x04, 0xec, 0x1b, 0x5d, 0x6b, 0x6f, 0xcc, 0xcc, 0xa0, 0x2e, 0xde, 0xce, 0x17, 0x80, - 0xfe, 0x98, 0x15, 0x20, 0x1f, 0x1d, 0x14, 0x6f, 0xc4, 0xfe, 0x50, 0x82, 0xe1, 0x55, 0x47, 0xa4, - 0x82, 0xf8, 0xc7, 0xf4, 0xfd, 0xd1, 0x13, 0xde, 0x77, 0x58, 0x93, 0xbd, 0xd9, 0xad, 0xf8, 0x36, - 0xab, 0xaf, 0x84, 0xa3, 0x30, 0x11, 0xe8, 0xa7, 0xd7, 0xff, 0xdf, 0x4e, 0x50, 0xff, 0x58, 0xc2, - 0x35, 0xdd, 0xf0, 0xb2, 0x48, 0xfc, 0x17, 0xf5, 0x75, 0x85, 0xaf, 0xe7, 0xd4, 0x61, 0xf5, 0xbc, - 0x4f, 0x1d, 0x44, 0x44, 0x9f, 0xde, 0xc6, 0xd7, 0x6a, 0xeb, 0xdb, 0x1f, 0xa9, 0x8f, 0xcf, 0xea, - 0x44, 0x5e, 0xf8, 0xc8, 0x6f, 0x48, 0x30, 0xb2, 0xea, 0xd4, 0xb6, 0x8d, 0xea, 0xff, 0xf3, 0xf6, - 0xbb, 0x0b, 0x47, 0x43, 0x3d, 0xbd, 0x4d, 0x2a, 0x3d, 0xf3, 0x5a, 0x0a, 0x92, 0xab, 0x4e, 0x0d, - 0xbd, 0x04, 0x63, 0xd1, 0xa4, 0xa1, 0x63, 0x2e, 0xd8, 0x1a, 0x11, 0x3a, 0xaf, 0xd7, 0x3a, 0x47, - 0x0f, 0xb4, 0x0f, 0x23, 0xe1, 0xc8, 0x71, 0xaa, 0x0b, 0x93, 0x10, 0x66, 0xe1, 0x91, 0x5e, 0x31, - 0xbd, 0xc6, 0xde, 0x0e, 0x69, 0xcf, 0xe9, 0xdd, 0xdd, 0x85, 0x5a, 0x20, 0x75, 0xce, 0x6e, 0xdb, - 0xb8, 0x15, 0xa2, 0xbd, 0xa8, 0x4b, 0xe9, 0xa6, 0xbd, 0x08, 0x6e, 0x57, 0xed, 0x75, 0x9a, 0x5a, - 0x3b, 0x00, 0x81, 0x79, 0x70, 0x6f, 0x17, 0x0e, 0x3e, 0x5a, 0xe1, 0xe1, 0x9e, 0xd0, 0xbc, 0x43, - 0xa7, 0x5b, 0x9c, 0x8c, 0xff, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xd5, 0xca, 0x34, 0x9e, 0x6a, - 0x94, 0x00, 0x00, + 0x33, 0x9c, 0x99, 0xbd, 0x3b, 0x50, 0x52, 0x8a, 0x96, 0x14, 0x45, 0xa2, 0xcb, 0xb1, 0x14, 0xa5, + 0x62, 0x89, 0xd2, 0x29, 0x92, 0xe5, 0x44, 0x8e, 0xac, 0xc4, 0x96, 0xa5, 0x28, 0x71, 0x92, 0xaa, + 0x48, 0xa9, 0x38, 0x96, 0x94, 0x8a, 0x4b, 0xaa, 0xb8, 0x12, 0xc7, 0x95, 0x9c, 0x1d, 0x4a, 0xe5, + 0x30, 0x8a, 0x12, 0xcb, 0x67, 0x39, 0x71, 0x4a, 0x95, 0x4a, 0xea, 0x7d, 0xcd, 0xd7, 0x7e, 0xcc, + 0x2e, 0x74, 0x27, 0xca, 0x71, 0x7e, 0x61, 0x5f, 0x4f, 0x77, 0xbf, 0xee, 0x7e, 0xfd, 0xba, 0xfb, + 0xbd, 0x79, 0x6f, 0x00, 0x5f, 0x38, 0x0f, 0xb3, 0x35, 0xd3, 0xac, 0xd5, 0xf1, 0x69, 0xcb, 0x36, + 0x5d, 0x73, 0xa7, 0xb9, 0x7b, 0xba, 0x8a, 0x1d, 0xcd, 0xd6, 0x2d, 0xd7, 0xb4, 0xe7, 0x28, 0x0c, + 0x8d, 0x33, 0x8c, 0x39, 0x81, 0x21, 0xaf, 0xc2, 0xc4, 0x05, 0xbd, 0x8e, 0x17, 0x3d, 0xc4, 0x4d, + 0xec, 0xa2, 0x27, 0x21, 0xb5, 0xab, 0xd7, 0x71, 0x5e, 0x9a, 0x4d, 0x9e, 0x1c, 0x39, 0x73, 0xcf, + 0x5c, 0x84, 0x68, 0x2e, 0x4c, 0xb1, 0x41, 0xc0, 0x0a, 0xa5, 0x90, 0xbf, 0x93, 0x82, 0xc9, 0x36, + 0x4f, 0x11, 0x82, 0x94, 0xa1, 0x36, 0x08, 0x47, 0xe9, 0x64, 0x46, 0xa1, 0xbf, 0x51, 0x1e, 0x86, + 0x2d, 0x55, 0xdb, 0x57, 0x6b, 0x38, 0x9f, 0xa0, 0x60, 0xd1, 0x44, 0xd3, 0x00, 0x55, 0x6c, 0x61, + 0xa3, 0x8a, 0x0d, 0xed, 0x20, 0x9f, 0x9c, 0x4d, 0x9e, 0xcc, 0x28, 0x01, 0x08, 0x7a, 0x10, 0x26, + 0xac, 0xe6, 0x4e, 0x5d, 0xd7, 0x2a, 0x01, 0x34, 0x98, 0x4d, 0x9e, 0x1c, 0x54, 0x72, 0xec, 0xc1, + 0xa2, 0x8f, 0x7c, 0x3f, 0x8c, 0x5f, 0xc5, 0xea, 0x7e, 0x10, 0x75, 0x84, 0xa2, 0x8e, 0x11, 0x70, + 0x00, 0x71, 0x01, 0xb2, 0x0d, 0xec, 0x38, 0x6a, 0x0d, 0x57, 0xdc, 0x03, 0x0b, 0xe7, 0x53, 0x54, + 0xfb, 0xd9, 0x16, 0xed, 0xa3, 0x9a, 0x8f, 0x70, 0xaa, 0xad, 0x03, 0x0b, 0xa3, 0x79, 0xc8, 0x60, + 0xa3, 0xd9, 0x60, 0x1c, 0x06, 0x3b, 0xd8, 0xaf, 0x6c, 0x34, 0x1b, 0x51, 0x2e, 0x69, 0x42, 0xc6, + 0x59, 0x0c, 0x3b, 0xd8, 0xbe, 0xa2, 0x6b, 0x38, 0x3f, 0x44, 0x19, 0xdc, 0xdf, 0xc2, 0x60, 0x93, + 0x3d, 0x8f, 0xf2, 0x10, 0x74, 0x68, 0x01, 0x32, 0xf8, 0x9a, 0x8b, 0x0d, 0x47, 0x37, 0x8d, 0xfc, + 0x30, 0x65, 0x72, 0x6f, 0x9b, 0x51, 0xc4, 0xf5, 0x6a, 0x94, 0x85, 0x4f, 0x87, 0xce, 0xc1, 0xb0, + 0x69, 0xb9, 0xba, 0x69, 0x38, 0xf9, 0xf4, 0xac, 0x74, 0x72, 0xe4, 0xcc, 0x89, 0xb6, 0x8e, 0xb0, + 0xce, 0x70, 0x14, 0x81, 0x8c, 0x96, 0x21, 0xe7, 0x98, 0x4d, 0x5b, 0xc3, 0x15, 0xcd, 0xac, 0xe2, + 0x8a, 0x6e, 0xec, 0x9a, 0xf9, 0x0c, 0x65, 0x30, 0xd3, 0xaa, 0x08, 0x45, 0x5c, 0x30, 0xab, 0x78, + 0xd9, 0xd8, 0x35, 0x95, 0x31, 0x27, 0xd4, 0x46, 0x47, 0x61, 0xc8, 0x39, 0x30, 0x5c, 0xf5, 0x5a, + 0x3e, 0x4b, 0x3d, 0x84, 0xb7, 0xe4, 0xdf, 0x18, 0x82, 0xf1, 0x5e, 0x5c, 0xec, 0x3c, 0x0c, 0xee, + 0x12, 0x2d, 0xf3, 0x89, 0x7e, 0x6c, 0xc0, 0x68, 0xc2, 0x46, 0x1c, 0x3a, 0xa4, 0x11, 0xe7, 0x61, + 0xc4, 0xc0, 0x8e, 0x8b, 0xab, 0xcc, 0x23, 0x92, 0x3d, 0xfa, 0x14, 0x30, 0xa2, 0x56, 0x97, 0x4a, + 0x1d, 0xca, 0xa5, 0x9e, 0x87, 0x71, 0x4f, 0xa4, 0x8a, 0xad, 0x1a, 0x35, 0xe1, 0x9b, 0xa7, 0xe3, + 0x24, 0x99, 0x2b, 0x0b, 0x3a, 0x85, 0x90, 0x29, 0x63, 0x38, 0xd4, 0x46, 0x8b, 0x00, 0xa6, 0x81, + 0xcd, 0xdd, 0x4a, 0x15, 0x6b, 0xf5, 0x7c, 0xba, 0x83, 0x95, 0xd6, 0x09, 0x4a, 0x8b, 0x95, 0x4c, + 0x06, 0xd5, 0xea, 0xe8, 0x29, 0xdf, 0xd5, 0x86, 0x3b, 0x78, 0xca, 0x2a, 0x9b, 0x64, 0x2d, 0xde, + 0xb6, 0x0d, 0x63, 0x36, 0x26, 0x7e, 0x8f, 0xab, 0x5c, 0xb3, 0x0c, 0x15, 0x62, 0x2e, 0x56, 0x33, + 0x85, 0x93, 0x31, 0xc5, 0x46, 0xed, 0x60, 0x13, 0xdd, 0x0d, 0x1e, 0xa0, 0x42, 0xdd, 0x0a, 0x68, + 0x14, 0xca, 0x0a, 0xe0, 0x9a, 0xda, 0xc0, 0x85, 0x97, 0x60, 0x2c, 0x6c, 0x1e, 0x34, 0x05, 0x83, + 0x8e, 0xab, 0xda, 0x2e, 0xf5, 0xc2, 0x41, 0x85, 0x35, 0x50, 0x0e, 0x92, 0xd8, 0xa8, 0xd2, 0x28, + 0x37, 0xa8, 0x90, 0x9f, 0xe8, 0xa7, 0x7c, 0x85, 0x93, 0x54, 0xe1, 0xfb, 0x5a, 0x47, 0x34, 0xc4, + 0x39, 0xaa, 0x77, 0xe1, 0x09, 0x18, 0x0d, 0x29, 0xd0, 0x6b, 0xd7, 0xf2, 0xbb, 0xe0, 0x48, 0x5b, + 0xd6, 0xe8, 0x79, 0x98, 0x6a, 0x1a, 0xba, 0xe1, 0x62, 0xdb, 0xb2, 0x31, 0xf1, 0x58, 0xd6, 0x55, + 0xfe, 0x3f, 0x0f, 0x77, 0xf0, 0xb9, 0xed, 0x20, 0x36, 0xe3, 0xa2, 0x4c, 0x36, 0x5b, 0x81, 0xa7, + 0x32, 0xe9, 0xd7, 0x87, 0x73, 0x2f, 0xbf, 0xfc, 0xf2, 0xcb, 0x09, 0xf9, 0xab, 0x43, 0x30, 0xd5, + 0x6e, 0xce, 0xb4, 0x9d, 0xbe, 0x47, 0x61, 0xc8, 0x68, 0x36, 0x76, 0xb0, 0x4d, 0x8d, 0x34, 0xa8, + 0xf0, 0x16, 0x9a, 0x87, 0xc1, 0xba, 0xba, 0x83, 0xeb, 0xf9, 0xd4, 0xac, 0x74, 0x72, 0xec, 0xcc, + 0x83, 0x3d, 0xcd, 0xca, 0xb9, 0x15, 0x42, 0xa2, 0x30, 0x4a, 0xf4, 0x16, 0x48, 0xf1, 0x10, 0x4d, + 0x38, 0x9c, 0xea, 0x8d, 0x03, 0x99, 0x4b, 0x0a, 0xa5, 0x43, 0x77, 0x40, 0x86, 0xfc, 0x65, 0xbe, + 0x31, 0x44, 0x65, 0x4e, 0x13, 0x00, 0xf1, 0x0b, 0x54, 0x80, 0x34, 0x9d, 0x26, 0x55, 0x2c, 0x52, + 0x9b, 0xd7, 0x26, 0x8e, 0x55, 0xc5, 0xbb, 0x6a, 0xb3, 0xee, 0x56, 0xae, 0xa8, 0xf5, 0x26, 0xa6, + 0x0e, 0x9f, 0x51, 0xb2, 0x1c, 0x78, 0x99, 0xc0, 0xd0, 0x0c, 0x8c, 0xb0, 0x59, 0xa5, 0x1b, 0x55, + 0x7c, 0x8d, 0x46, 0xcf, 0x41, 0x85, 0x4d, 0xb4, 0x65, 0x02, 0x21, 0xdd, 0xbf, 0xe0, 0x98, 0x86, + 0x70, 0x4d, 0xda, 0x05, 0x01, 0xd0, 0xee, 0x9f, 0x88, 0x06, 0xee, 0x3b, 0xdb, 0xab, 0xd7, 0x32, + 0x97, 0xee, 0x87, 0x71, 0x8a, 0xf1, 0x18, 0x1f, 0x7a, 0xb5, 0x9e, 0x9f, 0x98, 0x95, 0x4e, 0xa6, + 0x95, 0x31, 0x06, 0x5e, 0xe7, 0x50, 0xf9, 0xcb, 0x09, 0x48, 0xd1, 0xc0, 0x32, 0x0e, 0x23, 0x5b, + 0x6f, 0xdd, 0x28, 0x57, 0x16, 0xd7, 0xb7, 0x4b, 0x2b, 0xe5, 0x9c, 0x84, 0xc6, 0x00, 0x28, 0xe0, + 0xc2, 0xca, 0xfa, 0xfc, 0x56, 0x2e, 0xe1, 0xb5, 0x97, 0xd7, 0xb6, 0xce, 0x3d, 0x9e, 0x4b, 0x7a, + 0x04, 0xdb, 0x0c, 0x90, 0x0a, 0x22, 0x3c, 0x76, 0x26, 0x37, 0x88, 0x72, 0x90, 0x65, 0x0c, 0x96, + 0x9f, 0x2f, 0x2f, 0x9e, 0x7b, 0x3c, 0x37, 0x14, 0x86, 0x3c, 0x76, 0x26, 0x37, 0x8c, 0x46, 0x21, + 0x43, 0x21, 0xa5, 0xf5, 0xf5, 0x95, 0x5c, 0xda, 0xe3, 0xb9, 0xb9, 0xa5, 0x2c, 0xaf, 0x2d, 0xe5, + 0x32, 0x1e, 0xcf, 0x25, 0x65, 0x7d, 0x7b, 0x23, 0x07, 0x1e, 0x87, 0xd5, 0xf2, 0xe6, 0xe6, 0xfc, + 0x52, 0x39, 0x37, 0xe2, 0x61, 0x94, 0xde, 0xba, 0x55, 0xde, 0xcc, 0x65, 0x43, 0x62, 0x3d, 0x76, + 0x26, 0x37, 0xea, 0x75, 0x51, 0x5e, 0xdb, 0x5e, 0xcd, 0x8d, 0xa1, 0x09, 0x18, 0x65, 0x5d, 0x08, + 0x21, 0xc6, 0x23, 0xa0, 0x73, 0x8f, 0xe7, 0x72, 0xbe, 0x20, 0x8c, 0xcb, 0x44, 0x08, 0x70, 0xee, + 0xf1, 0x1c, 0x92, 0x17, 0x60, 0x90, 0xba, 0x21, 0x42, 0x30, 0xb6, 0x32, 0x5f, 0x2a, 0xaf, 0x54, + 0xd6, 0x37, 0xb6, 0x96, 0xd7, 0xd7, 0xe6, 0x57, 0x72, 0x92, 0x0f, 0x53, 0xca, 0xcf, 0x6e, 0x2f, + 0x2b, 0xe5, 0xc5, 0x5c, 0x22, 0x08, 0xdb, 0x28, 0xcf, 0x6f, 0x95, 0x17, 0x73, 0x49, 0x59, 0x83, + 0xa9, 0x76, 0x01, 0xb5, 0xed, 0x14, 0x0a, 0xf8, 0x42, 0xa2, 0x83, 0x2f, 0x50, 0x5e, 0x51, 0x5f, + 0x90, 0xbf, 0x9d, 0x80, 0xc9, 0x36, 0x49, 0xa5, 0x6d, 0x27, 0x4f, 0xc3, 0x20, 0xf3, 0x65, 0x96, + 0x66, 0x1f, 0x68, 0x9b, 0x9d, 0xa8, 0x67, 0xb7, 0xa4, 0x5a, 0x4a, 0x17, 0x2c, 0x35, 0x92, 0x1d, + 0x4a, 0x0d, 0xc2, 0xa2, 0xc5, 0x61, 0x7f, 0xba, 0x25, 0xf8, 0xb3, 0xfc, 0x78, 0xae, 0x97, 0xfc, + 0x48, 0x61, 0xfd, 0x25, 0x81, 0xc1, 0x36, 0x49, 0xe0, 0x3c, 0x4c, 0xb4, 0x30, 0xea, 0x39, 0x18, + 0xbf, 0x57, 0x82, 0x7c, 0x27, 0xe3, 0xc4, 0x84, 0xc4, 0x44, 0x28, 0x24, 0x9e, 0x8f, 0x5a, 0xf0, + 0xae, 0xce, 0x83, 0xd0, 0x32, 0xd6, 0x9f, 0x95, 0xe0, 0x68, 0xfb, 0x92, 0xb2, 0xad, 0x0c, 0x6f, + 0x81, 0xa1, 0x06, 0x76, 0xf7, 0x4c, 0x51, 0x56, 0xdd, 0xd7, 0x26, 0x59, 0x93, 0xc7, 0xd1, 0xc1, + 0xe6, 0x54, 0xc1, 0x6c, 0x9f, 0xec, 0x54, 0x17, 0x32, 0x69, 0x5a, 0x24, 0xfd, 0x60, 0x02, 0x8e, + 0xb4, 0x65, 0xde, 0x56, 0xd0, 0x3b, 0x01, 0x74, 0xc3, 0x6a, 0xba, 0xac, 0x74, 0x62, 0x91, 0x38, + 0x43, 0x21, 0x34, 0x78, 0x91, 0x28, 0xdb, 0x74, 0xbd, 0xe7, 0x49, 0xfa, 0x1c, 0x18, 0x88, 0x22, + 0x3c, 0xe9, 0x0b, 0x9a, 0xa2, 0x82, 0x4e, 0x77, 0xd0, 0xb4, 0xc5, 0x31, 0x1f, 0x81, 0x9c, 0x56, + 0xd7, 0xb1, 0xe1, 0x56, 0x1c, 0xd7, 0xc6, 0x6a, 0x43, 0x37, 0x6a, 0x34, 0xd5, 0xa4, 0x8b, 0x83, + 0xbb, 0x6a, 0xdd, 0xc1, 0xca, 0x38, 0x7b, 0xbc, 0x29, 0x9e, 0x12, 0x0a, 0xea, 0x40, 0x76, 0x80, + 0x62, 0x28, 0x44, 0xc1, 0x1e, 0x7b, 0x14, 0xf2, 0x87, 0x33, 0x30, 0x12, 0x28, 0xc0, 0xd1, 0x5d, + 0x90, 0x7d, 0x41, 0xbd, 0xa2, 0x56, 0xc4, 0xa2, 0x8a, 0x59, 0x62, 0x84, 0xc0, 0x36, 0xf8, 0xc2, + 0xea, 0x11, 0x98, 0xa2, 0x28, 0x66, 0xd3, 0xc5, 0x76, 0x45, 0xab, 0xab, 0x8e, 0x43, 0x8d, 0x96, + 0xa6, 0xa8, 0x88, 0x3c, 0x5b, 0x27, 0x8f, 0x16, 0xc4, 0x13, 0x74, 0x16, 0x26, 0x29, 0x45, 0xa3, + 0x59, 0x77, 0x75, 0xab, 0x8e, 0x2b, 0x64, 0x99, 0xe7, 0xd0, 0x94, 0xe3, 0x49, 0x36, 0x41, 0x30, + 0x56, 0x39, 0x02, 0x91, 0xc8, 0x41, 0x8b, 0x70, 0x27, 0x25, 0xab, 0x61, 0x03, 0xdb, 0xaa, 0x8b, + 0x2b, 0xf8, 0xc5, 0xa6, 0x5a, 0x77, 0x2a, 0xaa, 0x51, 0xad, 0xec, 0xa9, 0xce, 0x5e, 0x7e, 0x8a, + 0x30, 0x28, 0x25, 0xf2, 0x92, 0x72, 0x9c, 0x20, 0x2e, 0x71, 0xbc, 0x32, 0x45, 0x9b, 0x37, 0xaa, + 0x17, 0x55, 0x67, 0x0f, 0x15, 0xe1, 0x28, 0xe5, 0xe2, 0xb8, 0xb6, 0x6e, 0xd4, 0x2a, 0xda, 0x1e, + 0xd6, 0xf6, 0x2b, 0x4d, 0x77, 0xf7, 0xc9, 0xfc, 0x1d, 0xc1, 0xfe, 0xa9, 0x84, 0x9b, 0x14, 0x67, + 0x81, 0xa0, 0x6c, 0xbb, 0xbb, 0x4f, 0xa2, 0x4d, 0xc8, 0x92, 0xc1, 0x68, 0xe8, 0x2f, 0xe1, 0xca, + 0xae, 0x69, 0xd3, 0x1c, 0x3a, 0xd6, 0x26, 0x34, 0x05, 0x2c, 0x38, 0xb7, 0xce, 0x09, 0x56, 0xcd, + 0x2a, 0x2e, 0x0e, 0x6e, 0x6e, 0x94, 0xcb, 0x8b, 0xca, 0x88, 0xe0, 0x72, 0xc1, 0xb4, 0x89, 0x43, + 0xd5, 0x4c, 0xcf, 0xc0, 0x23, 0xcc, 0xa1, 0x6a, 0xa6, 0x30, 0xef, 0x59, 0x98, 0xd4, 0x34, 0xa6, + 0xb3, 0xae, 0x55, 0xf8, 0x62, 0xcc, 0xc9, 0xe7, 0x42, 0xc6, 0xd2, 0xb4, 0x25, 0x86, 0xc0, 0x7d, + 0xdc, 0x41, 0x4f, 0xc1, 0x11, 0xdf, 0x58, 0x41, 0xc2, 0x89, 0x16, 0x2d, 0xa3, 0xa4, 0x67, 0x61, + 0xd2, 0x3a, 0x68, 0x25, 0x44, 0xa1, 0x1e, 0xad, 0x83, 0x28, 0xd9, 0x13, 0x30, 0x65, 0xed, 0x59, + 0xad, 0x74, 0xa7, 0x82, 0x74, 0xc8, 0xda, 0xb3, 0xa2, 0x84, 0xf7, 0xd2, 0x95, 0xb9, 0x8d, 0x35, + 0xd5, 0xc5, 0xd5, 0xfc, 0xb1, 0x20, 0x7a, 0xe0, 0x01, 0x9a, 0x83, 0x9c, 0xa6, 0x55, 0xb0, 0xa1, + 0xee, 0xd4, 0x71, 0x45, 0xb5, 0xb1, 0xa1, 0x3a, 0xf9, 0x19, 0x8a, 0x9c, 0x72, 0xed, 0x26, 0x56, + 0xc6, 0x34, 0xad, 0x4c, 0x1f, 0xce, 0xd3, 0x67, 0xe8, 0x14, 0x4c, 0x98, 0x3b, 0x2f, 0x68, 0xcc, + 0x23, 0x2b, 0x96, 0x8d, 0x77, 0xf5, 0x6b, 0xf9, 0x7b, 0xa8, 0x79, 0xc7, 0xc9, 0x03, 0xea, 0x8f, + 0x1b, 0x14, 0x8c, 0x1e, 0x80, 0x9c, 0xe6, 0xec, 0xa9, 0xb6, 0x45, 0x43, 0xb2, 0x63, 0xa9, 0x1a, + 0xce, 0xdf, 0xcb, 0x50, 0x19, 0x7c, 0x4d, 0x80, 0xc9, 0x8c, 0x70, 0xae, 0xea, 0xbb, 0xae, 0xe0, + 0x78, 0x3f, 0x9b, 0x11, 0x14, 0xc6, 0xb9, 0x9d, 0x84, 0x1c, 0xb1, 0x44, 0xa8, 0xe3, 0x93, 0x14, + 0x6d, 0xcc, 0xda, 0xb3, 0x82, 0xfd, 0xde, 0x0d, 0xa3, 0x04, 0xd3, 0xef, 0xf4, 0x01, 0x56, 0xb8, + 0x59, 0x7b, 0x81, 0x1e, 0x1f, 0x87, 0xa3, 0x04, 0xa9, 0x81, 0x5d, 0xb5, 0xaa, 0xba, 0x6a, 0x00, + 0xfb, 0x21, 0x8a, 0x4d, 0xcc, 0xbe, 0xca, 0x1f, 0x86, 0xe4, 0xb4, 0x9b, 0x3b, 0x07, 0x9e, 0x63, + 0x3d, 0xcc, 0xe4, 0x24, 0x30, 0xe1, 0x5a, 0xb7, 0xad, 0x38, 0x97, 0x8b, 0x90, 0x0d, 0xfa, 0x3d, + 0xca, 0x00, 0xf3, 0xfc, 0x9c, 0x44, 0x8a, 0xa0, 0x85, 0xf5, 0x45, 0x52, 0xbe, 0xbc, 0xad, 0x9c, + 0x4b, 0x90, 0x32, 0x6a, 0x65, 0x79, 0xab, 0x5c, 0x51, 0xb6, 0xd7, 0xb6, 0x96, 0x57, 0xcb, 0xb9, + 0x64, 0xa0, 0xb0, 0x7f, 0x26, 0x95, 0xbe, 0x2f, 0x77, 0xbf, 0xfc, 0xad, 0x04, 0x8c, 0x85, 0x57, + 0x6a, 0xe8, 0x4d, 0x70, 0x4c, 0x6c, 0xab, 0x38, 0xd8, 0xad, 0x5c, 0xd5, 0x6d, 0x3a, 0x21, 0x1b, + 0x2a, 0x4b, 0x8e, 0x9e, 0xff, 0x4c, 0x71, 0xac, 0x4d, 0xec, 0x3e, 0xa7, 0xdb, 0x64, 0xba, 0x35, + 0x54, 0x17, 0xad, 0xc0, 0x8c, 0x61, 0x56, 0x1c, 0x57, 0x35, 0xaa, 0xaa, 0x5d, 0xad, 0xf8, 0x1b, + 0x5a, 0x15, 0x55, 0xd3, 0xb0, 0xe3, 0x98, 0x2c, 0x11, 0x7a, 0x5c, 0x4e, 0x18, 0xe6, 0x26, 0x47, + 0xf6, 0x33, 0xc4, 0x3c, 0x47, 0x8d, 0xb8, 0x6f, 0xb2, 0x93, 0xfb, 0xde, 0x01, 0x99, 0x86, 0x6a, + 0x55, 0xb0, 0xe1, 0xda, 0x07, 0xb4, 0x3e, 0x4f, 0x2b, 0xe9, 0x86, 0x6a, 0x95, 0x49, 0xfb, 0xc7, + 0xb2, 0x4c, 0x7a, 0x26, 0x95, 0x4e, 0xe7, 0x32, 0xcf, 0xa4, 0xd2, 0x99, 0x1c, 0xc8, 0xaf, 0x25, + 0x21, 0x1b, 0xac, 0xd7, 0xc9, 0xf2, 0x47, 0xa3, 0x19, 0x4b, 0xa2, 0x31, 0xed, 0xee, 0xae, 0xd5, + 0xfd, 0xdc, 0x02, 0x49, 0x65, 0xc5, 0x21, 0x56, 0x1c, 0x2b, 0x8c, 0x92, 0x94, 0x11, 0xc4, 0xd9, + 0x30, 0x2b, 0x46, 0xd2, 0x0a, 0x6f, 0xa1, 0x25, 0x18, 0x7a, 0xc1, 0xa1, 0xbc, 0x87, 0x28, 0xef, + 0x7b, 0xba, 0xf3, 0x7e, 0x66, 0x93, 0x32, 0xcf, 0x3c, 0xb3, 0x59, 0x59, 0x5b, 0x57, 0x56, 0xe7, + 0x57, 0x14, 0x4e, 0x8e, 0x8e, 0x43, 0xaa, 0xae, 0xbe, 0x74, 0x10, 0x4e, 0x7a, 0x14, 0xd4, 0xeb, + 0x20, 0x1c, 0x87, 0xd4, 0x55, 0xac, 0xee, 0x87, 0x53, 0x0d, 0x05, 0xdd, 0xc6, 0xc9, 0x70, 0x1a, + 0x06, 0xa9, 0xbd, 0x10, 0x00, 0xb7, 0x58, 0x6e, 0x00, 0xa5, 0x21, 0xb5, 0xb0, 0xae, 0x90, 0x09, + 0x91, 0x83, 0x2c, 0x83, 0x56, 0x36, 0x96, 0xcb, 0x0b, 0xe5, 0x5c, 0x42, 0x3e, 0x0b, 0x43, 0xcc, + 0x08, 0x64, 0xb2, 0x78, 0x66, 0xc8, 0x0d, 0xf0, 0x26, 0xe7, 0x21, 0x89, 0xa7, 0xdb, 0xab, 0xa5, + 0xb2, 0x92, 0x4b, 0x84, 0x87, 0x3a, 0x95, 0x1b, 0x94, 0x1d, 0xc8, 0x06, 0xeb, 0xf0, 0x1f, 0xcf, + 0x62, 0xfc, 0x2b, 0x12, 0x8c, 0x04, 0xea, 0x6a, 0x52, 0x10, 0xa9, 0xf5, 0xba, 0x79, 0xb5, 0xa2, + 0xd6, 0x75, 0xd5, 0xe1, 0xae, 0x01, 0x14, 0x34, 0x4f, 0x20, 0xbd, 0x0e, 0xdd, 0x8f, 0x69, 0x8a, + 0x0c, 0xe6, 0x86, 0xe4, 0x4f, 0x4a, 0x90, 0x8b, 0x16, 0xb6, 0x11, 0x31, 0xa5, 0x37, 0x52, 0x4c, + 0xf9, 0x13, 0x12, 0x8c, 0x85, 0xab, 0xd9, 0x88, 0x78, 0x77, 0xbd, 0xa1, 0xe2, 0xfd, 0x41, 0x02, + 0x46, 0x43, 0x35, 0x6c, 0xaf, 0xd2, 0xbd, 0x08, 0x13, 0x7a, 0x15, 0x37, 0x2c, 0xd3, 0xc5, 0x86, + 0x76, 0x50, 0xa9, 0xe3, 0x2b, 0xb8, 0x9e, 0x97, 0x69, 0xd0, 0x38, 0xdd, 0xbd, 0x4a, 0x9e, 0x5b, + 0xf6, 0xe9, 0x56, 0x08, 0x59, 0x71, 0x72, 0x79, 0xb1, 0xbc, 0xba, 0xb1, 0xbe, 0x55, 0x5e, 0x5b, + 0x78, 0x6b, 0x65, 0x7b, 0xed, 0xd2, 0xda, 0xfa, 0x73, 0x6b, 0x4a, 0x4e, 0x8f, 0xa0, 0xdd, 0xc6, + 0x69, 0xbf, 0x01, 0xb9, 0xa8, 0x50, 0xe8, 0x18, 0xb4, 0x13, 0x2b, 0x37, 0x80, 0x26, 0x61, 0x7c, + 0x6d, 0xbd, 0xb2, 0xb9, 0xbc, 0x58, 0xae, 0x94, 0x2f, 0x5c, 0x28, 0x2f, 0x6c, 0x6d, 0xb2, 0x7d, + 0x0f, 0x0f, 0x7b, 0x2b, 0x34, 0xc1, 0xe5, 0x57, 0x93, 0x30, 0xd9, 0x46, 0x12, 0x34, 0xcf, 0x57, + 0x2c, 0x6c, 0x11, 0xf5, 0x70, 0x2f, 0xd2, 0xcf, 0x91, 0x9a, 0x61, 0x43, 0xb5, 0x5d, 0xbe, 0xc0, + 0x79, 0x00, 0x88, 0x95, 0x0c, 0x57, 0xdf, 0xd5, 0xb1, 0xcd, 0xf7, 0x93, 0xd8, 0x32, 0x66, 0xdc, + 0x87, 0xb3, 0x2d, 0xa5, 0x87, 0x00, 0x59, 0xa6, 0xa3, 0xbb, 0xfa, 0x15, 0x5c, 0xd1, 0x0d, 0xb1, + 0xf9, 0x44, 0x96, 0x35, 0x29, 0x25, 0x27, 0x9e, 0x2c, 0x1b, 0xae, 0x87, 0x6d, 0xe0, 0x9a, 0x1a, + 0xc1, 0x26, 0xc1, 0x3c, 0xa9, 0xe4, 0xc4, 0x13, 0x0f, 0xfb, 0x2e, 0xc8, 0x56, 0xcd, 0x26, 0xa9, + 0xf5, 0x18, 0x1e, 0xc9, 0x1d, 0x92, 0x32, 0xc2, 0x60, 0x1e, 0x0a, 0xaf, 0xe2, 0xfd, 0x5d, 0xaf, + 0xac, 0x32, 0xc2, 0x60, 0x0c, 0xe5, 0x7e, 0x18, 0x57, 0x6b, 0x35, 0x9b, 0x30, 0x17, 0x8c, 0xd8, + 0xba, 0x64, 0xcc, 0x03, 0x53, 0xc4, 0xc2, 0x33, 0x90, 0x16, 0x76, 0x20, 0xa9, 0x9a, 0x58, 0xa2, + 0x62, 0xb1, 0xc5, 0x76, 0xe2, 0x64, 0x46, 0x49, 0x1b, 0xe2, 0xe1, 0x5d, 0x90, 0xd5, 0x9d, 0x8a, + 0xbf, 0x89, 0x9f, 0x98, 0x4d, 0x9c, 0x4c, 0x2b, 0x23, 0xba, 0xe3, 0x6d, 0x80, 0xca, 0x9f, 0x4d, + 0xc0, 0x58, 0xf8, 0x25, 0x04, 0x5a, 0x84, 0x74, 0xdd, 0xd4, 0x54, 0xea, 0x5a, 0xec, 0x0d, 0xd8, + 0xc9, 0x98, 0xf7, 0x16, 0x73, 0x2b, 0x1c, 0x5f, 0xf1, 0x28, 0x0b, 0xbf, 0x2d, 0x41, 0x5a, 0x80, + 0xd1, 0x51, 0x48, 0x59, 0xaa, 0xbb, 0x47, 0xd9, 0x0d, 0x96, 0x12, 0x39, 0x49, 0xa1, 0x6d, 0x02, + 0x77, 0x2c, 0xd5, 0xa0, 0x2e, 0xc0, 0xe1, 0xa4, 0x4d, 0xc6, 0xb5, 0x8e, 0xd5, 0x2a, 0x5d, 0xf4, + 0x98, 0x8d, 0x06, 0x36, 0x5c, 0x47, 0x8c, 0x2b, 0x87, 0x2f, 0x70, 0x30, 0x7a, 0x10, 0x26, 0x5c, + 0x5b, 0xd5, 0xeb, 0x21, 0xdc, 0x14, 0xc5, 0xcd, 0x89, 0x07, 0x1e, 0x72, 0x11, 0x8e, 0x0b, 0xbe, + 0x55, 0xec, 0xaa, 0xda, 0x1e, 0xae, 0xfa, 0x44, 0x43, 0x74, 0x73, 0xe3, 0x18, 0x47, 0x58, 0xe4, + 0xcf, 0x05, 0xad, 0xfc, 0x2d, 0x09, 0x26, 0xc4, 0x32, 0xad, 0xea, 0x19, 0x6b, 0x15, 0x40, 0x35, + 0x0c, 0xd3, 0x0d, 0x9a, 0xab, 0xd5, 0x95, 0x5b, 0xe8, 0xe6, 0xe6, 0x3d, 0x22, 0x25, 0xc0, 0xa0, + 0xd0, 0x00, 0xf0, 0x9f, 0x74, 0x34, 0xdb, 0x0c, 0x8c, 0xf0, 0x37, 0x4c, 0xf4, 0x35, 0x25, 0x5b, + 0xd8, 0x03, 0x03, 0x91, 0xf5, 0x1c, 0x9a, 0x82, 0xc1, 0x1d, 0x5c, 0xd3, 0x0d, 0xbe, 0x6f, 0xcc, + 0x1a, 0x62, 0xfb, 0x25, 0xe5, 0x6d, 0xbf, 0x94, 0xfe, 0x32, 0x4c, 0x6a, 0x66, 0x23, 0x2a, 0x6e, + 0x29, 0x17, 0xd9, 0x5c, 0x70, 0x2e, 0x4a, 0x6f, 0x7b, 0x98, 0x23, 0xd5, 0xcc, 0xba, 0x6a, 0xd4, + 0xe6, 0x4c, 0xbb, 0xe6, 0xbf, 0x66, 0x25, 0x15, 0x8f, 0x13, 0x78, 0xd9, 0x6a, 0xed, 0xfc, 0x99, + 0x24, 0xfd, 0x62, 0x22, 0xb9, 0xb4, 0x51, 0xfa, 0x5c, 0xa2, 0xb0, 0xc4, 0x08, 0x37, 0x84, 0x31, + 0x14, 0xbc, 0x5b, 0xc7, 0x1a, 0x51, 0x10, 0xbe, 0xfb, 0x20, 0x4c, 0xd5, 0xcc, 0x9a, 0x49, 0x39, + 0x9d, 0x26, 0xbf, 0xf8, 0x7b, 0xda, 0x8c, 0x07, 0x2d, 0xc4, 0xbe, 0xd4, 0x2d, 0xae, 0xc1, 0x24, + 0x47, 0xae, 0xd0, 0x17, 0x45, 0x6c, 0x19, 0x83, 0xba, 0xee, 0xa1, 0xe5, 0xbf, 0xf0, 0x1d, 0x9a, + 0xbe, 0x95, 0x09, 0x4e, 0x4a, 0x9e, 0xb1, 0x95, 0x4e, 0x51, 0x81, 0x23, 0x21, 0x7e, 0x6c, 0x92, + 0x62, 0x3b, 0x86, 0xe3, 0x6f, 0x72, 0x8e, 0x93, 0x01, 0x8e, 0x9b, 0x9c, 0xb4, 0xb8, 0x00, 0xa3, + 0xfd, 0xf0, 0xfa, 0x97, 0x9c, 0x57, 0x16, 0x07, 0x99, 0x2c, 0xc1, 0x38, 0x65, 0xa2, 0x35, 0x1d, + 0xd7, 0x6c, 0xd0, 0x08, 0xd8, 0x9d, 0xcd, 0x6f, 0x7d, 0x87, 0xcd, 0x9a, 0x31, 0x42, 0xb6, 0xe0, + 0x51, 0x15, 0x8b, 0x40, 0xdf, 0x8d, 0x55, 0xb1, 0x56, 0x8f, 0xe1, 0xf0, 0x35, 0x2e, 0x88, 0x87, + 0x5f, 0xbc, 0x0c, 0x53, 0xe4, 0x37, 0x0d, 0x50, 0x41, 0x49, 0xe2, 0x37, 0xdc, 0xf2, 0xdf, 0x7a, + 0x2f, 0x9b, 0x98, 0x93, 0x1e, 0x83, 0x80, 0x4c, 0x81, 0x51, 0xac, 0x61, 0xd7, 0xc5, 0xb6, 0x53, + 0x51, 0xeb, 0xed, 0xc4, 0x0b, 0xec, 0x58, 0xe4, 0x3f, 0xf6, 0xbd, 0xf0, 0x28, 0x2e, 0x31, 0xca, + 0xf9, 0x7a, 0xbd, 0xb8, 0x0d, 0xc7, 0xda, 0x78, 0x45, 0x0f, 0x3c, 0x5f, 0xe5, 0x3c, 0xa7, 0x5a, + 0x3c, 0x83, 0xb0, 0xdd, 0x00, 0x01, 0xf7, 0xc6, 0xb2, 0x07, 0x9e, 0x1f, 0xe7, 0x3c, 0x11, 0xa7, + 0x15, 0x43, 0x4a, 0x38, 0x3e, 0x03, 0x13, 0x57, 0xb0, 0xbd, 0x63, 0x3a, 0x7c, 0x97, 0xa8, 0x07, + 0x76, 0x9f, 0xe0, 0xec, 0xc6, 0x39, 0x21, 0xdd, 0x36, 0x22, 0xbc, 0x9e, 0x82, 0xf4, 0xae, 0xaa, + 0xe1, 0x1e, 0x58, 0x5c, 0xe7, 0x2c, 0x86, 0x09, 0x3e, 0x21, 0x9d, 0x87, 0x6c, 0xcd, 0xe4, 0x39, + 0x2a, 0x9e, 0xfc, 0x93, 0x9c, 0x7c, 0x44, 0xd0, 0x70, 0x16, 0x96, 0x69, 0x35, 0xeb, 0x24, 0x81, + 0xc5, 0xb3, 0xf8, 0x5b, 0x82, 0x85, 0xa0, 0xe1, 0x2c, 0xfa, 0x30, 0xeb, 0xa7, 0x04, 0x0b, 0x27, + 0x60, 0xcf, 0xa7, 0x61, 0xc4, 0x34, 0xea, 0x07, 0xa6, 0xd1, 0x8b, 0x10, 0x9f, 0xe6, 0x1c, 0x80, + 0x93, 0x10, 0x06, 0xe7, 0x21, 0xd3, 0xeb, 0x40, 0xfc, 0xed, 0xef, 0x89, 0xe9, 0x21, 0x46, 0x60, + 0x09, 0xc6, 0x45, 0x80, 0xd2, 0x4d, 0xa3, 0x07, 0x16, 0x7f, 0x87, 0xb3, 0x18, 0x0b, 0x90, 0x71, + 0x35, 0x5c, 0xec, 0xb8, 0x35, 0xdc, 0x0b, 0x93, 0xcf, 0x0a, 0x35, 0x38, 0x09, 0x37, 0xe5, 0x0e, + 0x36, 0xb4, 0xbd, 0xde, 0x38, 0xfc, 0xb2, 0x30, 0xa5, 0xa0, 0x21, 0x2c, 0x16, 0x60, 0xb4, 0xa1, + 0xda, 0xce, 0x9e, 0x5a, 0xef, 0x69, 0x38, 0xfe, 0x2e, 0xe7, 0x91, 0xf5, 0x88, 0xb8, 0x45, 0x9a, + 0x46, 0x3f, 0x6c, 0x3e, 0x27, 0x2c, 0x12, 0x20, 0xe3, 0x53, 0xcf, 0x71, 0xe9, 0x96, 0x5a, 0x3f, + 0xdc, 0x7e, 0x45, 0x4c, 0x3d, 0x46, 0xbb, 0x1a, 0xe4, 0x78, 0x1e, 0x32, 0x8e, 0xfe, 0x52, 0x4f, + 0x6c, 0x3e, 0x2f, 0x46, 0x9a, 0x12, 0x10, 0xe2, 0xb7, 0xc2, 0xf1, 0xb6, 0x69, 0xa2, 0x07, 0x66, + 0x7f, 0x8f, 0x33, 0x3b, 0xda, 0x26, 0x55, 0xf0, 0x90, 0xd0, 0x2f, 0xcb, 0xbf, 0x2f, 0x42, 0x02, + 0x8e, 0xf0, 0xda, 0x20, 0xab, 0x06, 0x47, 0xdd, 0xed, 0xcf, 0x6a, 0xbf, 0x2a, 0xac, 0xc6, 0x68, + 0x43, 0x56, 0xdb, 0x82, 0xa3, 0x9c, 0x63, 0x7f, 0xe3, 0xfa, 0x6b, 0x22, 0xb0, 0x32, 0xea, 0xed, + 0xf0, 0xe8, 0xbe, 0x1d, 0x0a, 0x9e, 0x39, 0x45, 0x79, 0xea, 0x54, 0x1a, 0xaa, 0xd5, 0x03, 0xe7, + 0x2f, 0x70, 0xce, 0x22, 0xe2, 0x7b, 0xf5, 0xad, 0xb3, 0xaa, 0x5a, 0x84, 0xf9, 0xf3, 0x90, 0x17, + 0xcc, 0x9b, 0x86, 0x8d, 0x35, 0xb3, 0x66, 0xe8, 0x2f, 0xe1, 0x6a, 0x0f, 0xac, 0x7f, 0x3d, 0x32, + 0x54, 0xdb, 0x01, 0x72, 0xc2, 0x79, 0x19, 0x72, 0x5e, 0xad, 0x52, 0xd1, 0x1b, 0x96, 0x69, 0xbb, + 0x31, 0x1c, 0xbf, 0x28, 0x46, 0xca, 0xa3, 0x5b, 0xa6, 0x64, 0xc5, 0x32, 0xb0, 0xf7, 0xcc, 0xbd, + 0xba, 0xe4, 0x97, 0x38, 0xa3, 0x51, 0x9f, 0x8a, 0x07, 0x0e, 0xcd, 0x6c, 0x58, 0xaa, 0xdd, 0x4b, + 0xfc, 0xfb, 0x07, 0x22, 0x70, 0x70, 0x12, 0x1e, 0x38, 0x48, 0x45, 0x47, 0xb2, 0x7d, 0x0f, 0x1c, + 0xbe, 0x2c, 0x02, 0x87, 0xa0, 0xe1, 0x2c, 0x44, 0xc1, 0xd0, 0x03, 0x8b, 0x7f, 0x28, 0x58, 0x08, + 0x1a, 0xc2, 0xe2, 0x59, 0x3f, 0xd1, 0xda, 0xb8, 0xa6, 0x3b, 0xae, 0xcd, 0x8a, 0xe2, 0xee, 0xac, + 0xfe, 0xd1, 0xf7, 0xc2, 0x45, 0x98, 0x12, 0x20, 0x25, 0x91, 0x88, 0x6f, 0xb2, 0xd2, 0x35, 0x53, + 0xbc, 0x60, 0xbf, 0x21, 0x22, 0x51, 0x80, 0x8c, 0xc8, 0x16, 0xa8, 0x10, 0x89, 0xd9, 0x35, 0xb2, + 0x52, 0xe8, 0x81, 0xdd, 0x3f, 0x8e, 0x08, 0xb7, 0x29, 0x68, 0x09, 0xcf, 0x40, 0xfd, 0xd3, 0x34, + 0xf6, 0xf1, 0x41, 0x4f, 0xde, 0xf9, 0x4f, 0x22, 0xf5, 0xcf, 0x36, 0xa3, 0x64, 0x31, 0x64, 0x3c, + 0x52, 0x4f, 0xa1, 0xb8, 0x53, 0x45, 0xf9, 0x9f, 0xf9, 0x01, 0xd7, 0x37, 0x5c, 0x4e, 0x15, 0x57, + 0x88, 0x93, 0x87, 0x8b, 0x9e, 0x78, 0x66, 0xef, 0xfd, 0x81, 0xe7, 0xe7, 0xa1, 0x9a, 0xa7, 0x78, + 0x01, 0x46, 0x43, 0x05, 0x4f, 0x3c, 0xab, 0xf7, 0x71, 0x56, 0xd9, 0x60, 0xbd, 0x53, 0x3c, 0x0b, + 0x29, 0x52, 0xbc, 0xc4, 0x93, 0xff, 0x15, 0x4e, 0x4e, 0xd1, 0x8b, 0x6f, 0x86, 0xb4, 0x28, 0x5a, + 0xe2, 0x49, 0xdf, 0xcf, 0x49, 0x3d, 0x12, 0x42, 0x2e, 0x0a, 0x96, 0x78, 0xf2, 0xbf, 0x2a, 0xc8, + 0x05, 0x09, 0x21, 0xef, 0xdd, 0x84, 0x5f, 0xf9, 0xd9, 0x14, 0x4f, 0x3a, 0xc2, 0x76, 0xe7, 0x61, + 0x98, 0x57, 0x2a, 0xf1, 0xd4, 0x1f, 0xe4, 0x9d, 0x0b, 0x8a, 0xe2, 0x13, 0x30, 0xd8, 0xa3, 0xc1, + 0x7f, 0x8e, 0x93, 0x32, 0xfc, 0xe2, 0x02, 0x8c, 0x04, 0xaa, 0x93, 0x78, 0xf2, 0xbf, 0xc6, 0xc9, + 0x83, 0x54, 0x44, 0x74, 0x5e, 0x9d, 0xc4, 0x33, 0xf8, 0x79, 0x21, 0x3a, 0xa7, 0x20, 0x66, 0x13, + 0x85, 0x49, 0x3c, 0xf5, 0x87, 0x84, 0xd5, 0x05, 0x49, 0xf1, 0x69, 0xc8, 0x78, 0xc9, 0x26, 0x9e, + 0xfe, 0xc3, 0x9c, 0xde, 0xa7, 0x21, 0x16, 0x08, 0x24, 0xbb, 0x78, 0x16, 0x7f, 0x5d, 0x58, 0x20, + 0x40, 0x45, 0xa6, 0x51, 0xb4, 0x80, 0x89, 0xe7, 0xf4, 0x11, 0x31, 0x8d, 0x22, 0xf5, 0x0b, 0x19, + 0x4d, 0x1a, 0xf3, 0xe3, 0x59, 0xfc, 0x0d, 0x31, 0x9a, 0x14, 0x9f, 0x88, 0x11, 0xad, 0x08, 0xe2, + 0x79, 0xfc, 0x82, 0x10, 0x23, 0x52, 0x10, 0x14, 0x37, 0x00, 0xb5, 0x56, 0x03, 0xf1, 0xfc, 0x3e, + 0xca, 0xf9, 0x4d, 0xb4, 0x14, 0x03, 0xc5, 0xe7, 0xe0, 0x68, 0xfb, 0x4a, 0x20, 0x9e, 0xeb, 0xc7, + 0x7e, 0x10, 0x59, 0xbb, 0x05, 0x0b, 0x81, 0xe2, 0x96, 0x9f, 0x52, 0x82, 0x55, 0x40, 0x3c, 0xdb, + 0x57, 0x7f, 0x10, 0x0e, 0xdc, 0xc1, 0x22, 0xa0, 0x38, 0x0f, 0xe0, 0x27, 0xe0, 0x78, 0x5e, 0x9f, + 0xe0, 0xbc, 0x02, 0x44, 0x64, 0x6a, 0xf0, 0xfc, 0x1b, 0x4f, 0x7f, 0x5d, 0x4c, 0x0d, 0x4e, 0x41, + 0xa6, 0x86, 0x48, 0xbd, 0xf1, 0xd4, 0x9f, 0x14, 0x53, 0x43, 0x90, 0x10, 0xcf, 0x0e, 0x64, 0xb7, + 0x78, 0x0e, 0x9f, 0x16, 0x9e, 0x1d, 0xa0, 0x2a, 0xae, 0xc1, 0x44, 0x4b, 0x42, 0x8c, 0x67, 0xf5, + 0x8b, 0x9c, 0x55, 0x2e, 0x9a, 0x0f, 0x83, 0xc9, 0x8b, 0x27, 0xc3, 0x78, 0x6e, 0x9f, 0x89, 0x24, + 0x2f, 0x9e, 0x0b, 0x8b, 0xe7, 0x21, 0x6d, 0x34, 0xeb, 0x75, 0x32, 0x79, 0x50, 0xf7, 0x93, 0x80, + 0xf9, 0xff, 0xf2, 0x43, 0x6e, 0x1d, 0x41, 0x50, 0x3c, 0x0b, 0x83, 0xb8, 0xb1, 0x83, 0xab, 0x71, + 0x94, 0xdf, 0xfd, 0xa1, 0x08, 0x98, 0x04, 0xbb, 0xf8, 0x34, 0x00, 0xdb, 0x1a, 0xa1, 0x2f, 0x03, + 0x63, 0x68, 0xff, 0xeb, 0x0f, 0xf9, 0xd1, 0x1b, 0x9f, 0xc4, 0x67, 0xc0, 0x0e, 0xf2, 0x74, 0x67, + 0xf0, 0xbd, 0x30, 0x03, 0x3a, 0x22, 0x4f, 0xc1, 0xf0, 0x0b, 0x8e, 0x69, 0xb8, 0x6a, 0x2d, 0x8e, + 0xfa, 0xbf, 0x71, 0x6a, 0x81, 0x4f, 0x0c, 0xd6, 0x30, 0x6d, 0xec, 0xaa, 0x35, 0x27, 0x8e, 0xf6, + 0xbf, 0x73, 0x5a, 0x8f, 0x80, 0x10, 0x6b, 0xaa, 0xe3, 0xf6, 0xa2, 0xf7, 0x1f, 0x09, 0x62, 0x41, + 0x40, 0x84, 0x26, 0xbf, 0xf7, 0xf1, 0x41, 0x1c, 0xed, 0xf7, 0x85, 0xd0, 0x1c, 0xbf, 0xf8, 0x66, + 0xc8, 0x90, 0x9f, 0xec, 0x3c, 0x5d, 0x0c, 0xf1, 0x1f, 0x73, 0x62, 0x9f, 0x82, 0xf4, 0xec, 0xb8, + 0x55, 0x57, 0x8f, 0x37, 0xf6, 0x4d, 0x3e, 0xd2, 0x02, 0xbf, 0x38, 0x0f, 0x23, 0x8e, 0x5b, 0xad, + 0x36, 0x79, 0x7d, 0x1a, 0x43, 0xfe, 0x27, 0x3f, 0xf4, 0xb6, 0x2c, 0x3c, 0x1a, 0x32, 0xda, 0x57, + 0xf7, 0x5d, 0xcb, 0xa4, 0x2f, 0x3c, 0xe2, 0x38, 0xfc, 0x80, 0x73, 0x08, 0x90, 0x14, 0x17, 0x20, + 0x4b, 0x74, 0xb1, 0xb1, 0x85, 0xe9, 0xdb, 0xa9, 0x18, 0x16, 0x7f, 0xca, 0x0d, 0x10, 0x22, 0x2a, + 0xfd, 0xf4, 0xd7, 0x5e, 0x9b, 0x96, 0xbe, 0xf9, 0xda, 0xb4, 0xf4, 0x07, 0xaf, 0x4d, 0x4b, 0x1f, + 0xfa, 0xf6, 0xf4, 0xc0, 0x37, 0xbf, 0x3d, 0x3d, 0xf0, 0xbb, 0xdf, 0x9e, 0x1e, 0x68, 0xbf, 0x4b, + 0x0c, 0x4b, 0xe6, 0x92, 0xc9, 0xf6, 0x87, 0xdf, 0x26, 0xd7, 0x74, 0x77, 0xaf, 0xb9, 0x33, 0xa7, + 0x99, 0x0d, 0xba, 0x8d, 0xeb, 0xef, 0xd6, 0x7a, 0x8b, 0x1c, 0xf8, 0x53, 0x89, 0x2c, 0x98, 0xc3, + 0x7b, 0xb9, 0xaa, 0x71, 0xd0, 0xe1, 0x66, 0x4e, 0xa1, 0xed, 0xc6, 0xb0, 0xfc, 0x26, 0x48, 0xce, + 0x1b, 0x07, 0xe8, 0x38, 0x8b, 0x79, 0x95, 0xa6, 0x5d, 0xe7, 0xe7, 0xbc, 0x86, 0x49, 0x7b, 0xdb, + 0xae, 0xa3, 0x29, 0xff, 0x30, 0xa6, 0x74, 0x32, 0xcb, 0x4f, 0x58, 0x16, 0x53, 0xdf, 0xff, 0xf4, + 0xcc, 0x40, 0x69, 0x3f, 0xaa, 0xe1, 0x57, 0x62, 0xb5, 0x4c, 0xcf, 0x1b, 0x07, 0x54, 0xc9, 0x0d, + 0xe9, 0x6d, 0x83, 0x74, 0xa3, 0x5b, 0x6c, 0x6c, 0x4f, 0x47, 0x37, 0xb6, 0x9f, 0xc3, 0xf5, 0xfa, + 0x25, 0xc3, 0xbc, 0x6a, 0x6c, 0x11, 0xb4, 0x9d, 0x21, 0x76, 0x68, 0x18, 0x3e, 0x92, 0x80, 0xe9, + 0x96, 0x3d, 0x6c, 0x3e, 0xf2, 0x9d, 0xae, 0x25, 0x15, 0x21, 0xbd, 0x28, 0x1c, 0x2a, 0x0f, 0xc3, + 0x0e, 0xd6, 0x4c, 0xa3, 0xea, 0x50, 0x55, 0x93, 0x8a, 0x68, 0x12, 0x55, 0x0d, 0xd5, 0x30, 0x1d, + 0x7e, 0x16, 0x92, 0x35, 0x4a, 0x1f, 0x97, 0xfa, 0x1b, 0xc7, 0x51, 0xd1, 0x93, 0x50, 0xf3, 0xd1, + 0xd8, 0xad, 0xfe, 0x7d, 0xa2, 0xa5, 0xa7, 0x44, 0x68, 0xbb, 0xbf, 0x57, 0xab, 0xfc, 0x42, 0x02, + 0x66, 0xa2, 0x56, 0x21, 0xd3, 0xc9, 0x71, 0xd5, 0x86, 0xd5, 0xc9, 0x2c, 0xe7, 0x21, 0xb3, 0x25, + 0x70, 0xfa, 0xb6, 0xcb, 0xf5, 0x3e, 0xed, 0x32, 0xe6, 0x75, 0x25, 0x0c, 0x73, 0xa6, 0x47, 0xc3, + 0x78, 0x7a, 0x1c, 0xca, 0x32, 0xef, 0x49, 0xc2, 0x71, 0xcd, 0x74, 0x1a, 0xa6, 0x53, 0x61, 0xee, + 0xcf, 0x1a, 0xdc, 0x26, 0xd9, 0xe0, 0xa3, 0x1e, 0x5e, 0x8e, 0x5c, 0x84, 0x31, 0x1a, 0x22, 0xe8, + 0xb6, 0x30, 0x8d, 0xca, 0xb1, 0x89, 0xf4, 0xeb, 0xff, 0x76, 0x90, 0x4e, 0xa9, 0x51, 0x8f, 0x90, + 0x9e, 0x72, 0xd9, 0x82, 0x29, 0xbd, 0x61, 0xd5, 0x31, 0x7d, 0x1d, 0x56, 0xf1, 0x9e, 0xc5, 0xf3, + 0xfb, 0x06, 0xe7, 0x37, 0xe9, 0x93, 0x2f, 0x0b, 0xea, 0xe2, 0x0a, 0x4c, 0xa8, 0x9a, 0x86, 0xad, + 0x10, 0xcb, 0x98, 0xf0, 0x25, 0x04, 0xcc, 0x71, 0x4a, 0x8f, 0x5b, 0xe9, 0xe9, 0x4e, 0x43, 0xfc, + 0xb6, 0x7b, 0x03, 0x11, 0xca, 0xc6, 0x35, 0x6c, 0x3c, 0x6c, 0x60, 0xf7, 0xaa, 0x69, 0xef, 0x73, + 0xf3, 0x3e, 0xcc, 0xba, 0x12, 0x83, 0xf0, 0xbe, 0x24, 0x4c, 0xb3, 0x07, 0xa7, 0x77, 0x54, 0x07, + 0x9f, 0xbe, 0xf2, 0xe8, 0x0e, 0x76, 0xd5, 0x47, 0x4f, 0x6b, 0xa6, 0x2e, 0x26, 0xed, 0x24, 0x1f, + 0x17, 0xf2, 0x7c, 0x8e, 0x3f, 0xef, 0x10, 0xb5, 0x96, 0x20, 0xb5, 0x60, 0xea, 0x06, 0x71, 0xcc, + 0x2a, 0x36, 0xcc, 0x06, 0x8f, 0x59, 0xac, 0x81, 0xee, 0x86, 0x21, 0xb5, 0x61, 0x36, 0x0d, 0x97, + 0xbd, 0xc9, 0x2b, 0x8d, 0x7c, 0xed, 0xc6, 0xcc, 0xc0, 0xef, 0xdd, 0x98, 0x49, 0x2e, 0x1b, 0xae, + 0xc2, 0x1f, 0x15, 0x53, 0xaf, 0x7f, 0x6a, 0x46, 0x92, 0x9f, 0x81, 0xe1, 0x45, 0xac, 0x1d, 0x86, + 0xd7, 0x22, 0xd6, 0x22, 0xbc, 0x1e, 0x80, 0xf4, 0xb2, 0xe1, 0xb2, 0xd3, 0xc3, 0x77, 0x42, 0x52, + 0x37, 0xd8, 0x81, 0xb4, 0x48, 0xff, 0x04, 0x4e, 0x50, 0x17, 0xb1, 0xe6, 0xa1, 0x56, 0xb1, 0x16, + 0x45, 0x25, 0xec, 0x09, 0xbc, 0xb4, 0xf8, 0xbb, 0xff, 0x69, 0x7a, 0xe0, 0xe5, 0xd7, 0xa6, 0x07, + 0x3a, 0x8e, 0x44, 0x30, 0x57, 0x70, 0x13, 0xf3, 0x21, 0x70, 0xaa, 0xfb, 0x6c, 0x1e, 0x79, 0xc3, + 0xf0, 0xb9, 0x14, 0xdc, 0x49, 0x2f, 0x8e, 0xd8, 0x0d, 0xdd, 0x70, 0x4f, 0x6b, 0xf6, 0x81, 0xe5, + 0xd2, 0xe4, 0x62, 0xee, 0xf2, 0x51, 0x98, 0xf0, 0x1f, 0xcf, 0xb1, 0xc7, 0x1d, 0xc6, 0x60, 0x17, + 0x06, 0x37, 0x08, 0x1d, 0x31, 0x9c, 0x6b, 0xba, 0x6a, 0x9d, 0x47, 0x0d, 0xd6, 0x20, 0x50, 0x76, + 0xd9, 0x24, 0xc1, 0xa0, 0xba, 0xb8, 0x67, 0x52, 0xc7, 0xea, 0x2e, 0x3b, 0xb3, 0x9b, 0xa4, 0x09, + 0x25, 0x4d, 0x00, 0xf4, 0x78, 0xee, 0x14, 0x0c, 0xaa, 0x4d, 0xf6, 0xba, 0x39, 0x49, 0x32, 0x0d, + 0x6d, 0xc8, 0x97, 0x60, 0x98, 0xbf, 0xf4, 0x42, 0x39, 0x48, 0xee, 0xe3, 0x03, 0xda, 0x4f, 0x56, + 0x21, 0x3f, 0xd1, 0x1c, 0x0c, 0x52, 0xe1, 0xf9, 0x65, 0x84, 0xfc, 0x5c, 0x8b, 0xf4, 0x73, 0x54, + 0x48, 0x85, 0xa1, 0xc9, 0xcf, 0x40, 0x7a, 0xd1, 0x6c, 0xe8, 0x86, 0x19, 0xe6, 0x96, 0x61, 0xdc, + 0xa8, 0xcc, 0x56, 0x93, 0x8f, 0xb5, 0xc2, 0x1a, 0xe8, 0x28, 0x0c, 0xb1, 0x33, 0xdc, 0xfc, 0x95, + 0x39, 0x6f, 0xc9, 0x0b, 0x30, 0x4c, 0x79, 0xaf, 0x5b, 0x08, 0xf1, 0xdb, 0x3f, 0xfc, 0xb0, 0x38, + 0x0d, 0x0b, 0x9c, 0x7d, 0xc2, 0x17, 0x16, 0x41, 0xaa, 0xaa, 0xba, 0x2a, 0xd7, 0x9b, 0xfe, 0x96, + 0xdf, 0x02, 0x69, 0xce, 0xc4, 0x41, 0x67, 0x20, 0x69, 0x5a, 0x0e, 0x7f, 0xe9, 0x5d, 0xe8, 0xa4, + 0xca, 0xba, 0x55, 0x4a, 0x11, 0x2f, 0x51, 0x08, 0x72, 0x49, 0xe9, 0xe8, 0x16, 0x4f, 0x06, 0xdc, + 0x22, 0x30, 0xe4, 0x81, 0x9f, 0x6c, 0x48, 0x5b, 0xdc, 0xc1, 0x73, 0x96, 0x4f, 0x27, 0x60, 0x3a, + 0xf0, 0xf4, 0x0a, 0xb6, 0xc9, 0xca, 0x8f, 0x79, 0x14, 0xf7, 0x16, 0x14, 0x10, 0x92, 0x3f, 0xef, + 0xe0, 0x2e, 0x6f, 0x86, 0xe4, 0xbc, 0x65, 0xa1, 0x02, 0xa4, 0x69, 0x5b, 0x33, 0x99, 0xbf, 0xa4, + 0x14, 0xaf, 0x4d, 0x9e, 0x39, 0xe6, 0xae, 0x7b, 0x55, 0xb5, 0xbd, 0x6b, 0x4e, 0xa2, 0x2d, 0x3f, + 0x05, 0x99, 0x05, 0xd3, 0x70, 0xb0, 0xe1, 0x34, 0x69, 0x3e, 0xda, 0xa9, 0x9b, 0xda, 0x3e, 0xe7, + 0xc0, 0x1a, 0xc4, 0xe0, 0xaa, 0x65, 0x51, 0xca, 0x94, 0x42, 0x7e, 0xb2, 0x79, 0x59, 0xda, 0xec, + 0x68, 0xa2, 0xa7, 0xfa, 0x37, 0x11, 0x57, 0xd2, 0xb3, 0xd1, 0xff, 0x96, 0xe0, 0x44, 0xeb, 0x84, + 0xda, 0xc7, 0x07, 0x4e, 0xbf, 0xf3, 0xe9, 0x79, 0xc8, 0x6c, 0xd0, 0xbb, 0xc6, 0x97, 0xf0, 0x01, + 0x2a, 0xc0, 0x30, 0xae, 0x9e, 0x39, 0x7b, 0xf6, 0xd1, 0xa7, 0x98, 0xb7, 0x5f, 0x1c, 0x50, 0x04, + 0x00, 0x4d, 0x43, 0xc6, 0xc1, 0x9a, 0x75, 0xe6, 0xec, 0xb9, 0xfd, 0x47, 0x99, 0x7b, 0x5d, 0x1c, + 0x50, 0x7c, 0x50, 0x31, 0x4d, 0xb4, 0x7e, 0xfd, 0xd3, 0x33, 0x52, 0x69, 0x10, 0x92, 0x4e, 0xb3, + 0x71, 0x5b, 0x7d, 0xe4, 0xd5, 0x41, 0x98, 0x0d, 0x52, 0xd2, 0xac, 0x7d, 0x45, 0xad, 0xeb, 0x55, + 0xd5, 0xbf, 0x25, 0x9e, 0x0b, 0xd8, 0x80, 0x62, 0xb4, 0x37, 0x41, 0xa1, 0xab, 0x25, 0xe5, 0x5f, + 0x97, 0x20, 0x7b, 0x59, 0x70, 0xde, 0xc4, 0x2e, 0x3a, 0x0f, 0xe0, 0xf5, 0x24, 0xa6, 0xcd, 0x1d, + 0x73, 0xd1, 0xbe, 0xe6, 0x3c, 0x1a, 0x25, 0x80, 0x8e, 0x9e, 0xa0, 0x8e, 0x68, 0x99, 0x0e, 0xbf, + 0xfa, 0x12, 0x43, 0xea, 0x21, 0xa3, 0x87, 0x00, 0xd1, 0x08, 0x57, 0xb9, 0x62, 0xba, 0xba, 0x51, + 0xab, 0x58, 0xe6, 0x55, 0x7e, 0xa1, 0x30, 0xa9, 0xe4, 0xe8, 0x93, 0xcb, 0xf4, 0xc1, 0x06, 0x81, + 0x13, 0xa1, 0x33, 0x1e, 0x17, 0x52, 0x62, 0xa9, 0xd5, 0xaa, 0x8d, 0x1d, 0x87, 0x07, 0x31, 0xd1, + 0x44, 0xe7, 0x61, 0xd8, 0x6a, 0xee, 0x54, 0x44, 0xc4, 0x18, 0x39, 0x73, 0xa2, 0xdd, 0xfc, 0x17, + 0xfe, 0xc1, 0x23, 0xc0, 0x90, 0xd5, 0xdc, 0x21, 0xde, 0x72, 0x17, 0x64, 0xdb, 0x08, 0x33, 0x72, + 0xc5, 0x97, 0x83, 0x5e, 0x71, 0xe7, 0x1a, 0x54, 0x2c, 0x5b, 0x37, 0x6d, 0xdd, 0x3d, 0xa0, 0x27, + 0x57, 0x92, 0x4a, 0x4e, 0x3c, 0xd8, 0xe0, 0x70, 0x79, 0x1f, 0xc6, 0x37, 0x69, 0x6d, 0xe1, 0x4b, + 0x7e, 0xd6, 0x97, 0x4f, 0x8a, 0x97, 0xaf, 0xa3, 0x64, 0x89, 0x16, 0xc9, 0x4a, 0xcf, 0x76, 0xf4, + 0xce, 0x27, 0xfa, 0xf7, 0xce, 0x70, 0xb6, 0xfb, 0xa3, 0xe3, 0xa1, 0xc9, 0xc9, 0x9c, 0x33, 0x18, + 0xbe, 0x7a, 0x75, 0xcc, 0xb8, 0xca, 0xba, 0xd0, 0x3d, 0xa9, 0x16, 0x62, 0xc2, 0x68, 0x21, 0x76, + 0x0a, 0xc9, 0x4f, 0xc1, 0xe8, 0x86, 0x6a, 0xbb, 0x9b, 0xd8, 0xbd, 0x88, 0xd5, 0x2a, 0xb6, 0xc3, + 0x59, 0x77, 0x54, 0x64, 0x5d, 0x04, 0x29, 0x9a, 0x5a, 0x59, 0xd6, 0xa1, 0xbf, 0xe5, 0x3d, 0x48, + 0xd1, 0xd3, 0x6b, 0x5e, 0x46, 0xe6, 0x14, 0x2c, 0x23, 0x93, 0x58, 0x7a, 0xe0, 0x62, 0x47, 0x2c, + 0xef, 0x68, 0x03, 0x3d, 0x2e, 0xf2, 0x6a, 0xb2, 0x7b, 0x5e, 0xe5, 0x8e, 0xc8, 0xb3, 0x6b, 0x1d, + 0x86, 0x4b, 0x24, 0x14, 0x2f, 0x2f, 0x7a, 0x82, 0x48, 0xbe, 0x20, 0x68, 0x15, 0xc6, 0x2d, 0xd5, + 0x76, 0xe9, 0xb1, 0xfd, 0x3d, 0xaa, 0x05, 0xf7, 0xf5, 0x99, 0xd6, 0x99, 0x17, 0x52, 0x96, 0xf7, + 0x32, 0x6a, 0x05, 0x81, 0xf2, 0x1f, 0xa6, 0x60, 0x88, 0x1b, 0xe3, 0xcd, 0x30, 0xcc, 0xcd, 0xca, + 0xbd, 0xf3, 0xce, 0xb9, 0xd6, 0xc4, 0x34, 0xe7, 0x25, 0x10, 0xce, 0x4f, 0xd0, 0xa0, 0xfb, 0x20, + 0xad, 0xed, 0xa9, 0xba, 0x51, 0xd1, 0xab, 0xa2, 0xcc, 0x7b, 0xed, 0xc6, 0xcc, 0xf0, 0x02, 0x81, + 0x2d, 0x2f, 0x2a, 0xc3, 0xf4, 0xe1, 0x72, 0x95, 0x54, 0x02, 0x7b, 0x58, 0xaf, 0xed, 0xb9, 0x7c, + 0x86, 0xf1, 0x16, 0x7a, 0x12, 0x52, 0xc4, 0x21, 0xf8, 0xa5, 0xae, 0x42, 0x4b, 0xb1, 0xed, 0x2d, + 0x7c, 0x4a, 0x69, 0xd2, 0xf1, 0x87, 0x7e, 0x7f, 0x46, 0x52, 0x28, 0x05, 0x5a, 0x80, 0xd1, 0xba, + 0xea, 0xb8, 0x15, 0x9a, 0xc1, 0x48, 0xf7, 0x83, 0x94, 0xc5, 0xf1, 0x56, 0x83, 0x70, 0xc3, 0x72, + 0xd1, 0x47, 0x08, 0x15, 0x03, 0x55, 0xd1, 0x49, 0xc8, 0x51, 0x26, 0x9a, 0xd9, 0x68, 0xe8, 0x2e, + 0xab, 0xad, 0x86, 0xa8, 0xdd, 0xc7, 0x08, 0x7c, 0x81, 0x82, 0x69, 0x85, 0x75, 0x07, 0x64, 0xe8, + 0x35, 0x12, 0x8a, 0xc2, 0x8e, 0x4c, 0xa6, 0x09, 0x80, 0x3e, 0xbc, 0x1f, 0xc6, 0xfd, 0xf8, 0xc8, + 0x50, 0xd2, 0x8c, 0x8b, 0x0f, 0xa6, 0x88, 0x8f, 0xc0, 0x94, 0x81, 0xaf, 0xd1, 0x43, 0x9c, 0x21, + 0xec, 0x0c, 0xc5, 0x46, 0xe4, 0xd9, 0xe5, 0x30, 0xc5, 0xbd, 0x30, 0xa6, 0x09, 0xe3, 0x33, 0x5c, + 0xa0, 0xb8, 0xa3, 0x1e, 0x94, 0xa2, 0x1d, 0x87, 0xb4, 0x6a, 0x59, 0x0c, 0x61, 0x84, 0xc7, 0x47, + 0xcb, 0xa2, 0x8f, 0x4e, 0xc1, 0x04, 0xd5, 0xd1, 0xc6, 0x4e, 0xb3, 0xee, 0x72, 0x26, 0x59, 0x8a, + 0x33, 0x4e, 0x1e, 0x28, 0x0c, 0x4e, 0x71, 0xef, 0x86, 0x51, 0x7c, 0x45, 0xaf, 0x62, 0x43, 0xc3, + 0x0c, 0x6f, 0x94, 0xe2, 0x65, 0x05, 0x90, 0x22, 0x3d, 0x00, 0x5e, 0xdc, 0xab, 0x88, 0x98, 0x3c, + 0xc6, 0xf8, 0x09, 0xf8, 0x3c, 0x03, 0xcb, 0x79, 0x48, 0x2d, 0xaa, 0xae, 0x4a, 0x0a, 0x0c, 0xf7, + 0x1a, 0x4b, 0x34, 0x59, 0x85, 0xfc, 0x94, 0x5f, 0x4f, 0x40, 0xea, 0xb2, 0xe9, 0x62, 0xf4, 0x58, + 0xa0, 0x00, 0x1c, 0x6b, 0xe7, 0xcf, 0x9b, 0x7a, 0xcd, 0xc0, 0xd5, 0x55, 0xa7, 0x16, 0xb8, 0xf3, + 0xed, 0xbb, 0x53, 0x22, 0xe4, 0x4e, 0x53, 0x30, 0x68, 0x9b, 0x4d, 0xa3, 0x2a, 0x4e, 0x1b, 0xd2, + 0x06, 0x2a, 0x43, 0xda, 0xf3, 0x92, 0x54, 0x9c, 0x97, 0x8c, 0x13, 0x2f, 0x21, 0x3e, 0xcc, 0x01, + 0xca, 0xf0, 0x0e, 0x77, 0x96, 0x12, 0x64, 0xbc, 0xe0, 0xc5, 0xbd, 0xad, 0x37, 0x87, 0xf5, 0xc9, + 0x48, 0x32, 0xf1, 0xc6, 0xde, 0x33, 0x1e, 0xf3, 0xb8, 0x9c, 0xf7, 0x80, 0x5b, 0x2f, 0xe4, 0x56, + 0xfc, 0xfe, 0xf9, 0x30, 0xd5, 0xcb, 0x77, 0x2b, 0x76, 0x07, 0xfd, 0x04, 0x64, 0x1c, 0xbd, 0x66, + 0xa8, 0x6e, 0xd3, 0xc6, 0xdc, 0xf3, 0x7c, 0x80, 0xfc, 0x15, 0x09, 0x86, 0x98, 0x27, 0x07, 0xec, + 0x26, 0xb5, 0xb7, 0x5b, 0xa2, 0x93, 0xdd, 0x92, 0x87, 0xb7, 0xdb, 0x3c, 0x80, 0x27, 0x8c, 0xc3, + 0xaf, 0x05, 0xb7, 0xa9, 0x18, 0x98, 0x88, 0x9b, 0x7a, 0x8d, 0x4f, 0xd4, 0x00, 0x91, 0xfc, 0x1f, + 0x25, 0x52, 0xc4, 0xf2, 0xe7, 0x68, 0x1e, 0x46, 0x85, 0x5c, 0x95, 0xdd, 0xba, 0x5a, 0xe3, 0xbe, + 0x73, 0x67, 0x47, 0xe1, 0x2e, 0xd4, 0xd5, 0x9a, 0x32, 0xc2, 0xe5, 0x21, 0x8d, 0xf6, 0xe3, 0x90, + 0xe8, 0x30, 0x0e, 0xa1, 0x81, 0x4f, 0x1e, 0x6e, 0xe0, 0x43, 0x43, 0x94, 0x8a, 0x0e, 0xd1, 0x17, + 0x13, 0x74, 0x31, 0x63, 0x99, 0x8e, 0x5a, 0xff, 0x71, 0xcc, 0x88, 0x3b, 0x20, 0x63, 0x99, 0xf5, + 0x0a, 0x7b, 0xc2, 0x4e, 0xe1, 0xa6, 0x2d, 0xb3, 0xae, 0xb4, 0x0c, 0xfb, 0xe0, 0x2d, 0x9a, 0x2e, + 0x43, 0xb7, 0xc0, 0x6a, 0xc3, 0x51, 0xab, 0xd9, 0x90, 0x65, 0xa6, 0xe0, 0xb9, 0xec, 0x11, 0x62, + 0x03, 0x9a, 0x1c, 0xa5, 0xd6, 0xdc, 0xcb, 0xc4, 0x66, 0x98, 0x0a, 0xc7, 0x23, 0x14, 0x2c, 0xf4, + 0xb7, 0x5b, 0x05, 0x07, 0xdd, 0x52, 0xe1, 0x78, 0xf2, 0xdf, 0x94, 0x00, 0x56, 0x88, 0x65, 0xa9, + 0xbe, 0x24, 0x0b, 0x39, 0x54, 0x84, 0x4a, 0xa8, 0xe7, 0xe9, 0x4e, 0x83, 0xc6, 0xfb, 0xcf, 0x3a, + 0x41, 0xb9, 0x17, 0x60, 0xd4, 0x77, 0x46, 0x07, 0x0b, 0x61, 0xa6, 0xbb, 0x54, 0xd5, 0x9b, 0xd8, + 0x55, 0xb2, 0x57, 0x02, 0x2d, 0xf9, 0x9f, 0x4b, 0x90, 0xa1, 0x32, 0xad, 0x62, 0x57, 0x0d, 0x8d, + 0xa1, 0x74, 0xf8, 0x31, 0xbc, 0x13, 0x80, 0xb1, 0x71, 0xf4, 0x97, 0x30, 0xf7, 0xac, 0x0c, 0x85, + 0x6c, 0xea, 0x2f, 0x61, 0x74, 0xce, 0x33, 0x78, 0xb2, 0xbb, 0xc1, 0x45, 0xd5, 0xcd, 0xcd, 0x7e, + 0x0c, 0x86, 0xe9, 0x67, 0x74, 0xae, 0x39, 0xbc, 0x90, 0x1e, 0x32, 0x9a, 0x8d, 0xad, 0x6b, 0x8e, + 0xfc, 0x02, 0x0c, 0x6f, 0x5d, 0x63, 0x7b, 0x23, 0x77, 0x40, 0xc6, 0x36, 0x4d, 0x9e, 0x93, 0x59, + 0x2d, 0x94, 0x26, 0x00, 0x9a, 0x82, 0xc4, 0x7e, 0x40, 0xc2, 0xdf, 0x0f, 0xf0, 0x37, 0x34, 0x92, + 0x3d, 0x6d, 0x68, 0x9c, 0xfa, 0x77, 0x12, 0x8c, 0x04, 0xe2, 0x03, 0x7a, 0x14, 0x8e, 0x94, 0x56, + 0xd6, 0x17, 0x2e, 0x55, 0x96, 0x17, 0x2b, 0x17, 0x56, 0xe6, 0x97, 0xfc, 0x7b, 0x26, 0x85, 0xa3, + 0xaf, 0x5c, 0x9f, 0x45, 0x01, 0xdc, 0x6d, 0x83, 0xee, 0xae, 0xa2, 0xd3, 0x30, 0x15, 0x26, 0x99, + 0x2f, 0x6d, 0x96, 0xd7, 0xb6, 0x72, 0x52, 0xe1, 0xc8, 0x2b, 0xd7, 0x67, 0x27, 0x02, 0x14, 0xf3, + 0x3b, 0x0e, 0x36, 0xdc, 0x56, 0x82, 0x85, 0xf5, 0xd5, 0xd5, 0xe5, 0xad, 0x5c, 0xa2, 0x85, 0x80, + 0x07, 0xec, 0x07, 0x60, 0x22, 0x4c, 0xb0, 0xb6, 0xbc, 0x92, 0x4b, 0x16, 0xd0, 0x2b, 0xd7, 0x67, + 0xc7, 0x02, 0xd8, 0x6b, 0x7a, 0xbd, 0x90, 0xfe, 0xc0, 0x67, 0xa6, 0x07, 0x7e, 0xf9, 0x97, 0xa6, + 0x25, 0xa2, 0xd9, 0x68, 0x28, 0x46, 0xa0, 0x87, 0xe0, 0xd8, 0xe6, 0xf2, 0xd2, 0x5a, 0x79, 0xb1, + 0xb2, 0xba, 0xb9, 0x54, 0x61, 0xdf, 0xd7, 0xf0, 0xb4, 0x1b, 0x7f, 0xe5, 0xfa, 0xec, 0x08, 0x57, + 0xa9, 0x13, 0xf6, 0x86, 0x52, 0xbe, 0xbc, 0xbe, 0x55, 0xce, 0x49, 0x0c, 0x7b, 0xc3, 0xc6, 0x57, + 0x4c, 0x97, 0x7d, 0x67, 0xeb, 0x11, 0x38, 0xde, 0x06, 0xdb, 0x53, 0x6c, 0xe2, 0x95, 0xeb, 0xb3, + 0xa3, 0x1b, 0x36, 0x66, 0xf3, 0x87, 0x52, 0xcc, 0x41, 0xbe, 0x95, 0x62, 0x7d, 0x63, 0x7d, 0x73, + 0x7e, 0x25, 0x37, 0x5b, 0xc8, 0xbd, 0x72, 0x7d, 0x36, 0x2b, 0x82, 0x21, 0xc1, 0xf7, 0x35, 0xbb, + 0x9d, 0x2b, 0x9e, 0x3f, 0x79, 0x18, 0xee, 0xe1, 0x7b, 0x80, 0x8e, 0xab, 0xee, 0xeb, 0x46, 0xcd, + 0xdb, 0x69, 0xe5, 0x6d, 0xbe, 0xf2, 0x39, 0xca, 0x37, 0x5b, 0x05, 0xb4, 0xeb, 0x7e, 0x6b, 0xa1, + 0xf3, 0x7b, 0xa6, 0x42, 0xcc, 0xab, 0x98, 0xf8, 0xa5, 0x53, 0xe7, 0xbd, 0xf9, 0x42, 0xcc, 0x8e, + 0x71, 0xa1, 0xeb, 0xe2, 0x4e, 0xfe, 0xa0, 0x04, 0x63, 0x17, 0x75, 0xc7, 0x35, 0x6d, 0x5d, 0x53, + 0xeb, 0xf4, 0x76, 0xc9, 0xb9, 0x5e, 0x63, 0x6b, 0x64, 0xaa, 0x3f, 0x0d, 0x43, 0x57, 0xd4, 0x3a, + 0x0b, 0x6a, 0x49, 0xfa, 0x31, 0x8c, 0xf6, 0xe6, 0xf3, 0x43, 0x9b, 0x60, 0xc0, 0xc8, 0xe4, 0x5f, + 0x4d, 0xc0, 0x38, 0x9d, 0x0c, 0x0e, 0xfb, 0x4c, 0x12, 0x59, 0x63, 0x95, 0x20, 0x65, 0xab, 0x2e, + 0xdf, 0x34, 0x2c, 0xcd, 0xf1, 0x9d, 0xdf, 0xfb, 0xe2, 0x77, 0x73, 0xe7, 0x16, 0xb1, 0xa6, 0x50, + 0x5a, 0xf4, 0x0e, 0x48, 0x37, 0xd4, 0x6b, 0x15, 0xca, 0x87, 0xad, 0x5c, 0xe6, 0xfb, 0xe3, 0x73, + 0xf3, 0xc6, 0xcc, 0xf8, 0x81, 0xda, 0xa8, 0x17, 0x65, 0xc1, 0x47, 0x56, 0x86, 0x1b, 0xea, 0x35, + 0x22, 0x22, 0xb2, 0x60, 0x9c, 0x40, 0xb5, 0x3d, 0xd5, 0xa8, 0x61, 0xd6, 0x09, 0xdd, 0x02, 0x2d, + 0x5d, 0xec, 0xbb, 0x93, 0xa3, 0x7e, 0x27, 0x01, 0x76, 0xb2, 0x32, 0xda, 0x50, 0xaf, 0x2d, 0x50, + 0x00, 0xe9, 0xb1, 0x98, 0xfe, 0xe8, 0xa7, 0x66, 0x06, 0xe8, 0x6e, 0xfa, 0xb7, 0x24, 0x00, 0xdf, + 0x62, 0xe8, 0x1d, 0x90, 0xd3, 0xbc, 0x16, 0xa5, 0x75, 0xf8, 0x18, 0xde, 0xdf, 0x69, 0x2c, 0x22, + 0xf6, 0x66, 0xb9, 0xf9, 0x9b, 0x37, 0x66, 0x24, 0x65, 0x5c, 0x8b, 0x0c, 0xc5, 0xdb, 0x61, 0xa4, + 0x69, 0x55, 0x55, 0x17, 0x57, 0xe8, 0x3a, 0x2e, 0x11, 0x9b, 0xe7, 0xa7, 0x09, 0xaf, 0x9b, 0x37, + 0x66, 0x10, 0x53, 0x2b, 0x40, 0x2c, 0xd3, 0xec, 0x0f, 0x0c, 0x42, 0x08, 0x02, 0x3a, 0x7d, 0x5d, + 0x82, 0x91, 0xc5, 0xc0, 0xb9, 0xaf, 0x3c, 0x0c, 0x37, 0x4c, 0x43, 0xdf, 0xe7, 0xfe, 0x98, 0x51, + 0x44, 0x13, 0x15, 0x20, 0xcd, 0x2e, 0xdc, 0xb9, 0x07, 0x62, 0x2b, 0x54, 0xb4, 0x09, 0xd5, 0x55, + 0xbc, 0xe3, 0xe8, 0x62, 0x34, 0x14, 0xd1, 0x44, 0x17, 0x20, 0xe7, 0x60, 0xad, 0x69, 0xeb, 0xee, + 0x41, 0x45, 0x33, 0x0d, 0x57, 0xd5, 0x5c, 0x76, 0x75, 0xab, 0x74, 0xc7, 0xcd, 0x1b, 0x33, 0xc7, + 0x98, 0xac, 0x51, 0x0c, 0x59, 0x19, 0x17, 0xa0, 0x05, 0x06, 0x21, 0x3d, 0x54, 0xb1, 0xab, 0xea, + 0x75, 0x27, 0xcf, 0x5e, 0x0c, 0x89, 0x66, 0x40, 0x97, 0xcf, 0x0f, 0x07, 0x37, 0xb6, 0x2e, 0x40, + 0xce, 0xb4, 0xb0, 0x1d, 0x2a, 0x44, 0xa5, 0x68, 0xcf, 0x51, 0x0c, 0x59, 0x19, 0x17, 0x20, 0x51, + 0xa4, 0xba, 0x64, 0x98, 0xc5, 0x42, 0xd1, 0x6a, 0xee, 0xf8, 0xfb, 0x61, 0x53, 0x2d, 0xa3, 0x31, + 0x6f, 0x1c, 0x94, 0x1e, 0xf3, 0xb9, 0x47, 0xe9, 0xe4, 0x6f, 0x7c, 0xe9, 0xe1, 0x29, 0xee, 0x1a, + 0xfe, 0xfe, 0xd4, 0x25, 0x7c, 0x40, 0x86, 0x9f, 0xa3, 0x6e, 0x50, 0x4c, 0x52, 0x76, 0xbe, 0xa0, + 0xea, 0x75, 0x71, 0x05, 0x59, 0xe1, 0x2d, 0x54, 0x84, 0x21, 0xc7, 0x55, 0xdd, 0xa6, 0xc3, 0x3f, + 0x0c, 0x26, 0x77, 0x72, 0xb5, 0x92, 0x69, 0x54, 0x37, 0x29, 0xa6, 0xc2, 0x29, 0xd0, 0x05, 0x18, + 0x72, 0xcd, 0x7d, 0x6c, 0x70, 0x13, 0xf6, 0x35, 0xbf, 0xe9, 0x7b, 0x2a, 0x46, 0x4d, 0x2c, 0x52, + 0xc5, 0x75, 0x5c, 0x63, 0x65, 0xd5, 0x9e, 0x4a, 0x56, 0x1f, 0xf4, 0xfb, 0x60, 0xa5, 0xe5, 0xbe, + 0x27, 0x21, 0xb7, 0x54, 0x94, 0x9f, 0xac, 0x8c, 0x7b, 0xa0, 0x4d, 0x0a, 0x41, 0x97, 0x42, 0x07, + 0x14, 0xf9, 0x47, 0xf4, 0xee, 0xee, 0xa4, 0x7e, 0xc0, 0xa7, 0xc5, 0xfe, 0x44, 0xf0, 0x78, 0xe3, + 0x05, 0xc8, 0x35, 0x8d, 0x1d, 0xd3, 0xa0, 0xf7, 0x04, 0x79, 0x7d, 0x4f, 0xd6, 0x77, 0xc9, 0xa0, + 0x73, 0x44, 0x31, 0x64, 0x65, 0xdc, 0x03, 0x5d, 0x64, 0xab, 0x80, 0x2a, 0x8c, 0xf9, 0x58, 0x74, + 0xa2, 0x66, 0x62, 0x27, 0xea, 0x5d, 0x7c, 0xa2, 0x1e, 0x89, 0xf6, 0xe2, 0xcf, 0xd5, 0x51, 0x0f, + 0x48, 0xc8, 0xd0, 0x45, 0x00, 0x3f, 0x3c, 0xd0, 0x7d, 0x8a, 0x91, 0xce, 0x03, 0xef, 0xc7, 0x18, + 0xb1, 0xde, 0xf3, 0x69, 0xd1, 0xbb, 0x60, 0xb2, 0xa1, 0x1b, 0x15, 0x07, 0xd7, 0x77, 0x2b, 0xdc, + 0xc0, 0x84, 0x25, 0xfd, 0xcc, 0x4b, 0x69, 0xa5, 0x3f, 0x7f, 0xb8, 0x79, 0x63, 0xa6, 0xc0, 0x43, + 0x68, 0x2b, 0x4b, 0x59, 0x99, 0x68, 0xe8, 0xc6, 0x26, 0xae, 0xef, 0x2e, 0x7a, 0xb0, 0x62, 0xf6, + 0x03, 0x9f, 0x9a, 0x19, 0xe0, 0xd3, 0x75, 0x40, 0x3e, 0x47, 0xf7, 0xce, 0xf9, 0x34, 0xc3, 0x0e, + 0x59, 0x93, 0xa8, 0xa2, 0x41, 0x77, 0x34, 0x32, 0x8a, 0x0f, 0x60, 0xd3, 0xfc, 0xe5, 0xff, 0x30, + 0x2b, 0xc9, 0x9f, 0x97, 0x60, 0x68, 0xf1, 0xf2, 0x86, 0xaa, 0xdb, 0x68, 0x19, 0x26, 0x7c, 0xcf, + 0x09, 0x4f, 0xf2, 0x13, 0x37, 0x6f, 0xcc, 0xe4, 0xa3, 0xce, 0xe5, 0xcd, 0x72, 0xdf, 0x81, 0xc5, + 0x34, 0x5f, 0xee, 0xb4, 0x70, 0x0d, 0xb1, 0x6a, 0x41, 0x91, 0x5b, 0x97, 0xb5, 0x11, 0x35, 0xcb, + 0x30, 0xcc, 0xa4, 0x75, 0x50, 0x11, 0x06, 0x2d, 0xf2, 0x83, 0xbf, 0x18, 0x98, 0xee, 0xe8, 0xbc, + 0x14, 0xdf, 0xdb, 0xc8, 0x24, 0x24, 0xf2, 0x87, 0x13, 0x00, 0x8b, 0x97, 0x2f, 0x6f, 0xd9, 0xba, + 0x55, 0xc7, 0xee, 0xad, 0xd4, 0x7c, 0x0b, 0x8e, 0x04, 0x56, 0x49, 0xb6, 0x16, 0xd1, 0x7e, 0xf6, + 0xe6, 0x8d, 0x99, 0x13, 0x51, 0xed, 0x03, 0x68, 0xb2, 0x32, 0xe9, 0xaf, 0x97, 0x6c, 0xad, 0x2d, + 0xd7, 0xaa, 0xe3, 0x7a, 0x5c, 0x93, 0x9d, 0xb9, 0x06, 0xd0, 0x82, 0x5c, 0x17, 0x1d, 0xb7, 0xbd, + 0x69, 0x37, 0x61, 0xc4, 0x37, 0x89, 0x83, 0x16, 0x21, 0xed, 0xf2, 0xdf, 0xdc, 0xc2, 0x72, 0x67, + 0x0b, 0x0b, 0x32, 0x6e, 0x65, 0x8f, 0x52, 0xfe, 0x33, 0x09, 0xc0, 0xf7, 0xd9, 0x9f, 0x4c, 0x17, + 0x23, 0xa1, 0x9c, 0x07, 0xde, 0xe4, 0xa1, 0x4a, 0x35, 0x4e, 0x1d, 0xb1, 0xe7, 0xcf, 0x26, 0x60, + 0x72, 0x5b, 0x44, 0x9e, 0x9f, 0x78, 0x1b, 0x6c, 0xc0, 0x30, 0x36, 0x5c, 0x5b, 0xa7, 0x46, 0x20, + 0xa3, 0xfd, 0x48, 0xa7, 0xd1, 0x6e, 0xa3, 0x13, 0xfd, 0xd0, 0x8d, 0xd8, 0x74, 0xe7, 0x6c, 0x22, + 0xd6, 0xf8, 0xf9, 0x24, 0xe4, 0x3b, 0x51, 0xa2, 0x05, 0x18, 0xd7, 0x6c, 0x4c, 0x01, 0x95, 0xe0, + 0xce, 0x5f, 0xa9, 0xe0, 0x57, 0x96, 0x11, 0x04, 0x59, 0x19, 0x13, 0x10, 0x9e, 0x3d, 0x6a, 0x40, + 0xca, 0x3e, 0xe2, 0x76, 0x04, 0xab, 0xc7, 0x3a, 0x4f, 0xe6, 0xe9, 0x43, 0x74, 0x12, 0x66, 0xc0, + 0xf2, 0xc7, 0x98, 0x0f, 0xa5, 0x09, 0xe4, 0x45, 0x18, 0xd7, 0x0d, 0xdd, 0xd5, 0xd5, 0x7a, 0x65, + 0x47, 0xad, 0xab, 0x86, 0x76, 0x98, 0xaa, 0x99, 0x85, 0x7c, 0xde, 0x6d, 0x84, 0x9d, 0xac, 0x8c, + 0x71, 0x48, 0x89, 0x01, 0xd0, 0x45, 0x18, 0x16, 0x5d, 0xa5, 0x0e, 0x55, 0x6d, 0x08, 0xf2, 0x40, + 0x81, 0xf7, 0x73, 0x49, 0x98, 0x50, 0x70, 0xf5, 0xff, 0x0f, 0x45, 0x7f, 0x43, 0xb1, 0x0a, 0xc0, + 0xa6, 0x3b, 0x09, 0xb0, 0x87, 0x18, 0x0d, 0x12, 0x30, 0x32, 0x8c, 0xc3, 0xa2, 0xe3, 0x06, 0xc6, + 0xe3, 0x46, 0x02, 0xb2, 0xc1, 0xf1, 0xf8, 0x0b, 0x9a, 0x95, 0xd0, 0xb2, 0x1f, 0x89, 0x52, 0xfc, + 0xf3, 0xa0, 0x1d, 0x22, 0x51, 0x8b, 0xf7, 0x76, 0x0f, 0x41, 0xff, 0x23, 0x01, 0x43, 0x1b, 0xaa, + 0xad, 0x36, 0x1c, 0xa4, 0xb5, 0x54, 0x9a, 0x62, 0xfb, 0xb1, 0xe5, 0x23, 0xd0, 0x7c, 0xb7, 0x23, + 0xa6, 0xd0, 0xfc, 0x68, 0x9b, 0x42, 0xf3, 0xa7, 0x60, 0x8c, 0x2c, 0x87, 0x03, 0x47, 0x18, 0x88, + 0xb5, 0x47, 0x4b, 0xc7, 0x7d, 0x2e, 0xe1, 0xe7, 0x6c, 0xb5, 0x7c, 0x39, 0x78, 0x86, 0x61, 0x84, + 0x60, 0xf8, 0x81, 0x99, 0x90, 0x1f, 0xf5, 0x97, 0xa5, 0x81, 0x87, 0xb2, 0x02, 0x0d, 0xf5, 0x5a, + 0x99, 0x35, 0xd0, 0x0a, 0xa0, 0x3d, 0x6f, 0x67, 0xa4, 0xe2, 0x9b, 0x93, 0xd0, 0xdf, 0x79, 0xf3, + 0xc6, 0xcc, 0x71, 0x46, 0xdf, 0x8a, 0x23, 0x2b, 0x13, 0x3e, 0x50, 0x70, 0x7b, 0x1c, 0x80, 0xe8, + 0x55, 0x61, 0xc7, 0xe7, 0xd8, 0x72, 0xe7, 0xc8, 0xcd, 0x1b, 0x33, 0x13, 0x8c, 0x8b, 0xff, 0x4c, + 0x56, 0x32, 0xa4, 0xb1, 0x48, 0x7e, 0x07, 0x3c, 0xfb, 0x33, 0x12, 0x20, 0x3f, 0xe4, 0x2b, 0xd8, + 0xb1, 0xc8, 0xfa, 0x8c, 0x14, 0xe2, 0x81, 0xaa, 0x59, 0xea, 0x5e, 0x88, 0xfb, 0xf4, 0xa2, 0x10, + 0x0f, 0xcc, 0x94, 0xa7, 0xfc, 0xf0, 0x98, 0xe0, 0xe3, 0xd8, 0xe6, 0xac, 0xe1, 0xdc, 0x82, 0xa9, + 0x0b, 0xea, 0x96, 0x78, 0x38, 0x20, 0xff, 0x2b, 0x09, 0x8e, 0xb7, 0x78, 0x94, 0x27, 0xec, 0x5f, + 0x02, 0x64, 0x07, 0x1e, 0xf2, 0x6f, 0xbd, 0x31, 0xa1, 0xfb, 0x76, 0xd0, 0x09, 0xbb, 0x25, 0xee, + 0xde, 0xba, 0x08, 0xcf, 0x0e, 0x2b, 0xfe, 0x33, 0x09, 0xa6, 0x82, 0xdd, 0x7b, 0x8a, 0xac, 0x41, + 0x36, 0xd8, 0x3b, 0x57, 0xe1, 0x9e, 0x5e, 0x54, 0xe0, 0xd2, 0x87, 0xe8, 0xd1, 0xb3, 0xfe, 0x74, + 0x65, 0x7b, 0x67, 0x8f, 0xf6, 0x6c, 0x0d, 0x21, 0x53, 0x74, 0xda, 0xa6, 0xe8, 0x78, 0xfc, 0x1f, + 0x09, 0x52, 0x1b, 0xa6, 0x59, 0x47, 0x26, 0x4c, 0x18, 0xa6, 0x5b, 0x21, 0x9e, 0x85, 0xab, 0x15, + 0xbe, 0xe8, 0x66, 0x71, 0x70, 0xa1, 0x3f, 0x23, 0x7d, 0xf7, 0xc6, 0x4c, 0x2b, 0x2b, 0x65, 0xdc, + 0x30, 0xdd, 0x12, 0x85, 0x6c, 0xb1, 0x25, 0xf9, 0xbb, 0x60, 0x34, 0xdc, 0x19, 0x8b, 0x92, 0xcf, + 0xf5, 0xdd, 0x59, 0x98, 0xcd, 0xcd, 0x1b, 0x33, 0x53, 0xfe, 0x8c, 0xf1, 0xc0, 0xb2, 0x92, 0xdd, + 0x09, 0xf4, 0xce, 0x8e, 0x77, 0x7d, 0xff, 0x53, 0x33, 0xd2, 0xa9, 0x2f, 0x4b, 0x00, 0xfe, 0xce, + 0x03, 0x7a, 0x08, 0x8e, 0x95, 0xd6, 0xd7, 0x16, 0x2b, 0x9b, 0x5b, 0xf3, 0x5b, 0xdb, 0x9b, 0x95, + 0xed, 0xb5, 0xcd, 0x8d, 0xf2, 0xc2, 0xf2, 0x85, 0xe5, 0xf2, 0xa2, 0xbf, 0x3d, 0xee, 0x58, 0x58, + 0xd3, 0x77, 0x75, 0x5c, 0x45, 0xf7, 0xc1, 0x54, 0x18, 0x9b, 0xb4, 0xca, 0x8b, 0x39, 0xa9, 0x90, + 0x7d, 0xe5, 0xfa, 0x6c, 0x9a, 0xd5, 0x62, 0xb8, 0x8a, 0x4e, 0xc2, 0x91, 0x56, 0xbc, 0xe5, 0xb5, + 0xa5, 0x5c, 0xa2, 0x30, 0xfa, 0xca, 0xf5, 0xd9, 0x8c, 0x57, 0xb4, 0x21, 0x19, 0x50, 0x10, 0x93, + 0xf3, 0x4b, 0x16, 0xe0, 0x95, 0xeb, 0xb3, 0x43, 0xcc, 0x80, 0x85, 0xd4, 0x07, 0x3e, 0x33, 0x3d, + 0x50, 0xba, 0xd0, 0x71, 0x03, 0xfc, 0xa1, 0xae, 0xb6, 0xbb, 0xe6, 0x6d, 0x6a, 0x87, 0x77, 0xbd, + 0xff, 0x78, 0xb8, 0xe3, 0xae, 0x77, 0x0d, 0x1b, 0xd8, 0xd1, 0x9d, 0x43, 0xed, 0x7a, 0xf7, 0xb4, + 0x93, 0x2e, 0xff, 0xce, 0x20, 0x64, 0x97, 0x58, 0x2f, 0x64, 0x20, 0x30, 0x7a, 0x13, 0x0c, 0x59, + 0x34, 0x8d, 0x78, 0xaf, 0xd1, 0x3a, 0x38, 0x3c, 0x4b, 0x36, 0xde, 0x59, 0x2e, 0x96, 0x7a, 0x1c, + 0x7e, 0x98, 0x83, 0x9d, 0x31, 0xf3, 0x4f, 0x4d, 0x65, 0xfb, 0xda, 0xef, 0x61, 0x35, 0x0b, 0xdf, + 0x5a, 0x89, 0xf2, 0x93, 0xd9, 0xb9, 0x90, 0x2d, 0x02, 0x61, 0xa7, 0xc3, 0xde, 0x27, 0xc1, 0x11, + 0x8a, 0xe5, 0x27, 0x62, 0x8a, 0x29, 0x8a, 0xfd, 0x53, 0x9d, 0x54, 0x58, 0x51, 0x1d, 0xff, 0xac, + 0x07, 0x3b, 0xcf, 0x75, 0x0f, 0x4f, 0x84, 0x27, 0x02, 0x9d, 0x47, 0xd9, 0xca, 0xca, 0x64, 0xbd, + 0x85, 0xd2, 0x41, 0x4b, 0xa1, 0x03, 0x7d, 0xa9, 0xfe, 0xb6, 0xda, 0x83, 0x87, 0xfb, 0x9e, 0x81, + 0x11, 0x3f, 0x96, 0x38, 0xfc, 0x7f, 0x53, 0xf4, 0x9e, 0x3b, 0x82, 0xc4, 0xe8, 0xfd, 0x12, 0x1c, + 0xf1, 0xb3, 0x79, 0x90, 0x2d, 0xfb, 0x1f, 0x1e, 0x0f, 0xf6, 0xb1, 0x10, 0x8a, 0x1a, 0xa7, 0x2d, + 0x5f, 0x59, 0x99, 0x6a, 0xb6, 0x92, 0x92, 0x25, 0xd8, 0x68, 0x30, 0xb2, 0x3a, 0x79, 0xf1, 0x99, + 0xba, 0xde, 0x43, 0x73, 0x98, 0x01, 0xfb, 0xbf, 0x02, 0x96, 0x69, 0xbb, 0xb8, 0x4a, 0x37, 0xe4, + 0xd2, 0x8a, 0xd7, 0x96, 0xd7, 0x00, 0xb5, 0x0e, 0x6e, 0xf4, 0x00, 0x63, 0xc6, 0x3f, 0xc0, 0x38, + 0x05, 0x83, 0xc1, 0x23, 0x7e, 0xac, 0x51, 0x4c, 0x7f, 0x80, 0xa7, 0xcf, 0x5b, 0x3e, 0xe7, 0xff, + 0x45, 0x02, 0x4e, 0x05, 0x5f, 0x0f, 0xbd, 0xd8, 0xc4, 0xf6, 0x81, 0x37, 0x45, 0x2d, 0xb5, 0xa6, + 0x1b, 0xc1, 0x1b, 0x41, 0xc7, 0x83, 0x09, 0x9f, 0xe2, 0x0a, 0x3b, 0xc9, 0x06, 0x8c, 0x6c, 0xa8, + 0x35, 0xac, 0xe0, 0x17, 0x9b, 0xd8, 0x71, 0xdb, 0x1c, 0x32, 0x3f, 0x0a, 0x43, 0xe6, 0xee, 0xae, + 0x78, 0xa5, 0x9d, 0x52, 0x78, 0x8b, 0xa8, 0x5c, 0xd7, 0x1b, 0x3a, 0x3b, 0x0d, 0x96, 0x52, 0x58, + 0x03, 0xcd, 0xc0, 0x88, 0x66, 0x36, 0x0d, 0x3e, 0xe3, 0xf2, 0x29, 0xf1, 0x39, 0x88, 0xa6, 0xc1, + 0x66, 0x9c, 0xfc, 0x34, 0x64, 0x59, 0x7f, 0x3c, 0xe3, 0x1e, 0x87, 0x34, 0x3d, 0x4e, 0xe5, 0xf7, + 0x3a, 0x4c, 0xda, 0x97, 0xd8, 0x81, 0x74, 0xc6, 0x85, 0x75, 0xcc, 0x1a, 0xa5, 0x52, 0x47, 0x53, + 0x9e, 0x8c, 0x0f, 0x0d, 0xcc, 0x50, 0x9e, 0x19, 0x7f, 0x73, 0x10, 0x8e, 0xf0, 0x37, 0x74, 0xaa, + 0xa5, 0x9f, 0xde, 0x73, 0x5d, 0x71, 0x59, 0x08, 0x78, 0xa9, 0xab, 0x5a, 0xba, 0x7c, 0x00, 0xa9, + 0x8b, 0xae, 0x6b, 0xa1, 0x53, 0x30, 0x68, 0x37, 0xeb, 0x58, 0xec, 0xf8, 0x78, 0x7b, 0xf2, 0xaa, + 0xa5, 0xcf, 0x11, 0x04, 0xa5, 0x59, 0xc7, 0x0a, 0x43, 0x41, 0x65, 0x98, 0xd9, 0x6d, 0xd6, 0xeb, + 0x07, 0x95, 0x2a, 0xa6, 0xff, 0xb7, 0xc7, 0xfb, 0xf2, 0x3d, 0xbe, 0x66, 0xa9, 0xe2, 0xfb, 0x79, + 0xc4, 0x36, 0x27, 0x28, 0xda, 0x22, 0xc5, 0x12, 0x5f, 0xbd, 0x2f, 0x0b, 0x1c, 0xf9, 0xf7, 0x12, + 0x90, 0x16, 0xac, 0xe9, 0x09, 0x71, 0x5c, 0xc7, 0x9a, 0x6b, 0x8a, 0x37, 0x26, 0x5e, 0x1b, 0x21, + 0x48, 0xd6, 0xf8, 0x10, 0x65, 0x2e, 0x0e, 0x28, 0xa4, 0x41, 0x60, 0xde, 0xb9, 0x7d, 0x02, 0xb3, + 0x9a, 0x64, 0xd4, 0x52, 0x96, 0x29, 0x96, 0x66, 0x17, 0x07, 0x14, 0xda, 0x42, 0x79, 0x18, 0x22, + 0x33, 0xc3, 0x65, 0x1f, 0x25, 0x24, 0x70, 0xde, 0x46, 0x47, 0x61, 0xd0, 0x52, 0x5d, 0x8d, 0x1d, + 0xa9, 0x23, 0x0f, 0x58, 0x13, 0x3d, 0x01, 0x43, 0xec, 0x7a, 0x68, 0xf4, 0x9f, 0x62, 0x10, 0x63, + 0xb0, 0xef, 0x70, 0x11, 0xb9, 0x37, 0x54, 0xd7, 0xc5, 0xb6, 0x41, 0x18, 0x32, 0x74, 0x84, 0x20, + 0xb5, 0x63, 0x56, 0x0f, 0xf8, 0x3f, 0xea, 0xa0, 0xbf, 0xf9, 0x7f, 0x06, 0xa0, 0xfe, 0x50, 0xa1, + 0x0f, 0xd9, 0xff, 0x27, 0xca, 0x0a, 0x60, 0x89, 0x20, 0x95, 0x61, 0x52, 0xad, 0x56, 0x75, 0xf6, + 0x3f, 0x33, 0x2a, 0x3b, 0x3a, 0x8d, 0x10, 0x0e, 0xfd, 0xef, 0x53, 0x9d, 0xc6, 0x02, 0xf9, 0x04, + 0x25, 0x8e, 0x5f, 0xca, 0xc0, 0xb0, 0xc5, 0x84, 0x92, 0xcf, 0xc3, 0x44, 0x8b, 0xa4, 0x44, 0xbe, + 0x7d, 0xdd, 0xa8, 0x8a, 0xcb, 0x0c, 0xe4, 0x37, 0x81, 0xd1, 0x2f, 0xe7, 0xb1, 0x77, 0x51, 0xf4, + 0x77, 0xe9, 0x3d, 0x9d, 0xef, 0x7f, 0x8d, 0x05, 0xee, 0x7f, 0xa9, 0x96, 0x5e, 0xca, 0x50, 0xfe, + 0xfc, 0xd6, 0xd7, 0x7c, 0xeb, 0xad, 0xaf, 0x1a, 0x36, 0x44, 0xf6, 0x25, 0x8f, 0x54, 0x4b, 0x77, + 0xa8, 0x3b, 0xfa, 0x5f, 0xf2, 0x73, 0xce, 0x07, 0x7e, 0xd3, 0x4b, 0x60, 0xa9, 0xa5, 0xf9, 0x8d, + 0x65, 0xcf, 0x8f, 0xbf, 0x9a, 0x80, 0x13, 0x01, 0x3f, 0x0e, 0x20, 0xb7, 0xba, 0x73, 0xa1, 0xbd, + 0xc7, 0xf7, 0x70, 0xf9, 0xeb, 0x12, 0xa4, 0x08, 0x3e, 0x8a, 0xf9, 0x6e, 0x7f, 0xfe, 0xd7, 0xbe, + 0xf1, 0x4f, 0xe5, 0xf0, 0x5b, 0xab, 0xd0, 0xa8, 0x50, 0x26, 0xa5, 0xf7, 0xf7, 0x6e, 0xbf, 0x9c, + 0xff, 0x11, 0x43, 0xe7, 0xd6, 0x99, 0x31, 0x6a, 0xc3, 0xef, 0x9c, 0x05, 0xb9, 0x43, 0xc9, 0xc3, + 0x22, 0x66, 0xf7, 0x22, 0xaa, 0x8f, 0x70, 0xdc, 0xe9, 0xfc, 0x7f, 0xb7, 0x11, 0xec, 0xb1, 0x1c, + 0xbb, 0x06, 0x47, 0x9f, 0x25, 0x7d, 0xfb, 0xcb, 0x64, 0x11, 0xd8, 0x8f, 0x7a, 0x6f, 0xf3, 0x24, + 0xfe, 0xcf, 0xbf, 0xc4, 0x9b, 0x3a, 0xf0, 0xe5, 0xe3, 0x0b, 0xc4, 0xfb, 0xe6, 0x3a, 0xe6, 0x8b, + 0xb9, 0x40, 0xb2, 0x50, 0x02, 0x94, 0xf2, 0xaf, 0x48, 0x70, 0xac, 0xa5, 0x6b, 0x1e, 0xe3, 0x97, + 0xda, 0x5c, 0x55, 0x38, 0x54, 0x65, 0xb3, 0xd4, 0x46, 0xd8, 0xfb, 0x63, 0x85, 0x65, 0x52, 0x84, + 0xa4, 0x7d, 0x0b, 0x1c, 0x09, 0x0b, 0x2b, 0xcc, 0x74, 0x2f, 0x8c, 0x85, 0x77, 0x84, 0xb9, 0xb9, + 0x46, 0x43, 0x7b, 0xc2, 0x72, 0x25, 0x6a, 0x67, 0x4f, 0xd7, 0x32, 0x64, 0x3c, 0x54, 0x5e, 0x02, + 0xf7, 0xac, 0xaa, 0x4f, 0x29, 0x7f, 0x58, 0x82, 0xd9, 0x70, 0x0f, 0x81, 0x62, 0xa8, 0x3f, 0x61, + 0x6f, 0xd9, 0x10, 0xbf, 0x2e, 0xc1, 0x5d, 0x5d, 0x64, 0xe2, 0x06, 0x78, 0x09, 0xa6, 0x02, 0x3b, + 0x01, 0x22, 0x84, 0x8b, 0x61, 0x3f, 0x15, 0x5f, 0x86, 0x7a, 0x0b, 0xdf, 0x3b, 0x88, 0x51, 0x3e, + 0xf7, 0xfb, 0x33, 0x93, 0xad, 0xcf, 0x1c, 0x65, 0xb2, 0x75, 0xf5, 0x7e, 0x0b, 0xfd, 0xe3, 0x55, + 0x09, 0x1e, 0x08, 0xab, 0xda, 0xa6, 0x9e, 0x7d, 0xa3, 0xc6, 0xe1, 0xdf, 0x4b, 0x70, 0xaa, 0x17, + 0xe1, 0xf8, 0x80, 0xec, 0xc0, 0xa4, 0x5f, 0x69, 0x47, 0xc7, 0xa3, 0xaf, 0xfa, 0x9d, 0x79, 0x29, + 0xf2, 0xb8, 0xdd, 0x06, 0xc3, 0x5b, 0x7c, 0x62, 0x05, 0x87, 0xdc, 0x33, 0x72, 0x78, 0x37, 0x57, + 0x18, 0x39, 0xb4, 0x9f, 0xdb, 0x66, 0x2c, 0x12, 0x6d, 0xc6, 0xc2, 0x2f, 0xcd, 0xe5, 0x2b, 0x3c, + 0x6e, 0xb5, 0xd9, 0x83, 0x7b, 0x3b, 0x4c, 0xb6, 0x71, 0x65, 0x3e, 0xab, 0xfb, 0xf0, 0x64, 0x05, + 0xb5, 0x3a, 0xab, 0x7c, 0x00, 0x33, 0xb4, 0xdf, 0x36, 0x86, 0xbe, 0xdd, 0x2a, 0x37, 0x78, 0x6c, + 0x69, 0xdb, 0x35, 0xd7, 0x7d, 0x19, 0x86, 0xd8, 0x38, 0x73, 0x75, 0x0f, 0xe1, 0x28, 0x9c, 0x81, + 0xfc, 0x71, 0x11, 0xcb, 0x16, 0x85, 0xd8, 0xed, 0xe7, 0x50, 0x2f, 0xba, 0xde, 0xa2, 0x39, 0x14, + 0x30, 0xc6, 0xb7, 0x44, 0x54, 0x6b, 0x2f, 0x1d, 0x37, 0x87, 0x76, 0xcb, 0xa2, 0x1a, 0xb3, 0xcd, + 0xed, 0x0d, 0x5f, 0xbf, 0x24, 0xc2, 0x97, 0xa7, 0x53, 0x4c, 0xf8, 0x7a, 0x63, 0x4c, 0xef, 0x05, + 0xb2, 0x18, 0x31, 0xff, 0x3c, 0x06, 0xb2, 0xef, 0x4b, 0x70, 0x9c, 0xea, 0x16, 0xdc, 0x88, 0xe8, + 0xd7, 0xe4, 0x0f, 0x01, 0x72, 0x6c, 0xad, 0xd2, 0x76, 0x76, 0xe7, 0x1c, 0x5b, 0xbb, 0x1c, 0xca, + 0x2f, 0x0f, 0x01, 0xaa, 0x86, 0xb6, 0x9b, 0x28, 0x36, 0x3b, 0x25, 0x97, 0xab, 0x06, 0x76, 0x33, + 0xda, 0x0c, 0x67, 0xea, 0x16, 0x0c, 0xe7, 0x37, 0x25, 0x28, 0xb4, 0x53, 0x99, 0x0f, 0x9f, 0x0e, + 0x47, 0x43, 0x2f, 0x09, 0xa2, 0x23, 0xf8, 0x50, 0x2f, 0x5b, 0x39, 0x91, 0x69, 0x74, 0xc4, 0xc6, + 0xb7, 0xbb, 0x0e, 0x98, 0x09, 0x7b, 0x68, 0x6b, 0x65, 0xfd, 0x86, 0x4d, 0x9f, 0x2f, 0xb5, 0xc4, + 0xd5, 0x3f, 0x17, 0xb5, 0xf7, 0x35, 0x98, 0xee, 0x20, 0xf5, 0xed, 0xce, 0x7b, 0x7b, 0x1d, 0x07, + 0xf3, 0x56, 0x97, 0xef, 0x8f, 0xf3, 0x99, 0x10, 0x3e, 0x81, 0x1d, 0x58, 0x8b, 0xb5, 0xbb, 0xc2, + 0x25, 0xbf, 0x15, 0xee, 0x68, 0x4b, 0xc5, 0x65, 0x2b, 0x42, 0x6a, 0x4f, 0x77, 0x5c, 0x2e, 0xd6, + 0x7d, 0x9d, 0xc4, 0x8a, 0x50, 0x53, 0x1a, 0x19, 0x41, 0x8e, 0xb2, 0xde, 0x30, 0xcd, 0x3a, 0x17, + 0x43, 0xbe, 0x04, 0x13, 0x01, 0x18, 0xef, 0xe4, 0x1c, 0xa4, 0x2c, 0x93, 0x7f, 0x9e, 0x60, 0xe4, + 0xcc, 0x89, 0x8e, 0xbb, 0xf7, 0xa6, 0x59, 0xe7, 0x6a, 0x53, 0x7c, 0x79, 0x0a, 0x10, 0x63, 0x46, + 0x37, 0xf2, 0x45, 0x17, 0x9b, 0x30, 0x19, 0x82, 0xf2, 0x4e, 0x7e, 0xa4, 0x97, 0x04, 0x67, 0xbe, + 0x7b, 0x04, 0x06, 0x29, 0x57, 0xf4, 0x31, 0x09, 0x20, 0xf0, 0x46, 0x78, 0xae, 0x13, 0x9b, 0xf6, + 0x6b, 0xe2, 0xc2, 0xe9, 0x9e, 0xf1, 0x79, 0xcd, 0x76, 0xea, 0x3d, 0xff, 0xe6, 0x3b, 0x1f, 0x49, + 0xdc, 0x83, 0xe4, 0xd3, 0x1d, 0x56, 0xe3, 0x81, 0xf9, 0xf2, 0xd9, 0xd0, 0xdd, 0xf7, 0x87, 0x7b, + 0xeb, 0x4a, 0x48, 0x36, 0xd7, 0x2b, 0x3a, 0x17, 0xec, 0x3c, 0x15, 0xec, 0x2c, 0x7a, 0x2c, 0x5e, + 0xb0, 0xd3, 0xef, 0x0c, 0x4f, 0x9a, 0x77, 0xa3, 0xdf, 0x91, 0x60, 0xaa, 0xdd, 0x92, 0x0e, 0x3d, + 0xd9, 0x9b, 0x14, 0xad, 0x25, 0x45, 0xe1, 0xa9, 0x43, 0x50, 0x72, 0x55, 0x96, 0xa8, 0x2a, 0xf3, + 0xe8, 0xe9, 0x43, 0xa8, 0x72, 0x3a, 0xb8, 0xbf, 0xff, 0xbf, 0x24, 0xb8, 0xb3, 0xeb, 0x0a, 0x09, + 0xcd, 0xf7, 0x26, 0x65, 0x97, 0xda, 0xa9, 0x50, 0xfa, 0x51, 0x58, 0x70, 0x8d, 0x9f, 0xa5, 0x1a, + 0x5f, 0x42, 0xcb, 0x87, 0xd1, 0xb8, 0xed, 0x4b, 0x14, 0xf4, 0x5b, 0xe1, 0x93, 0x85, 0xdd, 0xdd, + 0xa9, 0x65, 0xe1, 0x11, 0x33, 0x31, 0x5a, 0x8b, 0x5a, 0xf9, 0x79, 0xaa, 0x82, 0x82, 0x36, 0x7e, + 0xc4, 0x41, 0x3b, 0xfd, 0xce, 0x70, 0xe0, 0x7f, 0x37, 0xfa, 0x9f, 0x52, 0xfb, 0x83, 0x82, 0x4f, + 0x74, 0x15, 0xb1, 0xf3, 0xa2, 0xaa, 0xf0, 0x64, 0xff, 0x84, 0x5c, 0xc9, 0x06, 0x55, 0xb2, 0x86, + 0xf0, 0xad, 0x56, 0xb2, 0xed, 0x20, 0xa2, 0xaf, 0x4b, 0x30, 0xd5, 0x6e, 0x4d, 0x12, 0x33, 0x2d, + 0xbb, 0x2c, 0xb2, 0x62, 0xa6, 0x65, 0xb7, 0x05, 0x90, 0xfc, 0x26, 0xaa, 0xfc, 0x39, 0xf4, 0x78, + 0x27, 0xe5, 0xbb, 0x8e, 0x22, 0x99, 0x8b, 0x5d, 0x8b, 0xfc, 0x98, 0xb9, 0xd8, 0xcb, 0x3a, 0x26, + 0x66, 0x2e, 0xf6, 0xb4, 0xc6, 0x88, 0x9f, 0x8b, 0x9e, 0x66, 0x3d, 0x0e, 0xa3, 0x83, 0xbe, 0x2a, + 0xc1, 0x68, 0xa8, 0x22, 0x46, 0x8f, 0x76, 0x15, 0xb4, 0xdd, 0x82, 0xa1, 0x70, 0xa6, 0x1f, 0x12, + 0xae, 0xcb, 0x32, 0xd5, 0x65, 0x01, 0xcd, 0x1f, 0x46, 0x97, 0xf0, 0xbb, 0xd2, 0x6f, 0x4a, 0x30, + 0xd9, 0xa6, 0xca, 0x8c, 0x99, 0x85, 0x9d, 0x8b, 0xe6, 0xc2, 0x93, 0xfd, 0x13, 0x72, 0xad, 0x2e, + 0x50, 0xad, 0x7e, 0x0a, 0xbd, 0xe5, 0x30, 0x5a, 0x05, 0xf2, 0xf3, 0x0d, 0xff, 0xdc, 0x55, 0xa0, + 0x1f, 0x74, 0xae, 0x4f, 0xc1, 0x84, 0x42, 0x4f, 0xf4, 0x4d, 0xc7, 0xf5, 0x79, 0x8e, 0xea, 0xf3, + 0x2c, 0x5a, 0xff, 0xd1, 0xf4, 0x69, 0x4d, 0xeb, 0x5f, 0x6c, 0xbd, 0x01, 0xd8, 0xdd, 0x8b, 0xda, + 0x16, 0xab, 0x85, 0xc7, 0xfa, 0xa2, 0xe1, 0x4a, 0x3d, 0x49, 0x95, 0x3a, 0x83, 0x1e, 0xe9, 0xa4, + 0x54, 0xe0, 0x70, 0x9d, 0x6e, 0xec, 0x9a, 0xa7, 0xdf, 0xc9, 0x4a, 0xe0, 0x77, 0xa3, 0x9f, 0x11, + 0x07, 0x9b, 0x4e, 0x76, 0xed, 0x37, 0x50, 0xc7, 0x16, 0x1e, 0xe8, 0x01, 0x93, 0xcb, 0x75, 0x0f, + 0x95, 0x6b, 0x1a, 0x9d, 0xe8, 0x24, 0x17, 0xa9, 0x65, 0xd1, 0x07, 0x25, 0xef, 0x2c, 0xe4, 0xa9, + 0xee, 0xbc, 0x83, 0xc5, 0x6e, 0xe1, 0xc1, 0x9e, 0x70, 0xb9, 0x24, 0xf7, 0x51, 0x49, 0x66, 0xd1, + 0x74, 0x47, 0x49, 0x58, 0xe9, 0x7b, 0xab, 0x4f, 0x0e, 0xbc, 0x72, 0x0c, 0x66, 0x3a, 0xf4, 0xe8, + 0x5e, 0x8b, 0x79, 0xc7, 0xd5, 0xe5, 0x22, 0x6c, 0xec, 0x45, 0xd7, 0x0e, 0x57, 0x6b, 0x0f, 0x7f, + 0xfd, 0xb5, 0xb7, 0x17, 0x62, 0xff, 0x3a, 0x05, 0x68, 0xd5, 0xa9, 0x2d, 0xd8, 0x98, 0xfd, 0xc3, + 0x3b, 0x3e, 0xcb, 0x23, 0x37, 0xbc, 0xa4, 0x1f, 0xe9, 0x86, 0xd7, 0x6a, 0xe8, 0xce, 0x54, 0xa2, + 0xbf, 0x7b, 0x99, 0x3d, 0x5f, 0x9c, 0x4a, 0xfe, 0x58, 0x2e, 0x4e, 0xb5, 0x3f, 0x57, 0x9d, 0xba, + 0x75, 0x17, 0x30, 0x06, 0x0f, 0x7b, 0x09, 0x85, 0xdf, 0x87, 0x1c, 0xea, 0x72, 0x1f, 0x32, 0xdf, + 0xf1, 0xd2, 0x23, 0xa7, 0x46, 0x67, 0xc5, 0xe7, 0x7c, 0x87, 0x7b, 0x3b, 0x09, 0xcb, 0xbf, 0xf7, + 0xeb, 0x6f, 0x21, 0x9c, 0x80, 0x42, 0xab, 0x3b, 0x79, 0x93, 0xfa, 0x23, 0x49, 0xc8, 0xad, 0x3a, + 0xb5, 0x72, 0x55, 0x77, 0x6f, 0x93, 0xaf, 0x3d, 0xdd, 0xf9, 0x52, 0x0b, 0xba, 0x79, 0x63, 0x66, + 0x8c, 0xd9, 0xb4, 0x8b, 0x25, 0x1b, 0x30, 0x1e, 0xb9, 0x4a, 0xcc, 0x3d, 0x6b, 0xf1, 0x30, 0x37, + 0x9a, 0x23, 0xac, 0x64, 0x7a, 0x07, 0x21, 0xe0, 0xdf, 0xe8, 0x5a, 0x7b, 0x67, 0x66, 0x0e, 0x75, + 0xf1, 0x76, 0xde, 0x00, 0xf4, 0xc7, 0xac, 0x00, 0xf9, 0xe8, 0xa0, 0x78, 0x23, 0xf6, 0x87, 0x12, + 0x8c, 0xac, 0x3a, 0xa2, 0x14, 0xc4, 0x3f, 0xa1, 0xf7, 0x8f, 0x9e, 0xf0, 0xbe, 0xc3, 0x9a, 0xec, + 0xcd, 0x6f, 0xc5, 0xb7, 0x59, 0x7d, 0x23, 0x1c, 0x81, 0xc9, 0x80, 0x9e, 0x9e, 0xfe, 0xbf, 0x9d, + 0xa0, 0xf1, 0xb1, 0x84, 0x6b, 0xba, 0xe1, 0x55, 0x91, 0xf8, 0x2f, 0xea, 0xed, 0x0a, 0xdf, 0xce, + 0xa9, 0xc3, 0xda, 0x79, 0x9f, 0x06, 0x88, 0x88, 0x3d, 0xbd, 0x8d, 0xaf, 0xd5, 0xd6, 0xbb, 0x3f, + 0x52, 0x1f, 0x9f, 0xd5, 0x89, 0xdc, 0xf0, 0x91, 0x5f, 0x97, 0x60, 0x74, 0xd5, 0xa9, 0x6d, 0x1b, + 0xd5, 0xff, 0xe7, 0xfd, 0x77, 0x17, 0x8e, 0x84, 0x34, 0xbd, 0x4d, 0x26, 0x3d, 0xf3, 0x6a, 0x0a, + 0x92, 0xab, 0x4e, 0x0d, 0xbd, 0x08, 0xe3, 0xd1, 0xa2, 0xa1, 0x63, 0x2d, 0xd8, 0x9a, 0x11, 0x3a, + 0xaf, 0xd7, 0x3a, 0x67, 0x0f, 0xb4, 0x0f, 0xa3, 0xe1, 0xcc, 0x71, 0xb2, 0x0b, 0x93, 0x10, 0x66, + 0xe1, 0x91, 0x5e, 0x31, 0xbd, 0xce, 0xde, 0x01, 0x69, 0x2f, 0xe8, 0xdd, 0xdd, 0x85, 0x5a, 0x20, + 0x75, 0xae, 0x6e, 0xdb, 0x84, 0x15, 0x62, 0xbd, 0x68, 0x48, 0xe9, 0x66, 0xbd, 0x08, 0x6e, 0x57, + 0xeb, 0x75, 0x9a, 0x5a, 0x3b, 0x00, 0x81, 0x79, 0x70, 0x6f, 0x17, 0x0e, 0x3e, 0x5a, 0xe1, 0xe1, + 0x9e, 0xd0, 0xbc, 0x97, 0x4e, 0xb7, 0xb8, 0x18, 0xff, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x61, + 0x21, 0x94, 0x2e, 0x66, 0x94, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) diff --git a/x/staking/types/tx.pb.go b/x/staking/types/tx.pb.go index 50e1765ff6..c3a1bf7065 100644 --- a/x/staking/types/tx.pb.go +++ b/x/staking/types/tx.pb.go @@ -13,11 +13,11 @@ import ( grpc1 "github.com/gogo/protobuf/grpc" proto "github.com/gogo/protobuf/proto" github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" - _ "github.com/golang/protobuf/ptypes/timestamp" _ "github.com/regen-network/cosmos-proto" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" + _ "google.golang.org/protobuf/types/known/timestamppb" io "io" math "math" math_bits "math/bits" diff --git a/x/upgrade/types/upgrade.pb.go b/x/upgrade/types/upgrade.pb.go index 642f4446fe..9fd476986f 100644 --- a/x/upgrade/types/upgrade.pb.go +++ b/x/upgrade/types/upgrade.pb.go @@ -9,7 +9,7 @@ import ( _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" - _ "github.com/golang/protobuf/ptypes/timestamp" + _ "google.golang.org/protobuf/types/known/timestamppb" io "io" math "math" math_bits "math/bits"