From 7d2062b6746b94bd4163d218d70fca40a7ae989f Mon Sep 17 00:00:00 2001 From: Alexander Bezobchuk Date: Mon, 17 Aug 2020 09:55:04 -0400 Subject: [PATCH] x/bank: gRPC Params Route (#7070) * update x/bank proto gRPC query service * fix path * update keeper * add godoc * add test * lint++ --- go.sum | 2 + proto/cosmos/bank/v1beta1/bank.proto | 44 +- proto/cosmos/bank/v1beta1/query.proto | 22 +- proto/cosmos/slashing/v1beta1/query.proto | 54 +- x/auth/types/query.pb.gw.go | 1 + x/bank/keeper/grpc_query.go | 36 +- x/bank/keeper/grpc_query_test.go | 10 +- x/bank/types/query.pb.go | 421 +++++++- x/bank/types/query.pb.gw.go | 63 ++ x/distribution/types/query.pb.gw.go | 1 + x/evidence/types/query.pb.gw.go | 1 + x/gov/types/query.pb.gw.go | 1 + x/ibc/03-connection/types/query.pb.gw.go | 1 + x/ibc/04-channel/types/query.pb.gw.go | 1 + x/mint/types/query.pb.gw.go | 1 + x/params/types/proposal/query.pb.gw.go | 1 + x/slashing/types/query.pb.gw.go | 1 + x/staking/types/query.pb.gw.go | 1 + x/staking/types/staking.pb.go | 1091 +++++++++++---------- x/upgrade/types/query.pb.go | 2 +- x/upgrade/types/query.pb.gw.go | 1 + 21 files changed, 1115 insertions(+), 641 deletions(-) diff --git a/go.sum b/go.sum index aa2b0f54f..95c4fc39b 100644 --- a/go.sum +++ b/go.sum @@ -154,6 +154,7 @@ github.com/franela/goblin v0.0.0-20200105215937-c9ffbefa60db/go.mod h1:7dvUGVsVB github.com/franela/goreq v0.0.0-20171204163338-bcd34c9993f8/go.mod h1:ZhphrRTfi2rbfLwlschooIH4+wKKDR4Pdxhh+TRoA20= github.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= +github.com/ghodss/yaml v1.0.0 h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= @@ -170,6 +171,7 @@ github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/me github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 h1:ZpnhV/YsD2/4cESfV5+Hoeu/iUR3ruzNvZ+yQfO03a0= github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2/go.mod h1:bBOAhwG1umN6/6ZUMtDFBMQR8jRg9O75tm9K00oMsK4= github.com/gogo/googleapis v1.1.0/go.mod h1:gf4bu3Q80BeJ6H1S1vYPm8/ELATdvryBaNFGgqEef3s= +github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b h1:VKtxabqXZkF25pY9ekfRL6a582T4P37/31XEstQ5p58= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= github.com/golang/groupcache v0.0.0-20160516000752-02826c3e7903/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= diff --git a/proto/cosmos/bank/v1beta1/bank.proto b/proto/cosmos/bank/v1beta1/bank.proto index 66c905c84..817b4b2df 100644 --- a/proto/cosmos/bank/v1beta1/bank.proto +++ b/proto/cosmos/bank/v1beta1/bank.proto @@ -9,28 +9,24 @@ option go_package = "github.com/cosmos/cosmos-sdk/x/bank/types"; // Params defines the set of bank parameters. message Params { - option (gogoproto.goproto_stringer) = false; - repeated SendEnabled send_enabled = 1[ - (gogoproto.moretags) = "yaml:\"send_enabled,omitempty\"" - ]; - bool default_send_enabled = 2[ - (gogoproto.moretags) = "yaml:\"default_send_enabled,omitempty\"" - ]; + option (gogoproto.goproto_stringer) = false; + repeated SendEnabled send_enabled = 1 [(gogoproto.moretags) = "yaml:\"send_enabled,omitempty\""]; + bool default_send_enabled = 2 [(gogoproto.moretags) = "yaml:\"default_send_enabled,omitempty\""]; } // Send enabled configuration properties for each denomination message SendEnabled { - option (gogoproto.equal) = true; + option (gogoproto.equal) = true; option (gogoproto.goproto_stringer) = false; - string denom = 1; - bool enabled = 2; + string denom = 1; + bool enabled = 2; } // Input models transaction input message Input { option (gogoproto.equal) = true; - bytes address = 1 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"]; + bytes address = 1 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"]; repeated cosmos.base.v1beta1.Coin coins = 2 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; } @@ -39,7 +35,7 @@ message Input { message Output { option (gogoproto.equal) = true; - bytes address = 1 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"]; + bytes address = 1 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"]; repeated cosmos.base.v1beta1.Coin coins = 2 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; } @@ -47,28 +43,28 @@ message Output { // Supply represents a struct that passively keeps track of the total supply // amounts in the network. message Supply { - option (gogoproto.equal) = true; - option (gogoproto.goproto_getters) = false; - option (gogoproto.goproto_stringer) = false; + option (gogoproto.equal) = true; + option (gogoproto.goproto_getters) = false; + option (gogoproto.goproto_stringer) = false; option (cosmos_proto.implements_interface) = "*github.com/cosmos/cosmos-sdk/x/bank/exported.SupplyI"; repeated cosmos.base.v1beta1.Coin total = 1 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; } -// DenomUnits represents a struct that describes different +// DenomUnits represents a struct that describes different // denominations units of the basic token message DenomUnits { - string denom = 1; - uint32 exponent = 2; - repeated string aliases = 3; + string denom = 1; + uint32 exponent = 2; + repeated string aliases = 3; } -// Metadata represents a struct that describes +// Metadata represents a struct that describes // a basic token message Metadata { - string description = 1; + string description = 1; repeated DenomUnits denom_units = 2; - string base = 3; - string display = 4; -} \ No newline at end of file + string base = 3; + string display = 4; +} diff --git a/proto/cosmos/bank/v1beta1/query.proto b/proto/cosmos/bank/v1beta1/query.proto index 72a6d53a6..bda219115 100644 --- a/proto/cosmos/bank/v1beta1/query.proto +++ b/proto/cosmos/bank/v1beta1/query.proto @@ -5,6 +5,7 @@ import "cosmos/base/query/v1beta1/pagination.proto"; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "cosmos/base/v1beta1/coin.proto"; +import "cosmos/bank/v1beta1/bank.proto"; option go_package = "github.com/cosmos/cosmos-sdk/x/bank/types"; @@ -30,7 +31,10 @@ service Query { option (google.api.http).get = "/cosmos/bank/v1beta1/supply/{denom}"; } - // TODO: Params + // Params queries the parameters of x/bank module. + rpc Params(QueryParamsRequest) returns (QueryParamsResponse) { + option (google.api.http).get = "/cosmos/bank/v1beta1/params"; + } } // QueryBalanceRequest is the request type for the Query/Balance RPC method. @@ -51,10 +55,8 @@ message QueryBalanceResponse { // QueryBalanceRequest is the request type for the Query/AllBalances RPC method. message QueryAllBalancesRequest { // address is the address to query balances for. - bytes address = 1 - [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"]; + bytes address = 1 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress"]; - // pagination defines an optional pagination for the request. cosmos.base.query.v1beta1.PageRequest pagination = 2; } @@ -88,7 +90,13 @@ message QuerySupplyOfRequest { // QuerySupplyOfResponse is the response type for the Query/SupplyOf RPC method. message QuerySupplyOfResponse { // amount is the supply of the coin. - cosmos.base.v1beta1.Coin amount = 1 [ - (gogoproto.nullable) = false - ]; + cosmos.base.v1beta1.Coin amount = 1 [(gogoproto.nullable) = false]; +} + +// QueryParamsRequest defines the request type for querying x/bank parameters. +message QueryParamsRequest {} + +// QueryParamsResponse defines the response type for querying x/bank parameters. +message QueryParamsResponse { + Params params = 1 [(gogoproto.nullable) = false]; } diff --git a/proto/cosmos/slashing/v1beta1/query.proto b/proto/cosmos/slashing/v1beta1/query.proto index 45ef5d7a1..b4393dc51 100644 --- a/proto/cosmos/slashing/v1beta1/query.proto +++ b/proto/cosmos/slashing/v1beta1/query.proto @@ -10,50 +10,50 @@ option go_package = "github.com/cosmos/cosmos-sdk/x/slashing/types"; // Query provides defines the gRPC querier service service Query { - // Params queries the parameters of slashing module - rpc Params (QueryParamsRequest) returns (QueryParamsResponse){ - option (google.api.http).get = "/cosmos/slashing/v1beta1/params"; - } + // Params queries the parameters of slashing module + rpc Params(QueryParamsRequest) returns (QueryParamsResponse) { + option (google.api.http).get = "/cosmos/slashing/v1beta1/params"; + } - // SigningInfo queries the signing info of given cons address - rpc SigningInfo (QuerySigningInfoRequest) returns (QuerySigningInfoResponse) { - option (google.api.http).get = "/cosmos/slashing/v1beta1/signing_infos/{cons_address}"; - } + // SigningInfo queries the signing info of given cons address + rpc SigningInfo(QuerySigningInfoRequest) returns (QuerySigningInfoResponse) { + option (google.api.http).get = "/cosmos/slashing/v1beta1/signing_infos/{cons_address}"; + } - // SigningInfos queries signing info of all validators - rpc SigningInfos (QuerySigningInfosRequest) returns (QuerySigningInfosResponse) { - option (google.api.http).get = "/cosmos/slashing/v1beta1/signing_infos"; - } + // SigningInfos queries signing info of all validators + rpc SigningInfos(QuerySigningInfosRequest) returns (QuerySigningInfosResponse) { + option (google.api.http).get = "/cosmos/slashing/v1beta1/signing_infos"; + } } // QueryParamsRequest is the request type for the Query/Params RPC method -message QueryParamsRequest{} +message QueryParamsRequest {} // QueryParamsResponse is the response type for the Query/Params RPC method -message QueryParamsResponse{ - Params params = 1[(gogoproto.nullable) = false]; +message QueryParamsResponse { + Params params = 1 [(gogoproto.nullable) = false]; } // QuerySigningInfoRequest is the request type for the Query/SigningInfo RPC method -message QuerySigningInfoRequest{ - // cons_address is the address to query signing info of - bytes cons_address = 1 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.ConsAddress"]; +message QuerySigningInfoRequest { + // cons_address is the address to query signing info of + bytes cons_address = 1 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.ConsAddress"]; } // QuerySigningInfoResponse is the response type for the Query/SigningInfo RPC method -message QuerySigningInfoResponse{ - // val_signing_info is the signing info of requested val cons address - ValidatorSigningInfo val_signing_info = 1[(gogoproto.nullable)= false]; +message QuerySigningInfoResponse { + // val_signing_info is the signing info of requested val cons address + ValidatorSigningInfo val_signing_info = 1 [(gogoproto.nullable) = false]; } // QuerySigningInfosRequest is the request type for the Query/SigningInfos RPC method -message QuerySigningInfosRequest{ - cosmos.base.query.v1beta1.PageRequest pagination = 1; +message QuerySigningInfosRequest { + cosmos.base.query.v1beta1.PageRequest pagination = 1; } // QuerySigningInfosResponse is the response type for the Query/SigningInfos RPC method -message QuerySigningInfosResponse{ - // info is the signing info of all validators - repeated cosmos.slashing.v1beta1.ValidatorSigningInfo info = 1[(gogoproto.nullable)= false]; - cosmos.base.query.v1beta1.PageResponse pagination =2; +message QuerySigningInfosResponse { + // info is the signing info of all validators + repeated cosmos.slashing.v1beta1.ValidatorSigningInfo info = 1 [(gogoproto.nullable) = false]; + cosmos.base.query.v1beta1.PageResponse pagination = 2; } diff --git a/x/auth/types/query.pb.gw.go b/x/auth/types/query.pb.gw.go index 7e80fa6fa..3b156842d 100644 --- a/x/auth/types/query.pb.gw.go +++ b/x/auth/types/query.pb.gw.go @@ -106,6 +106,7 @@ func local_request_Query_Params_0(ctx context.Context, marshaler runtime.Marshal // RegisterQueryHandlerServer registers the http handlers for service Query to "mux". // UnaryRPC :call QueryServer directly. // StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. +// Note that using this registration option will cause many gRPC library features (such as grpc.SendHeader, etc) to stop working. Consider using RegisterQueryHandlerFromEndpoint instead. func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, server QueryServer) error { mux.Handle("GET", pattern_Query_Account_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { diff --git a/x/bank/keeper/grpc_query.go b/x/bank/keeper/grpc_query.go index c3901481e..2fe705d48 100644 --- a/x/bank/keeper/grpc_query.go +++ b/x/bank/keeper/grpc_query.go @@ -15,7 +15,7 @@ import ( var _ types.QueryServer = BaseKeeper{} // Balance implements the Query/Balance gRPC method -func (q BaseKeeper) Balance(c context.Context, req *types.QueryBalanceRequest) (*types.QueryBalanceResponse, error) { +func (k BaseKeeper) Balance(ctx context.Context, req *types.QueryBalanceRequest) (*types.QueryBalanceResponse, error) { if req == nil { return nil, status.Error(codes.InvalidArgument, "empty request") } @@ -28,14 +28,14 @@ func (q BaseKeeper) Balance(c context.Context, req *types.QueryBalanceRequest) ( return nil, status.Error(codes.InvalidArgument, "invalid denom") } - ctx := sdk.UnwrapSDKContext(c) - balance := q.GetBalance(ctx, req.Address, req.Denom) + sdkCtx := sdk.UnwrapSDKContext(ctx) + balance := k.GetBalance(sdkCtx, req.Address, req.Denom) return &types.QueryBalanceResponse{Balance: &balance}, nil } // AllBalances implements the Query/AllBalances gRPC method -func (q BaseKeeper) AllBalances(c context.Context, req *types.QueryAllBalancesRequest) (*types.QueryAllBalancesResponse, error) { +func (k BaseKeeper) AllBalances(ctx context.Context, req *types.QueryAllBalancesRequest) (*types.QueryAllBalancesResponse, error) { if req == nil { return nil, status.Error(codes.InvalidArgument, "empty request") } @@ -45,16 +45,16 @@ func (q BaseKeeper) AllBalances(c context.Context, req *types.QueryAllBalancesRe return nil, status.Errorf(codes.InvalidArgument, "address cannot be empty") } - ctx := sdk.UnwrapSDKContext(c) + sdkCtx := sdk.UnwrapSDKContext(ctx) balances := sdk.NewCoins() - store := ctx.KVStore(q.storeKey) + store := sdkCtx.KVStore(k.storeKey) balancesStore := prefix.NewStore(store, types.BalancesPrefix) accountStore := prefix.NewStore(balancesStore, addr.Bytes()) pageRes, err := query.Paginate(accountStore, req.Pagination, func(key []byte, value []byte) error { var result sdk.Coin - err := q.cdc.UnmarshalBinaryBare(value, &result) + err := k.cdc.UnmarshalBinaryBare(value, &result) if err != nil { return err } @@ -70,15 +70,15 @@ func (q BaseKeeper) AllBalances(c context.Context, req *types.QueryAllBalancesRe } // TotalSupply implements the Query/TotalSupply gRPC method -func (q BaseKeeper) TotalSupply(c context.Context, _ *types.QueryTotalSupplyRequest) (*types.QueryTotalSupplyResponse, error) { - ctx := sdk.UnwrapSDKContext(c) - totalSupply := q.GetSupply(ctx).GetTotal() +func (k BaseKeeper) TotalSupply(ctx context.Context, _ *types.QueryTotalSupplyRequest) (*types.QueryTotalSupplyResponse, error) { + sdkCtx := sdk.UnwrapSDKContext(ctx) + totalSupply := k.GetSupply(sdkCtx).GetTotal() return &types.QueryTotalSupplyResponse{Supply: totalSupply}, nil } // SupplyOf implements the Query/SupplyOf gRPC method -func (q BaseKeeper) SupplyOf(c context.Context, req *types.QuerySupplyOfRequest) (*types.QuerySupplyOfResponse, error) { +func (k BaseKeeper) SupplyOf(c context.Context, req *types.QuerySupplyOfRequest) (*types.QuerySupplyOfResponse, error) { if req == nil { return nil, status.Error(codes.InvalidArgument, "empty request") } @@ -88,7 +88,19 @@ func (q BaseKeeper) SupplyOf(c context.Context, req *types.QuerySupplyOfRequest) } ctx := sdk.UnwrapSDKContext(c) - supply := q.GetSupply(ctx).GetTotal().AmountOf(req.Denom) + supply := k.GetSupply(ctx).GetTotal().AmountOf(req.Denom) return &types.QuerySupplyOfResponse{Amount: sdk.NewCoin(req.Denom, supply)}, nil } + +// Params implements the gRPC service handler for querying x/bank parameters. +func (k BaseKeeper) Params(ctx context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error) { + if req == nil { + return nil, status.Errorf(codes.InvalidArgument, "empty request") + } + + sdkCtx := sdk.UnwrapSDKContext(ctx) + params := k.GetParams(sdkCtx) + + return &types.QueryParamsResponse{Params: params}, nil +} diff --git a/x/bank/keeper/grpc_query_test.go b/x/bank/keeper/grpc_query_test.go index 77cc747be..09effcf5b 100644 --- a/x/bank/keeper/grpc_query_test.go +++ b/x/bank/keeper/grpc_query_test.go @@ -3,10 +3,9 @@ package keeper_test import ( gocontext "context" - "github.com/cosmos/cosmos-sdk/types/query" - "github.com/cosmos/cosmos-sdk/testutil/testdata" sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/types/query" "github.com/cosmos/cosmos-sdk/x/bank/types" ) @@ -111,3 +110,10 @@ func (suite *IntegrationTestSuite) TestQueryTotalSupplyOf() { suite.Require().Equal(test1Supply, res.Amount) } + +func (suite *IntegrationTestSuite) TestQueryParams() { + res, err := suite.queryClient.Params(gocontext.Background(), &types.QueryParamsRequest{}) + suite.Require().NoError(err) + suite.Require().NotNil(res) + suite.Require().Equal(suite.app.BankKeeper.GetParams(suite.ctx), res.GetParams()) +} diff --git a/x/bank/types/query.pb.go b/x/bank/types/query.pb.go index c7bb5eb98..38f0cd42c 100644 --- a/x/bank/types/query.pb.go +++ b/x/bank/types/query.pb.go @@ -418,6 +418,88 @@ func (m *QuerySupplyOfResponse) GetAmount() types.Coin { return types.Coin{} } +// QueryParamsRequest defines the request type for querying x/bank parameters. +type QueryParamsRequest struct { +} + +func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } +func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } +func (*QueryParamsRequest) ProtoMessage() {} +func (*QueryParamsRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_9c6fc1939682df13, []int{8} +} +func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *QueryParamsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_QueryParamsRequest.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *QueryParamsRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_QueryParamsRequest.Merge(m, src) +} +func (m *QueryParamsRequest) XXX_Size() int { + return m.Size() +} +func (m *QueryParamsRequest) XXX_DiscardUnknown() { + xxx_messageInfo_QueryParamsRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_QueryParamsRequest proto.InternalMessageInfo + +// QueryParamsResponse defines the response type for querying x/bank parameters. +type QueryParamsResponse struct { + Params Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params"` +} + +func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} } +func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) } +func (*QueryParamsResponse) ProtoMessage() {} +func (*QueryParamsResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_9c6fc1939682df13, []int{9} +} +func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *QueryParamsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_QueryParamsResponse.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *QueryParamsResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_QueryParamsResponse.Merge(m, src) +} +func (m *QueryParamsResponse) XXX_Size() int { + return m.Size() +} +func (m *QueryParamsResponse) XXX_DiscardUnknown() { + xxx_messageInfo_QueryParamsResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_QueryParamsResponse proto.InternalMessageInfo + +func (m *QueryParamsResponse) GetParams() Params { + if m != nil { + return m.Params + } + return Params{} +} + func init() { proto.RegisterType((*QueryBalanceRequest)(nil), "cosmos.bank.v1beta1.QueryBalanceRequest") proto.RegisterType((*QueryBalanceResponse)(nil), "cosmos.bank.v1beta1.QueryBalanceResponse") @@ -427,51 +509,57 @@ func init() { proto.RegisterType((*QueryTotalSupplyResponse)(nil), "cosmos.bank.v1beta1.QueryTotalSupplyResponse") proto.RegisterType((*QuerySupplyOfRequest)(nil), "cosmos.bank.v1beta1.QuerySupplyOfRequest") proto.RegisterType((*QuerySupplyOfResponse)(nil), "cosmos.bank.v1beta1.QuerySupplyOfResponse") + proto.RegisterType((*QueryParamsRequest)(nil), "cosmos.bank.v1beta1.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "cosmos.bank.v1beta1.QueryParamsResponse") } func init() { proto.RegisterFile("cosmos/bank/v1beta1/query.proto", fileDescriptor_9c6fc1939682df13) } var fileDescriptor_9c6fc1939682df13 = []byte{ - // 618 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x55, 0x3f, 0x6f, 0xd3, 0x40, - 0x1c, 0xcd, 0x95, 0x36, 0x29, 0x17, 0xa6, 0x6b, 0x10, 0x69, 0x00, 0xa7, 0x72, 0x05, 0x4d, 0x4a, - 0xe3, 0x23, 0xe9, 0xd0, 0x39, 0xa9, 0x04, 0x43, 0x07, 0x8a, 0x61, 0x62, 0xbb, 0x38, 0x87, 0xb1, - 0xea, 0xf8, 0xdc, 0x9c, 0x83, 0x1a, 0x55, 0x15, 0x12, 0x1f, 0x00, 0x90, 0x18, 0x18, 0xf8, 0x06, - 0x0c, 0x7c, 0x8e, 0x0e, 0x0c, 0x95, 0x58, 0x98, 0x0a, 0x4a, 0xf8, 0x14, 0x4c, 0xc8, 0xf7, 0x27, - 0x24, 0x8d, 0x71, 0xb3, 0x74, 0xaa, 0x7b, 0x7e, 0xbf, 0xf7, 0x7b, 0xef, 0xf7, 0x7b, 0xe7, 0xc0, - 0xb2, 0xc3, 0x78, 0x97, 0x71, 0xdc, 0x26, 0xc1, 0x01, 0x7e, 0x5d, 0x6f, 0xd3, 0x88, 0xd4, 0xf1, - 0x61, 0x9f, 0xf6, 0x06, 0x56, 0xd8, 0x63, 0x11, 0x43, 0x2b, 0x12, 0x60, 0xc5, 0x00, 0x4b, 0x01, - 0x4a, 0x9b, 0xe3, 0x2a, 0x4e, 0x25, 0x7a, 0x5c, 0x1b, 0x12, 0xd7, 0x0b, 0x48, 0xe4, 0xb1, 0x40, - 0x12, 0x94, 0x0a, 0x2e, 0x73, 0x99, 0x78, 0xc4, 0xf1, 0x93, 0x3a, 0xbd, 0xe3, 0x32, 0xe6, 0xfa, - 0x14, 0x93, 0xd0, 0xc3, 0x24, 0x08, 0x58, 0x24, 0x4a, 0xb8, 0x7a, 0x6b, 0x4c, 0xf2, 0x6b, 0x66, - 0x87, 0x79, 0x8a, 0xd3, 0x3c, 0x82, 0x2b, 0x4f, 0xe3, 0xae, 0x2d, 0xe2, 0x93, 0xc0, 0xa1, 0x36, - 0x3d, 0xec, 0x53, 0x1e, 0xa1, 0x3d, 0x98, 0x23, 0x9d, 0x4e, 0x8f, 0x72, 0x5e, 0x04, 0x6b, 0xa0, - 0x72, 0xa3, 0x55, 0xff, 0x73, 0x5e, 0xae, 0xb9, 0x5e, 0xf4, 0xaa, 0xdf, 0xb6, 0x1c, 0xd6, 0xc5, - 0x8a, 0x56, 0xfe, 0xa9, 0xf1, 0xce, 0x01, 0x8e, 0x06, 0x21, 0xe5, 0x56, 0xd3, 0x71, 0x9a, 0xb2, - 0xd0, 0xd6, 0x0c, 0xa8, 0x00, 0x97, 0x3a, 0x34, 0x60, 0xdd, 0xe2, 0xc2, 0x1a, 0xa8, 0x5c, 0xb7, - 0xe5, 0x3f, 0xe6, 0x1e, 0x2c, 0x4c, 0x77, 0xe6, 0x21, 0x0b, 0x38, 0x45, 0xdb, 0x30, 0xd7, 0x96, - 0x47, 0xa2, 0x75, 0xbe, 0xb1, 0x6a, 0x8d, 0x07, 0xc7, 0xa9, 0x1e, 0x9c, 0xb5, 0xcb, 0xbc, 0xc0, - 0xd6, 0x48, 0xf3, 0x2b, 0x80, 0xb7, 0x04, 0x5b, 0xd3, 0xf7, 0x15, 0x21, 0xbf, 0x12, 0x2f, 0x8f, - 0x20, 0xfc, 0xb7, 0x17, 0x61, 0x28, 0xdf, 0xb8, 0x3f, 0x25, 0x50, 0xae, 0x5c, 0xcb, 0xdc, 0x27, - 0xae, 0x1e, 0xaa, 0x3d, 0x51, 0x69, 0x7e, 0x03, 0xb0, 0x38, 0x2b, 0x58, 0x8d, 0xc0, 0x85, 0xcb, - 0xca, 0x58, 0x2c, 0xf9, 0x5a, 0xea, 0x0c, 0x5a, 0x0f, 0x4f, 0xcf, 0xcb, 0x99, 0x2f, 0x3f, 0xcb, - 0x95, 0x39, 0x1c, 0xc5, 0x05, 0xdc, 0x1e, 0x93, 0xa3, 0xc7, 0x09, 0x6e, 0x36, 0x2e, 0x75, 0x23, - 0x55, 0x4e, 0xd9, 0x59, 0x55, 0xe3, 0x7f, 0xce, 0x22, 0xe2, 0x3f, 0xeb, 0x87, 0xa1, 0x3f, 0x50, - 0xae, 0xcd, 0x37, 0xca, 0xe8, 0xd4, 0x2b, 0x65, 0xd4, 0x81, 0x59, 0x2e, 0x4e, 0xae, 0xc2, 0xa6, - 0xa2, 0x36, 0xb7, 0x54, 0xd0, 0x64, 0xef, 0x27, 0x2f, 0x75, 0x2e, 0xc6, 0xb1, 0x04, 0x93, 0xb1, - 0xdc, 0x87, 0x37, 0x2f, 0xa0, 0x95, 0xd6, 0x1d, 0x98, 0x25, 0x5d, 0xd6, 0x0f, 0xa2, 0x4b, 0x63, - 0xd9, 0x5a, 0x8c, 0xb5, 0xda, 0x0a, 0xde, 0x18, 0x2e, 0xc2, 0x25, 0x41, 0x89, 0x3e, 0x01, 0x98, - 0x53, 0xcb, 0x46, 0x15, 0x2b, 0xe1, 0x73, 0x60, 0x25, 0xdc, 0xc5, 0x52, 0x75, 0x0e, 0xa4, 0xd4, - 0x68, 0xee, 0xbc, 0xfd, 0xfe, 0xfb, 0xe3, 0x42, 0x1d, 0x61, 0x9c, 0xf4, 0x31, 0xd2, 0x6b, 0xc7, - 0xc7, 0x2a, 0xcd, 0x27, 0xf8, 0x58, 0x98, 0x3e, 0x41, 0x9f, 0x01, 0xcc, 0x4f, 0x24, 0x11, 0x6d, - 0xfd, 0xbf, 0xe7, 0xec, 0x0d, 0x2b, 0xd5, 0xe6, 0x44, 0x2b, 0x95, 0x58, 0xa8, 0xac, 0xa2, 0x8d, - 0x39, 0x55, 0xa2, 0xf7, 0x00, 0xe6, 0x27, 0xe2, 0x93, 0xa6, 0x6e, 0x36, 0x80, 0x69, 0xea, 0x12, - 0x32, 0x69, 0xae, 0x0b, 0x75, 0x77, 0xd1, 0xed, 0x44, 0x75, 0x32, 0x53, 0xe8, 0x1d, 0x80, 0xcb, - 0x3a, 0x21, 0x28, 0x65, 0x41, 0x17, 0x32, 0x57, 0xda, 0x9c, 0x07, 0xaa, 0x84, 0x3c, 0x10, 0x42, - 0xee, 0xa1, 0xf5, 0x14, 0x21, 0x7a, 0x81, 0xad, 0xdd, 0xd3, 0xa1, 0x01, 0xce, 0x86, 0x06, 0xf8, - 0x35, 0x34, 0xc0, 0x87, 0x91, 0x91, 0x39, 0x1b, 0x19, 0x99, 0x1f, 0x23, 0x23, 0xf3, 0xa2, 0x9a, - 0x7a, 0x61, 0x8e, 0x24, 0xab, 0xb8, 0x37, 0xed, 0xac, 0xf8, 0x4d, 0xd8, 0xfe, 0x1b, 0x00, 0x00, - 0xff, 0xff, 0xbc, 0x42, 0x05, 0xb8, 0xcb, 0x06, 0x00, 0x00, + // 680 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x55, 0x41, 0x53, 0xd3, 0x40, + 0x18, 0xed, 0xa2, 0x14, 0xdc, 0x7a, 0x5a, 0xea, 0x08, 0x41, 0x53, 0x26, 0x8c, 0x52, 0x10, 0xb2, + 0x16, 0x0e, 0x8c, 0x47, 0xca, 0x8c, 0x1e, 0x38, 0x58, 0xa3, 0x27, 0x6f, 0xdb, 0x74, 0x8d, 0x19, + 0xd2, 0x6c, 0xe8, 0xa6, 0x0e, 0x0c, 0xc3, 0xe8, 0xf8, 0x03, 0xd4, 0x19, 0x0f, 0x1e, 0xfc, 0x07, + 0x1e, 0xfc, 0x1d, 0x1c, 0x3c, 0x30, 0xe3, 0xc5, 0x13, 0x3a, 0x54, 0xff, 0x84, 0x27, 0x27, 0xbb, + 0x9b, 0x98, 0xd2, 0x90, 0xe6, 0xc2, 0x89, 0xb0, 0xfb, 0xbe, 0xf7, 0xbd, 0xf7, 0xed, 0xdb, 0x2d, + 0xac, 0xd9, 0x8c, 0x77, 0x19, 0xc7, 0x6d, 0xe2, 0xef, 0xe2, 0x57, 0x8d, 0x36, 0x0d, 0x49, 0x03, + 0xef, 0xf5, 0x69, 0xef, 0xc0, 0x0c, 0x7a, 0x2c, 0x64, 0x68, 0x46, 0x02, 0xcc, 0x08, 0x60, 0x2a, + 0x80, 0xb6, 0x92, 0x54, 0x71, 0x2a, 0xd1, 0x49, 0x6d, 0x40, 0x1c, 0xd7, 0x27, 0xa1, 0xcb, 0x7c, + 0x49, 0xa0, 0x55, 0x1d, 0xe6, 0x30, 0xf1, 0x89, 0xa3, 0x2f, 0xb5, 0x7a, 0xcb, 0x61, 0xcc, 0xf1, + 0x28, 0x26, 0x81, 0x8b, 0x89, 0xef, 0xb3, 0x50, 0x94, 0x70, 0xb5, 0xab, 0xa7, 0xf9, 0x63, 0x66, + 0x9b, 0xb9, 0xfe, 0xc8, 0x7e, 0x4a, 0xb5, 0x50, 0x28, 0xf6, 0x8d, 0x7d, 0x38, 0xf3, 0x24, 0x52, + 0xd5, 0x24, 0x1e, 0xf1, 0x6d, 0x6a, 0xd1, 0xbd, 0x3e, 0xe5, 0x21, 0xda, 0x81, 0x53, 0xa4, 0xd3, + 0xe9, 0x51, 0xce, 0x67, 0xc1, 0x02, 0xa8, 0x5f, 0x6f, 0x36, 0xfe, 0x9e, 0xd6, 0xd6, 0x1c, 0x37, + 0x7c, 0xd9, 0x6f, 0x9b, 0x36, 0xeb, 0x62, 0x45, 0x2b, 0xff, 0xac, 0xf1, 0xce, 0x2e, 0x0e, 0x0f, + 0x02, 0xca, 0xcd, 0x2d, 0xdb, 0xde, 0x92, 0x85, 0x56, 0xcc, 0x80, 0xaa, 0x70, 0xb2, 0x43, 0x7d, + 0xd6, 0x9d, 0x9d, 0x58, 0x00, 0xf5, 0x6b, 0x96, 0xfc, 0xc7, 0xd8, 0x81, 0xd5, 0xe1, 0xce, 0x3c, + 0x60, 0x3e, 0xa7, 0x68, 0x03, 0x4e, 0xb5, 0xe5, 0x92, 0x68, 0x5d, 0x59, 0x9f, 0x33, 0x93, 0xc1, + 0x72, 0x1a, 0x0f, 0xd6, 0xdc, 0x66, 0xae, 0x6f, 0xc5, 0x48, 0xe3, 0x2b, 0x80, 0x37, 0x05, 0xdb, + 0x96, 0xe7, 0x29, 0x42, 0x7e, 0x29, 0x5e, 0x1e, 0x42, 0xf8, 0xff, 0xdc, 0x84, 0xa1, 0xca, 0xfa, + 0xdd, 0x21, 0x81, 0x32, 0x12, 0xb1, 0xcc, 0x16, 0x71, 0xe2, 0xa1, 0x5a, 0xa9, 0x4a, 0xe3, 0x1b, + 0x80, 0xb3, 0xa3, 0x82, 0xd5, 0x08, 0x1c, 0x38, 0xad, 0x8c, 0x45, 0x92, 0xaf, 0xe4, 0xce, 0xa0, + 0x79, 0xff, 0xf8, 0xb4, 0x56, 0xfa, 0xf2, 0xb3, 0x56, 0x2f, 0xe0, 0x28, 0x2a, 0xe0, 0x56, 0x42, + 0x8e, 0x1e, 0x65, 0xb8, 0x59, 0x1a, 0xeb, 0x46, 0xaa, 0x1c, 0xb2, 0x33, 0xa7, 0xc6, 0xff, 0x8c, + 0x85, 0xc4, 0x7b, 0xda, 0x0f, 0x02, 0xef, 0x40, 0xb9, 0x36, 0x5e, 0x2b, 0xa3, 0x43, 0x5b, 0xca, + 0xa8, 0x0d, 0xcb, 0x5c, 0xac, 0x5c, 0x86, 0x4d, 0x45, 0x6d, 0xac, 0xaa, 0xa0, 0xc9, 0xde, 0x8f, + 0x5f, 0xc4, 0xb9, 0x48, 0x62, 0x09, 0xd2, 0xb1, 0x6c, 0xc1, 0x1b, 0xe7, 0xd0, 0x4a, 0xeb, 0x26, + 0x2c, 0x93, 0x2e, 0xeb, 0xfb, 0xe1, 0xd8, 0x58, 0x36, 0xaf, 0x46, 0x5a, 0x2d, 0x05, 0x37, 0xaa, + 0x10, 0x09, 0xc6, 0x16, 0xe9, 0x91, 0x6e, 0x9c, 0x4a, 0xa3, 0xa5, 0x2e, 0x5e, 0xbc, 0xaa, 0xba, + 0x3c, 0x80, 0xe5, 0x40, 0xac, 0xa8, 0x2e, 0xf3, 0x66, 0xc6, 0xab, 0x62, 0xca, 0xa2, 0xb8, 0x8f, + 0x2c, 0x58, 0xff, 0x33, 0x09, 0x27, 0x05, 0x25, 0xfa, 0x04, 0xe0, 0x94, 0x0a, 0x15, 0xaa, 0x67, + 0x12, 0x64, 0xdc, 0x79, 0x6d, 0xb9, 0x00, 0x52, 0xaa, 0x34, 0x36, 0xdf, 0x7e, 0xff, 0xfd, 0x71, + 0xa2, 0x81, 0x30, 0xce, 0x7e, 0x5e, 0x64, 0xbc, 0xf0, 0xa1, 0xba, 0x35, 0x47, 0xf8, 0x50, 0x0c, + 0xf7, 0x08, 0x7d, 0x06, 0xb0, 0x92, 0x4a, 0x3c, 0x5a, 0xbd, 0xb8, 0xe7, 0xe8, 0x4d, 0xd6, 0xd6, + 0x0a, 0xa2, 0x95, 0x4a, 0x2c, 0x54, 0x2e, 0xa3, 0xa5, 0x82, 0x2a, 0xd1, 0x7b, 0x00, 0x2b, 0xa9, + 0x98, 0xe6, 0xa9, 0x1b, 0x0d, 0x7a, 0x9e, 0xba, 0x8c, 0xec, 0x1b, 0x8b, 0x42, 0xdd, 0x6d, 0x34, + 0x9f, 0xa9, 0x4e, 0x66, 0x17, 0xbd, 0x03, 0x70, 0x3a, 0x4e, 0x22, 0xca, 0x39, 0xa0, 0x73, 0xd9, + 0xd6, 0x56, 0x8a, 0x40, 0x95, 0x90, 0x7b, 0x42, 0xc8, 0x1d, 0xb4, 0x98, 0x23, 0x24, 0x39, 0xc0, + 0x37, 0x00, 0x96, 0x65, 0xfa, 0xd0, 0xd2, 0xc5, 0x3d, 0x86, 0xa2, 0xae, 0xd5, 0xc7, 0x03, 0x0b, + 0xcd, 0x44, 0xe6, 0xbc, 0xb9, 0x7d, 0x7c, 0xa6, 0x83, 0x93, 0x33, 0x1d, 0xfc, 0x3a, 0xd3, 0xc1, + 0x87, 0x81, 0x5e, 0x3a, 0x19, 0xe8, 0xa5, 0x1f, 0x03, 0xbd, 0xf4, 0x7c, 0x39, 0xf7, 0x6d, 0xd8, + 0x97, 0x6c, 0xe2, 0x89, 0x68, 0x97, 0xc5, 0xcf, 0xdf, 0xc6, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, + 0xda, 0x1b, 0x35, 0x7f, 0xd6, 0x07, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -494,6 +582,8 @@ type QueryClient interface { TotalSupply(ctx context.Context, in *QueryTotalSupplyRequest, opts ...grpc.CallOption) (*QueryTotalSupplyResponse, error) // SupplyOf queries the supply of a single coin. SupplyOf(ctx context.Context, in *QuerySupplyOfRequest, opts ...grpc.CallOption) (*QuerySupplyOfResponse, error) + // Params queries the parameters of x/bank module. + Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) } type queryClient struct { @@ -540,6 +630,15 @@ func (c *queryClient) SupplyOf(ctx context.Context, in *QuerySupplyOfRequest, op return out, nil } +func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { + out := new(QueryParamsResponse) + err := c.cc.Invoke(ctx, "/cosmos.bank.v1beta1.Query/Params", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + // QueryServer is the server API for Query service. type QueryServer interface { // Balance queries the balance of a single coin for a single account. @@ -550,6 +649,8 @@ type QueryServer interface { TotalSupply(context.Context, *QueryTotalSupplyRequest) (*QueryTotalSupplyResponse, error) // SupplyOf queries the supply of a single coin. SupplyOf(context.Context, *QuerySupplyOfRequest) (*QuerySupplyOfResponse, error) + // Params queries the parameters of x/bank module. + Params(context.Context, *QueryParamsRequest) (*QueryParamsResponse, error) } // UnimplementedQueryServer can be embedded to have forward compatible implementations. @@ -568,6 +669,9 @@ func (*UnimplementedQueryServer) TotalSupply(ctx context.Context, req *QueryTota func (*UnimplementedQueryServer) SupplyOf(ctx context.Context, req *QuerySupplyOfRequest) (*QuerySupplyOfResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method SupplyOf not implemented") } +func (*UnimplementedQueryServer) Params(ctx context.Context, req *QueryParamsRequest) (*QueryParamsResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method Params not implemented") +} func RegisterQueryServer(s grpc1.Server, srv QueryServer) { s.RegisterService(&_Query_serviceDesc, srv) @@ -645,6 +749,24 @@ func _Query_SupplyOf_Handler(srv interface{}, ctx context.Context, dec func(inte return interceptor(ctx, in, info, handler) } +func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(QueryParamsRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(QueryServer).Params(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/cosmos.bank.v1beta1.Query/Params", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) + } + return interceptor(ctx, in, info, handler) +} + var _Query_serviceDesc = grpc.ServiceDesc{ ServiceName: "cosmos.bank.v1beta1.Query", HandlerType: (*QueryServer)(nil), @@ -665,6 +787,10 @@ var _Query_serviceDesc = grpc.ServiceDesc{ MethodName: "SupplyOf", Handler: _Query_SupplyOf_Handler, }, + { + MethodName: "Params", + Handler: _Query_Params_Handler, + }, }, Streams: []grpc.StreamDesc{}, Metadata: "cosmos/bank/v1beta1/query.proto", @@ -956,6 +1082,62 @@ func (m *QuerySupplyOfResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *QueryParamsRequest) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *QueryParamsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + return len(dAtA) - i, nil +} + +func (m *QueryParamsResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *QueryParamsResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *QueryParamsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + { + size, err := m.Params.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintQuery(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + return len(dAtA) - i, nil +} + func encodeVarintQuery(dAtA []byte, offset int, v uint64) int { offset -= sovQuery(v) base := offset @@ -1081,6 +1263,26 @@ func (m *QuerySupplyOfResponse) Size() (n int) { return n } +func (m *QueryParamsRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + return n +} + +func (m *QueryParamsResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = m.Params.Size() + n += 1 + l + sovQuery(uint64(l)) + return n +} + func sovQuery(x uint64) (n int) { return (math_bits.Len64(x|1) + 6) / 7 } @@ -1852,6 +2054,145 @@ func (m *QuerySupplyOfResponse) Unmarshal(dAtA []byte) error { } return nil } +func (m *QueryParamsRequest) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: QueryParamsRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: QueryParamsRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + default: + iNdEx = preIndex + skippy, err := skipQuery(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthQuery + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthQuery + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *QueryParamsResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: QueryParamsResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: QueryParamsResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Params", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthQuery + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthQuery + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Params.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipQuery(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthQuery + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthQuery + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func skipQuery(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 diff --git a/x/bank/types/query.pb.gw.go b/x/bank/types/query.pb.gw.go index 89cd5adb5..ca9c1ddbf 100644 --- a/x/bank/types/query.pb.gw.go +++ b/x/bank/types/query.pb.gw.go @@ -251,9 +251,28 @@ func local_request_Query_SupplyOf_0(ctx context.Context, marshaler runtime.Marsh } +func request_Query_Params_0(ctx context.Context, marshaler runtime.Marshaler, client QueryClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq QueryParamsRequest + var metadata runtime.ServerMetadata + + msg, err := client.Params(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD)) + return msg, metadata, err + +} + +func local_request_Query_Params_0(ctx context.Context, marshaler runtime.Marshaler, server QueryServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq QueryParamsRequest + var metadata runtime.ServerMetadata + + msg, err := server.Params(ctx, &protoReq) + return msg, metadata, err + +} + // RegisterQueryHandlerServer registers the http handlers for service Query to "mux". // UnaryRPC :call QueryServer directly. // StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. +// Note that using this registration option will cause many gRPC library features (such as grpc.SendHeader, etc) to stop working. Consider using RegisterQueryHandlerFromEndpoint instead. func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, server QueryServer) error { mux.Handle("GET", pattern_Query_Balance_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { @@ -336,6 +355,26 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv }) + mux.Handle("GET", pattern_Query_Params_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + ctx, cancel := context.WithCancel(req.Context()) + defer cancel() + inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) + rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + resp, md, err := local_request_Query_Params_0(rctx, inboundMarshaler, server, req, pathParams) + ctx = runtime.NewServerMetadataContext(ctx, md) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + + forward_Query_Params_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + + }) + return nil } @@ -457,6 +496,26 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie }) + mux.Handle("GET", pattern_Query_Params_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + ctx, cancel := context.WithCancel(req.Context()) + defer cancel() + inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) + rctx, err := runtime.AnnotateContext(ctx, mux, req) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + resp, md, err := request_Query_Params_0(rctx, inboundMarshaler, client, req, pathParams) + ctx = runtime.NewServerMetadataContext(ctx, md) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + + forward_Query_Params_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + + }) + return nil } @@ -468,6 +527,8 @@ var ( pattern_Query_TotalSupply_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"cosmos", "bank", "v1beta1", "supply"}, "", runtime.AssumeColonVerbOpt(true))) pattern_Query_SupplyOf_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"cosmos", "bank", "v1beta1", "supply", "denom"}, "", runtime.AssumeColonVerbOpt(true))) + + pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"cosmos", "bank", "v1beta1", "params"}, "", runtime.AssumeColonVerbOpt(true))) ) var ( @@ -478,4 +539,6 @@ var ( forward_Query_TotalSupply_0 = runtime.ForwardResponseMessage forward_Query_SupplyOf_0 = runtime.ForwardResponseMessage + + forward_Query_Params_0 = runtime.ForwardResponseMessage ) diff --git a/x/distribution/types/query.pb.gw.go b/x/distribution/types/query.pb.gw.go index b3a714f34..890e51e40 100644 --- a/x/distribution/types/query.pb.gw.go +++ b/x/distribution/types/query.pb.gw.go @@ -488,6 +488,7 @@ func local_request_Query_CommunityPool_0(ctx context.Context, marshaler runtime. // RegisterQueryHandlerServer registers the http handlers for service Query to "mux". // UnaryRPC :call QueryServer directly. // StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. +// Note that using this registration option will cause many gRPC library features (such as grpc.SendHeader, etc) to stop working. Consider using RegisterQueryHandlerFromEndpoint instead. func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, server QueryServer) error { mux.Handle("GET", pattern_Query_Params_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { diff --git a/x/evidence/types/query.pb.gw.go b/x/evidence/types/query.pb.gw.go index e9346629c..e15d16352 100644 --- a/x/evidence/types/query.pb.gw.go +++ b/x/evidence/types/query.pb.gw.go @@ -124,6 +124,7 @@ func local_request_Query_AllEvidence_0(ctx context.Context, marshaler runtime.Ma // RegisterQueryHandlerServer registers the http handlers for service Query to "mux". // UnaryRPC :call QueryServer directly. // StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. +// Note that using this registration option will cause many gRPC library features (such as grpc.SendHeader, etc) to stop working. Consider using RegisterQueryHandlerFromEndpoint instead. func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, server QueryServer) error { mux.Handle("GET", pattern_Query_Evidence_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { diff --git a/x/gov/types/query.pb.gw.go b/x/gov/types/query.pb.gw.go index 4e2c61f5f..e9fc72f30 100644 --- a/x/gov/types/query.pb.gw.go +++ b/x/gov/types/query.pb.gw.go @@ -528,6 +528,7 @@ func local_request_Query_TallyResult_0(ctx context.Context, marshaler runtime.Ma // RegisterQueryHandlerServer registers the http handlers for service Query to "mux". // UnaryRPC :call QueryServer directly. // StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. +// Note that using this registration option will cause many gRPC library features (such as grpc.SendHeader, etc) to stop working. Consider using RegisterQueryHandlerFromEndpoint instead. func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, server QueryServer) error { mux.Handle("GET", pattern_Query_Proposal_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { diff --git a/x/ibc/03-connection/types/query.pb.gw.go b/x/ibc/03-connection/types/query.pb.gw.go index 6fa7dc87e..7c17c2dd5 100644 --- a/x/ibc/03-connection/types/query.pb.gw.go +++ b/x/ibc/03-connection/types/query.pb.gw.go @@ -304,6 +304,7 @@ func local_request_Query_ConnectionConsensusState_0(ctx context.Context, marshal // RegisterQueryHandlerServer registers the http handlers for service Query to "mux". // UnaryRPC :call QueryServer directly. // StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. +// Note that using this registration option will cause many gRPC library features (such as grpc.SendHeader, etc) to stop working. Consider using RegisterQueryHandlerFromEndpoint instead. func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, server QueryServer) error { mux.Handle("GET", pattern_Query_Connection_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { diff --git a/x/ibc/04-channel/types/query.pb.gw.go b/x/ibc/04-channel/types/query.pb.gw.go index 520d86c54..d3ee502d1 100644 --- a/x/ibc/04-channel/types/query.pb.gw.go +++ b/x/ibc/04-channel/types/query.pb.gw.go @@ -878,6 +878,7 @@ func local_request_Query_NextSequenceReceive_0(ctx context.Context, marshaler ru // RegisterQueryHandlerServer registers the http handlers for service Query to "mux". // UnaryRPC :call QueryServer directly. // StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. +// Note that using this registration option will cause many gRPC library features (such as grpc.SendHeader, etc) to stop working. Consider using RegisterQueryHandlerFromEndpoint instead. func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, server QueryServer) error { mux.Handle("GET", pattern_Query_Channel_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { diff --git a/x/mint/types/query.pb.gw.go b/x/mint/types/query.pb.gw.go index 644c2782e..c70c3e60b 100644 --- a/x/mint/types/query.pb.gw.go +++ b/x/mint/types/query.pb.gw.go @@ -88,6 +88,7 @@ func local_request_Query_AnnualProvisions_0(ctx context.Context, marshaler runti // RegisterQueryHandlerServer registers the http handlers for service Query to "mux". // UnaryRPC :call QueryServer directly. // StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. +// Note that using this registration option will cause many gRPC library features (such as grpc.SendHeader, etc) to stop working. Consider using RegisterQueryHandlerFromEndpoint instead. func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, server QueryServer) error { mux.Handle("GET", pattern_Query_Params_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { diff --git a/x/params/types/proposal/query.pb.gw.go b/x/params/types/proposal/query.pb.gw.go index 05f80279a..c7fab13fc 100644 --- a/x/params/types/proposal/query.pb.gw.go +++ b/x/params/types/proposal/query.pb.gw.go @@ -70,6 +70,7 @@ func local_request_Query_Params_0(ctx context.Context, marshaler runtime.Marshal // RegisterQueryHandlerServer registers the http handlers for service Query to "mux". // UnaryRPC :call QueryServer directly. // StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. +// Note that using this registration option will cause many gRPC library features (such as grpc.SendHeader, etc) to stop working. Consider using RegisterQueryHandlerFromEndpoint instead. func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, server QueryServer) error { mux.Handle("GET", pattern_Query_Params_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { diff --git a/x/slashing/types/query.pb.gw.go b/x/slashing/types/query.pb.gw.go index 77c4688d9..5ac329602 100644 --- a/x/slashing/types/query.pb.gw.go +++ b/x/slashing/types/query.pb.gw.go @@ -142,6 +142,7 @@ func local_request_Query_SigningInfos_0(ctx context.Context, marshaler runtime.M // RegisterQueryHandlerServer registers the http handlers for service Query to "mux". // UnaryRPC :call QueryServer directly. // StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. +// Note that using this registration option will cause many gRPC library features (such as grpc.SendHeader, etc) to stop working. Consider using RegisterQueryHandlerFromEndpoint instead. func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, server QueryServer) error { mux.Handle("GET", pattern_Query_Params_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { diff --git a/x/staking/types/query.pb.gw.go b/x/staking/types/query.pb.gw.go index 8995f7645..0c4333302 100644 --- a/x/staking/types/query.pb.gw.go +++ b/x/staking/types/query.pb.gw.go @@ -874,6 +874,7 @@ func local_request_Query_Params_0(ctx context.Context, marshaler runtime.Marshal // RegisterQueryHandlerServer registers the http handlers for service Query to "mux". // UnaryRPC :call QueryServer directly. // StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. +// Note that using this registration option will cause many gRPC library features (such as grpc.SendHeader, etc) to stop working. Consider using RegisterQueryHandlerFromEndpoint instead. func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, server QueryServer) error { mux.Handle("GET", pattern_Query_Validators_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { diff --git a/x/staking/types/staking.pb.go b/x/staking/types/staking.pb.go index 8293372f4..456cc2457 100644 --- a/x/staking/types/staking.pb.go +++ b/x/staking/types/staking.pb.go @@ -1263,534 +1263,569 @@ 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{ - // 8430 bytes of a gzipped FileDescriptorSet - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x6b, 0x70, 0x24, 0xd7, - 0x75, 0xde, 0xf6, 0x3c, 0x80, 0x99, 0x33, 0x78, 0x34, 0x2e, 0xb0, 0xe0, 0xec, 0x2c, 0x17, 0x00, - 0x9b, 0x14, 0xb9, 0x5c, 0x92, 0xb3, 0xe4, 0x92, 0x5c, 0x92, 0xb3, 0x96, 0x68, 0x0c, 0x30, 0x0b, - 0x62, 0x89, 0x17, 0x1b, 0xc0, 0x8a, 0x94, 0xac, 0x4c, 0x35, 0x7a, 0x2e, 0x06, 0xcd, 0xed, 0xe9, - 0x6e, 0x76, 0xf7, 0xec, 0x02, 0x1b, 0xfd, 0x60, 0x4a, 0x92, 0x6d, 0x31, 0x51, 0x24, 0x25, 0xae, - 0x44, 0x56, 0x44, 0x85, 0x92, 0x92, 0x48, 0x91, 0x9d, 0x38, 0x8e, 0x1d, 0x27, 0x8e, 0xab, 0x12, - 0xc5, 0x56, 0x1c, 0xa5, 0x12, 0xa7, 0xc4, 0x2a, 0x27, 0x71, 0x52, 0xc9, 0xca, 0xa1, 0x54, 0x89, - 0xac, 0x28, 0xb1, 0xb3, 0x61, 0x52, 0xa9, 0xf0, 0x87, 0x5d, 0xf7, 0xd5, 0x8f, 0x79, 0x60, 0x66, - 0xc0, 0x5d, 0x4a, 0x2c, 0xf3, 0xd7, 0x4e, 0x9f, 0x3e, 0xdf, 0x77, 0xef, 0x3d, 0xf7, 0xdc, 0x73, - 0xcf, 0x7d, 0x34, 0x16, 0x7e, 0xeb, 0x02, 0xcc, 0xd5, 0x6d, 0xbb, 0x6e, 0xe2, 0xb3, 0x8e, 0x6b, - 0xfb, 0xf6, 0x4e, 0x73, 0xf7, 0x6c, 0x0d, 0x7b, 0xba, 0x6b, 0x38, 0xbe, 0xed, 0x16, 0xa9, 0x0c, - 0x8d, 0x33, 0x8d, 0xa2, 0xd0, 0x50, 0x56, 0x61, 0xe2, 0xa2, 0x61, 0xe2, 0xc5, 0x40, 0x71, 0x13, - 0xfb, 0xe8, 0x49, 0x48, 0xed, 0x1a, 0x26, 0xce, 0x4b, 0x73, 0xc9, 0xd3, 0xb9, 0x73, 0xf7, 0x14, - 0x5b, 0x40, 0xc5, 0x38, 0x62, 0x83, 0x88, 0x55, 0x8a, 0x50, 0xbe, 0x97, 0x82, 0xc9, 0x0e, 0x6f, - 0x11, 0x82, 0x94, 0xa5, 0x35, 0x08, 0xa3, 0x74, 0x3a, 0xab, 0xd2, 0xdf, 0x28, 0x0f, 0xc3, 0x8e, - 0xa6, 0x5f, 0xd1, 0xea, 0x38, 0x9f, 0xa0, 0x62, 0xf1, 0x88, 0x66, 0x00, 0x6a, 0xd8, 0xc1, 0x56, - 0x0d, 0x5b, 0xfa, 0x41, 0x3e, 0x39, 0x97, 0x3c, 0x9d, 0x55, 0x23, 0x12, 0xf4, 0x00, 0x4c, 0x38, - 0xcd, 0x1d, 0xd3, 0xd0, 0xab, 0x11, 0x35, 0x98, 0x4b, 0x9e, 0x4e, 0xab, 0x32, 0x7b, 0xb1, 0x18, - 0x2a, 0xdf, 0x07, 0xe3, 0xd7, 0xb0, 0x76, 0x25, 0xaa, 0x9a, 0xa3, 0xaa, 0x63, 0x44, 0x1c, 0x51, - 0x5c, 0x80, 0x91, 0x06, 0xf6, 0x3c, 0xad, 0x8e, 0xab, 0xfe, 0x81, 0x83, 0xf3, 0x29, 0xda, 0xfa, - 0xb9, 0xb6, 0xd6, 0xb7, 0xb6, 0x3c, 0xc7, 0x51, 0x5b, 0x07, 0x0e, 0x46, 0xf3, 0x90, 0xc5, 0x56, - 0xb3, 0xc1, 0x18, 0xd2, 0x5d, 0xec, 0x57, 0xb1, 0x9a, 0x8d, 0x56, 0x96, 0x0c, 0x81, 0x71, 0x8a, - 0x61, 0x0f, 0xbb, 0x57, 0x0d, 0x1d, 0xe7, 0x87, 0x28, 0xc1, 0x7d, 0x6d, 0x04, 0x9b, 0xec, 0x7d, - 0x2b, 0x87, 0xc0, 0xa1, 0x05, 0xc8, 0xe2, 0x7d, 0x1f, 0x5b, 0x9e, 0x61, 0x5b, 0xf9, 0x61, 0x4a, - 0xf2, 0xbe, 0x0e, 0xbd, 0x88, 0xcd, 0x5a, 0x2b, 0x45, 0x88, 0x43, 0xe7, 0x61, 0xd8, 0x76, 0x7c, - 0xc3, 0xb6, 0xbc, 0x7c, 0x66, 0x4e, 0x3a, 0x9d, 0x3b, 0x77, 0x67, 0x47, 0x47, 0x58, 0x67, 0x3a, - 0xaa, 0x50, 0x46, 0xcb, 0x20, 0x7b, 0x76, 0xd3, 0xd5, 0x71, 0x55, 0xb7, 0x6b, 0xb8, 0x6a, 0x58, - 0xbb, 0x76, 0x3e, 0x4b, 0x09, 0x66, 0xdb, 0x1b, 0x42, 0x15, 0x17, 0xec, 0x1a, 0x5e, 0xb6, 0x76, - 0x6d, 0x75, 0xcc, 0x8b, 0x3d, 0xa3, 0x69, 0x18, 0xf2, 0x0e, 0x2c, 0x5f, 0xdb, 0xcf, 0x8f, 0x50, - 0x0f, 0xe1, 0x4f, 0xca, 0xaf, 0x0f, 0xc1, 0x78, 0x3f, 0x2e, 0x76, 0x01, 0xd2, 0xbb, 0xa4, 0x95, - 0xf9, 0xc4, 0x20, 0x36, 0x60, 0x98, 0xb8, 0x11, 0x87, 0x8e, 0x68, 0xc4, 0x79, 0xc8, 0x59, 0xd8, - 0xf3, 0x71, 0x8d, 0x79, 0x44, 0xb2, 0x4f, 0x9f, 0x02, 0x06, 0x6a, 0x77, 0xa9, 0xd4, 0x91, 0x5c, - 0xea, 0x79, 0x18, 0x0f, 0xaa, 0x54, 0x75, 0x35, 0xab, 0x2e, 0x7c, 0xf3, 0x6c, 0xaf, 0x9a, 0x14, - 0x2b, 0x02, 0xa7, 0x12, 0x98, 0x3a, 0x86, 0x63, 0xcf, 0x68, 0x11, 0xc0, 0xb6, 0xb0, 0xbd, 0x5b, - 0xad, 0x61, 0xdd, 0xcc, 0x67, 0xba, 0x58, 0x69, 0x9d, 0xa8, 0xb4, 0x59, 0xc9, 0x66, 0x52, 0xdd, - 0x44, 0x4f, 0x85, 0xae, 0x36, 0xdc, 0xc5, 0x53, 0x56, 0xd9, 0x20, 0x6b, 0xf3, 0xb6, 0x6d, 0x18, - 0x73, 0x31, 0xf1, 0x7b, 0x5c, 0xe3, 0x2d, 0xcb, 0xd2, 0x4a, 0x14, 0x7b, 0xb6, 0x4c, 0xe5, 0x30, - 0xd6, 0xb0, 0x51, 0x37, 0xfa, 0x88, 0xee, 0x86, 0x40, 0x50, 0xa5, 0x6e, 0x05, 0x34, 0x0a, 0x8d, - 0x08, 0xe1, 0x9a, 0xd6, 0xc0, 0x85, 0xeb, 0x30, 0x16, 0x37, 0x0f, 0x9a, 0x82, 0xb4, 0xe7, 0x6b, - 0xae, 0x4f, 0xbd, 0x30, 0xad, 0xb2, 0x07, 0x24, 0x43, 0x12, 0x5b, 0x35, 0x1a, 0xe5, 0xd2, 0x2a, - 0xf9, 0x89, 0x7e, 0x32, 0x6c, 0x70, 0x92, 0x36, 0xf8, 0xde, 0xf6, 0x1e, 0x8d, 0x31, 0xb7, 0xb6, - 0xbb, 0xf0, 0x04, 0x8c, 0xc6, 0x1a, 0xd0, 0x6f, 0xd1, 0xca, 0x47, 0xe1, 0x78, 0x47, 0x6a, 0xf4, - 0x3c, 0x4c, 0x35, 0x2d, 0xc3, 0xf2, 0xb1, 0xeb, 0xb8, 0x98, 0x78, 0x2c, 0x2b, 0x2a, 0xff, 0xdf, - 0x86, 0xbb, 0xf8, 0xdc, 0x76, 0x54, 0x9b, 0xb1, 0xa8, 0x93, 0xcd, 0x76, 0xe1, 0x99, 0x6c, 0xe6, - 0xfb, 0xc3, 0xf2, 0xcb, 0x2f, 0xbf, 0xfc, 0x72, 0x42, 0xf9, 0x67, 0x43, 0x30, 0xd5, 0x69, 0xcc, - 0x74, 0x1c, 0xbe, 0xd3, 0x30, 0x64, 0x35, 0x1b, 0x3b, 0xd8, 0xa5, 0x46, 0x4a, 0xab, 0xfc, 0x09, - 0xcd, 0x43, 0xda, 0xd4, 0x76, 0xb0, 0x99, 0x4f, 0xcd, 0x49, 0xa7, 0xc7, 0xce, 0x3d, 0xd0, 0xd7, - 0xa8, 0x2c, 0xae, 0x10, 0x88, 0xca, 0x90, 0xe8, 0x03, 0x90, 0xe2, 0x21, 0x9a, 0x30, 0x9c, 0xe9, - 0x8f, 0x81, 0x8c, 0x25, 0x95, 0xe2, 0xd0, 0x49, 0xc8, 0x92, 0x7f, 0x99, 0x6f, 0x0c, 0xd1, 0x3a, - 0x67, 0x88, 0x80, 0xf8, 0x05, 0x2a, 0x40, 0x86, 0x0e, 0x93, 0x1a, 0x16, 0x53, 0x5b, 0xf0, 0x4c, - 0x1c, 0xab, 0x86, 0x77, 0xb5, 0xa6, 0xe9, 0x57, 0xaf, 0x6a, 0x66, 0x13, 0x53, 0x87, 0xcf, 0xaa, - 0x23, 0x5c, 0x78, 0x99, 0xc8, 0xd0, 0x2c, 0xe4, 0xd8, 0xa8, 0x32, 0xac, 0x1a, 0xde, 0xa7, 0xd1, - 0x33, 0xad, 0xb2, 0x81, 0xb6, 0x4c, 0x24, 0xa4, 0xf8, 0x17, 0x3d, 0xdb, 0x12, 0xae, 0x49, 0x8b, - 0x20, 0x02, 0x5a, 0xfc, 0x13, 0xad, 0x81, 0xfb, 0x54, 0xe7, 0xe6, 0xb5, 0x8d, 0xa5, 0xfb, 0x60, - 0x9c, 0x6a, 0x3c, 0xca, 0xbb, 0x5e, 0x33, 0xf3, 0x13, 0x73, 0xd2, 0xe9, 0x8c, 0x3a, 0xc6, 0xc4, - 0xeb, 0x5c, 0xaa, 0xfc, 0x5a, 0x02, 0x52, 0x34, 0xb0, 0x8c, 0x43, 0x6e, 0xeb, 0x85, 0x8d, 0x4a, - 0x75, 0x71, 0x7d, 0xbb, 0xbc, 0x52, 0x91, 0x25, 0x34, 0x06, 0x40, 0x05, 0x17, 0x57, 0xd6, 0xe7, - 0xb7, 0xe4, 0x44, 0xf0, 0xbc, 0xbc, 0xb6, 0x75, 0xfe, 0x31, 0x39, 0x19, 0x00, 0xb6, 0x99, 0x20, - 0x15, 0x55, 0x78, 0xf4, 0x9c, 0x9c, 0x46, 0x32, 0x8c, 0x30, 0x82, 0xe5, 0xe7, 0x2b, 0x8b, 0xe7, - 0x1f, 0x93, 0x87, 0xe2, 0x92, 0x47, 0xcf, 0xc9, 0xc3, 0x68, 0x14, 0xb2, 0x54, 0x52, 0x5e, 0x5f, - 0x5f, 0x91, 0x33, 0x01, 0xe7, 0xe6, 0x96, 0xba, 0xbc, 0xb6, 0x24, 0x67, 0x03, 0xce, 0x25, 0x75, - 0x7d, 0x7b, 0x43, 0x86, 0x80, 0x61, 0xb5, 0xb2, 0xb9, 0x39, 0xbf, 0x54, 0x91, 0x73, 0x81, 0x46, - 0xf9, 0x85, 0xad, 0xca, 0xa6, 0x3c, 0x12, 0xab, 0xd6, 0xa3, 0xe7, 0xe4, 0xd1, 0xa0, 0x88, 0xca, - 0xda, 0xf6, 0xaa, 0x3c, 0x86, 0x26, 0x60, 0x94, 0x15, 0x21, 0x2a, 0x31, 0xde, 0x22, 0x3a, 0xff, - 0x98, 0x2c, 0x87, 0x15, 0x61, 0x2c, 0x13, 0x31, 0xc1, 0xf9, 0xc7, 0x64, 0xa4, 0x2c, 0x40, 0x9a, - 0xba, 0x21, 0x42, 0x30, 0xb6, 0x32, 0x5f, 0xae, 0xac, 0x54, 0xd7, 0x37, 0xb6, 0x96, 0xd7, 0xd7, - 0xe6, 0x57, 0x64, 0x29, 0x94, 0xa9, 0x95, 0xe7, 0xb6, 0x97, 0xd5, 0xca, 0xa2, 0x9c, 0x88, 0xca, - 0x36, 0x2a, 0xf3, 0x5b, 0x95, 0x45, 0x39, 0xa9, 0xe8, 0x30, 0xd5, 0x29, 0xa0, 0x76, 0x1c, 0x42, - 0x11, 0x5f, 0x48, 0x74, 0xf1, 0x05, 0xca, 0xd5, 0xea, 0x0b, 0xca, 0x77, 0x13, 0x30, 0xd9, 0x61, - 0x52, 0xe9, 0x58, 0xc8, 0xd3, 0x90, 0x66, 0xbe, 0xcc, 0xa6, 0xd9, 0xfb, 0x3b, 0xce, 0x4e, 0xd4, - 0xb3, 0xdb, 0xa6, 0x5a, 0x8a, 0x8b, 0xa6, 0x1a, 0xc9, 0x2e, 0xa9, 0x06, 0xa1, 0x68, 0x73, 0xd8, - 0x8f, 0xb4, 0x05, 0x7f, 0x36, 0x3f, 0x9e, 0xef, 0x67, 0x7e, 0xa4, 0xb2, 0xc1, 0x26, 0x81, 0x74, - 0x87, 0x49, 0xe0, 0x02, 0x4c, 0xb4, 0x11, 0xf5, 0x1d, 0x8c, 0x3f, 0x26, 0x41, 0xbe, 0x9b, 0x71, - 0x7a, 0x84, 0xc4, 0x44, 0x2c, 0x24, 0x5e, 0x68, 0xb5, 0xe0, 0x5d, 0xdd, 0x3b, 0xa1, 0xad, 0xaf, - 0xbf, 0x2a, 0xc1, 0x74, 0xe7, 0x94, 0xb2, 0x63, 0x1d, 0x3e, 0x00, 0x43, 0x0d, 0xec, 0xef, 0xd9, - 0x22, 0xad, 0xba, 0xb7, 0xc3, 0x64, 0x4d, 0x5e, 0xb7, 0x76, 0x36, 0x47, 0x45, 0x67, 0xfb, 0x64, - 0xb7, 0xbc, 0x90, 0xd5, 0xa6, 0xad, 0xa6, 0x9f, 0x4c, 0xc0, 0xf1, 0x8e, 0xe4, 0x1d, 0x2b, 0x7a, - 0x0a, 0xc0, 0xb0, 0x9c, 0xa6, 0xcf, 0x52, 0x27, 0x16, 0x89, 0xb3, 0x54, 0x42, 0x83, 0x17, 0x89, - 0xb2, 0x4d, 0x3f, 0x78, 0x9f, 0xa4, 0xef, 0x81, 0x89, 0xa8, 0xc2, 0x93, 0x61, 0x45, 0x53, 0xb4, - 0xa2, 0x33, 0x5d, 0x5a, 0xda, 0xe6, 0x98, 0x0f, 0x83, 0xac, 0x9b, 0x06, 0xb6, 0xfc, 0xaa, 0xe7, - 0xbb, 0x58, 0x6b, 0x18, 0x56, 0x9d, 0x4e, 0x35, 0x99, 0x52, 0x7a, 0x57, 0x33, 0x3d, 0xac, 0x8e, - 0xb3, 0xd7, 0x9b, 0xe2, 0x2d, 0x41, 0x50, 0x07, 0x72, 0x23, 0x88, 0xa1, 0x18, 0x82, 0xbd, 0x0e, - 0x10, 0xca, 0x67, 0xb3, 0x90, 0x8b, 0x24, 0xe0, 0xe8, 0x2e, 0x18, 0x79, 0x51, 0xbb, 0xaa, 0x55, - 0xc5, 0xa2, 0x8a, 0x59, 0x22, 0x47, 0x64, 0x1b, 0x7c, 0x61, 0xf5, 0x30, 0x4c, 0x51, 0x15, 0xbb, - 0xe9, 0x63, 0xb7, 0xaa, 0x9b, 0x9a, 0xe7, 0x51, 0xa3, 0x65, 0xa8, 0x2a, 0x22, 0xef, 0xd6, 0xc9, - 0xab, 0x05, 0xf1, 0x06, 0x3d, 0x0e, 0x93, 0x14, 0xd1, 0x68, 0x9a, 0xbe, 0xe1, 0x98, 0xb8, 0x4a, - 0x96, 0x79, 0x1e, 0x9d, 0x72, 0x82, 0x9a, 0x4d, 0x10, 0x8d, 0x55, 0xae, 0x40, 0x6a, 0xe4, 0xa1, - 0x45, 0x38, 0x45, 0x61, 0x75, 0x6c, 0x61, 0x57, 0xf3, 0x71, 0x15, 0xbf, 0xd4, 0xd4, 0x4c, 0xaf, - 0xaa, 0x59, 0xb5, 0xea, 0x9e, 0xe6, 0xed, 0xe5, 0xa7, 0x08, 0x41, 0x39, 0x91, 0x97, 0xd4, 0x13, - 0x44, 0x71, 0x89, 0xeb, 0x55, 0xa8, 0xda, 0xbc, 0x55, 0x7b, 0x46, 0xf3, 0xf6, 0x50, 0x09, 0xa6, - 0x29, 0x8b, 0xe7, 0xbb, 0x86, 0x55, 0xaf, 0xea, 0x7b, 0x58, 0xbf, 0x52, 0x6d, 0xfa, 0xbb, 0x4f, - 0xe6, 0x4f, 0x46, 0xcb, 0xa7, 0x35, 0xdc, 0xa4, 0x3a, 0x0b, 0x44, 0x65, 0xdb, 0xdf, 0x7d, 0x12, - 0x6d, 0xc2, 0x08, 0xe9, 0x8c, 0x86, 0x71, 0x1d, 0x57, 0x77, 0x6d, 0x97, 0xce, 0xa1, 0x63, 0x1d, - 0x42, 0x53, 0xc4, 0x82, 0xc5, 0x75, 0x0e, 0x58, 0xb5, 0x6b, 0xb8, 0x94, 0xde, 0xdc, 0xa8, 0x54, - 0x16, 0xd5, 0x9c, 0x60, 0xb9, 0x68, 0xbb, 0xc4, 0xa1, 0xea, 0x76, 0x60, 0xe0, 0x1c, 0x73, 0xa8, - 0xba, 0x2d, 0xcc, 0xfb, 0x38, 0x4c, 0xea, 0x3a, 0x6b, 0xb3, 0xa1, 0x57, 0xf9, 0x62, 0xcc, 0xcb, - 0xcb, 0x31, 0x63, 0xe9, 0xfa, 0x12, 0x53, 0xe0, 0x3e, 0xee, 0xa1, 0xa7, 0xe0, 0x78, 0x68, 0xac, - 0x28, 0x70, 0xa2, 0xad, 0x95, 0xad, 0xd0, 0xc7, 0x61, 0xd2, 0x39, 0x68, 0x07, 0xa2, 0x58, 0x89, - 0xce, 0x41, 0x2b, 0xec, 0x09, 0x98, 0x72, 0xf6, 0x9c, 0x76, 0xdc, 0x99, 0x28, 0x0e, 0x39, 0x7b, - 0x4e, 0x2b, 0xf0, 0x7d, 0x74, 0x65, 0xee, 0x62, 0x5d, 0xf3, 0x71, 0x2d, 0x7f, 0x47, 0x54, 0x3d, - 0xf2, 0x02, 0x15, 0x41, 0xd6, 0xf5, 0x2a, 0xb6, 0xb4, 0x1d, 0x13, 0x57, 0x35, 0x17, 0x5b, 0x9a, - 0x97, 0x9f, 0xa5, 0xca, 0x29, 0xdf, 0x6d, 0x62, 0x75, 0x4c, 0xd7, 0x2b, 0xf4, 0xe5, 0x3c, 0x7d, - 0x87, 0xce, 0xc0, 0x84, 0xbd, 0xf3, 0xa2, 0xce, 0x3c, 0xb2, 0xea, 0xb8, 0x78, 0xd7, 0xd8, 0xcf, - 0xdf, 0x43, 0xcd, 0x3b, 0x4e, 0x5e, 0x50, 0x7f, 0xdc, 0xa0, 0x62, 0x74, 0x3f, 0xc8, 0xba, 0xb7, - 0xa7, 0xb9, 0x0e, 0x0d, 0xc9, 0x9e, 0xa3, 0xe9, 0x38, 0xff, 0x3e, 0xa6, 0xca, 0xe4, 0x6b, 0x42, - 0x4c, 0x46, 0x84, 0x77, 0xcd, 0xd8, 0xf5, 0x05, 0xe3, 0x7d, 0x6c, 0x44, 0x50, 0x19, 0x67, 0x3b, - 0x0d, 0x32, 0xb1, 0x44, 0xac, 0xe0, 0xd3, 0x54, 0x6d, 0xcc, 0xd9, 0x73, 0xa2, 0xe5, 0xde, 0x0d, - 0xa3, 0x44, 0x33, 0x2c, 0xf4, 0x7e, 0x96, 0xb8, 0x39, 0x7b, 0x91, 0x12, 0x1f, 0x83, 0x69, 0xa2, - 0xd4, 0xc0, 0xbe, 0x56, 0xd3, 0x7c, 0x2d, 0xa2, 0xfd, 0x20, 0xd5, 0x26, 0x66, 0x5f, 0xe5, 0x2f, - 0x63, 0xf5, 0x74, 0x9b, 0x3b, 0x07, 0x81, 0x63, 0x3d, 0xc4, 0xea, 0x49, 0x64, 0xc2, 0xb5, 0x6e, - 0x5b, 0x72, 0xae, 0x94, 0x60, 0x24, 0xea, 0xf7, 0x28, 0x0b, 0xcc, 0xf3, 0x65, 0x89, 0x24, 0x41, - 0x0b, 0xeb, 0x8b, 0x24, 0x7d, 0xf9, 0x50, 0x45, 0x4e, 0x90, 0x34, 0x6a, 0x65, 0x79, 0xab, 0x52, - 0x55, 0xb7, 0xd7, 0xb6, 0x96, 0x57, 0x2b, 0x72, 0x32, 0x92, 0xd8, 0x5f, 0x4a, 0x65, 0xee, 0x95, - 0xef, 0x53, 0x5e, 0x4f, 0xc0, 0x58, 0x7c, 0xa5, 0x86, 0x7e, 0x02, 0xee, 0x10, 0xdb, 0x2a, 0x1e, - 0xf6, 0xab, 0xd7, 0x0c, 0x97, 0x0e, 0xc8, 0x86, 0xc6, 0x26, 0xc7, 0xc0, 0x7f, 0xa6, 0xb8, 0xd6, - 0x26, 0xf6, 0x3f, 0x68, 0xb8, 0x64, 0xb8, 0x35, 0x34, 0x1f, 0xad, 0xc0, 0xac, 0x65, 0x57, 0x3d, - 0x5f, 0xb3, 0x6a, 0x9a, 0x5b, 0xab, 0x86, 0x1b, 0x5a, 0x55, 0x4d, 0xd7, 0xb1, 0xe7, 0xd9, 0x6c, - 0x22, 0x0c, 0x58, 0xee, 0xb4, 0xec, 0x4d, 0xae, 0x1c, 0xce, 0x10, 0xf3, 0x5c, 0xb5, 0xc5, 0x7d, - 0x93, 0xdd, 0xdc, 0xf7, 0x24, 0x64, 0x1b, 0x9a, 0x53, 0xc5, 0x96, 0xef, 0x1e, 0xd0, 0xfc, 0x3c, - 0xa3, 0x66, 0x1a, 0x9a, 0x53, 0x21, 0xcf, 0xef, 0xc8, 0x32, 0xe9, 0x52, 0x2a, 0x93, 0x91, 0xb3, - 0x97, 0x52, 0x99, 0xac, 0x0c, 0xca, 0x1b, 0x49, 0x18, 0x89, 0xe6, 0xeb, 0x64, 0xf9, 0xa3, 0xd3, - 0x19, 0x4b, 0xa2, 0x31, 0xed, 0xee, 0x43, 0xb3, 0xfb, 0xe2, 0x02, 0x99, 0xca, 0x4a, 0x43, 0x2c, - 0x39, 0x56, 0x19, 0x92, 0xa4, 0x11, 0xc4, 0xd9, 0x30, 0x4b, 0x46, 0x32, 0x2a, 0x7f, 0x42, 0x4b, - 0x30, 0xf4, 0xa2, 0x47, 0xb9, 0x87, 0x28, 0xf7, 0x3d, 0x87, 0x73, 0x5f, 0xda, 0xa4, 0xe4, 0xd9, - 0x4b, 0x9b, 0xd5, 0xb5, 0x75, 0x75, 0x75, 0x7e, 0x45, 0xe5, 0x70, 0x74, 0x02, 0x52, 0xa6, 0x76, - 0xfd, 0x20, 0x3e, 0xe9, 0x51, 0x51, 0xbf, 0x9d, 0x70, 0x02, 0x52, 0xd7, 0xb0, 0x76, 0x25, 0x3e, - 0xd5, 0x50, 0xd1, 0x6d, 0x1c, 0x0c, 0x67, 0x21, 0x4d, 0xed, 0x85, 0x00, 0xb8, 0xc5, 0xe4, 0x63, - 0x28, 0x03, 0xa9, 0x85, 0x75, 0x95, 0x0c, 0x08, 0x19, 0x46, 0x98, 0xb4, 0xba, 0xb1, 0x5c, 0x59, - 0xa8, 0xc8, 0x09, 0xe5, 0x71, 0x18, 0x62, 0x46, 0x20, 0x83, 0x25, 0x30, 0x83, 0x7c, 0x8c, 0x3f, - 0x72, 0x0e, 0x49, 0xbc, 0xdd, 0x5e, 0x2d, 0x57, 0x54, 0x39, 0x11, 0xef, 0xea, 0x94, 0x9c, 0x56, - 0x3c, 0x18, 0x89, 0xe6, 0xe1, 0xef, 0xcc, 0x62, 0xfc, 0x1b, 0x12, 0xe4, 0x22, 0x79, 0x35, 0x49, - 0x88, 0x34, 0xd3, 0xb4, 0xaf, 0x55, 0x35, 0xd3, 0xd0, 0x3c, 0xee, 0x1a, 0x40, 0x45, 0xf3, 0x44, - 0xd2, 0x6f, 0xd7, 0xbd, 0x43, 0x43, 0x24, 0x2d, 0x0f, 0x29, 0x5f, 0x94, 0x40, 0x6e, 0x4d, 0x6c, - 0x5b, 0xaa, 0x29, 0xfd, 0x28, 0xab, 0xa9, 0x7c, 0x41, 0x82, 0xb1, 0x78, 0x36, 0xdb, 0x52, 0xbd, - 0xbb, 0x7e, 0xa4, 0xd5, 0xfb, 0xfd, 0x04, 0x8c, 0xc6, 0x72, 0xd8, 0x7e, 0x6b, 0xf7, 0x12, 0x4c, - 0x18, 0x35, 0xdc, 0x70, 0x6c, 0x1f, 0x5b, 0xfa, 0x41, 0xd5, 0xc4, 0x57, 0xb1, 0x99, 0x57, 0x68, - 0xd0, 0x38, 0x7b, 0x78, 0x96, 0x5c, 0x5c, 0x0e, 0x71, 0x2b, 0x04, 0x56, 0x9a, 0x5c, 0x5e, 0xac, - 0xac, 0x6e, 0xac, 0x6f, 0x55, 0xd6, 0x16, 0x5e, 0xa8, 0x6e, 0xaf, 0x3d, 0xbb, 0xb6, 0xfe, 0xc1, - 0x35, 0x55, 0x36, 0x5a, 0xd4, 0x6e, 0xe3, 0xb0, 0xdf, 0x00, 0xb9, 0xb5, 0x52, 0xe8, 0x0e, 0xe8, - 0x54, 0x2d, 0xf9, 0x18, 0x9a, 0x84, 0xf1, 0xb5, 0xf5, 0xea, 0xe6, 0xf2, 0x62, 0xa5, 0x5a, 0xb9, - 0x78, 0xb1, 0xb2, 0xb0, 0xb5, 0xc9, 0xf6, 0x3d, 0x02, 0xed, 0xad, 0xd8, 0x00, 0x57, 0x3e, 0x9f, - 0x84, 0xc9, 0x0e, 0x35, 0x41, 0xf3, 0x7c, 0xc5, 0xc2, 0x16, 0x51, 0x0f, 0xf5, 0x53, 0xfb, 0x22, - 0xc9, 0x19, 0x36, 0x34, 0xd7, 0xe7, 0x0b, 0x9c, 0xfb, 0x81, 0x58, 0xc9, 0xf2, 0x8d, 0x5d, 0x03, - 0xbb, 0x7c, 0x3f, 0x89, 0x2d, 0x63, 0xc6, 0x43, 0x39, 0xdb, 0x52, 0x7a, 0x10, 0x90, 0x63, 0x7b, - 0x86, 0x6f, 0x5c, 0xc5, 0x55, 0xc3, 0x12, 0x9b, 0x4f, 0x64, 0x59, 0x93, 0x52, 0x65, 0xf1, 0x66, - 0xd9, 0xf2, 0x03, 0x6d, 0x0b, 0xd7, 0xb5, 0x16, 0x6d, 0x12, 0xcc, 0x93, 0xaa, 0x2c, 0xde, 0x04, - 0xda, 0x77, 0xc1, 0x48, 0xcd, 0x6e, 0x92, 0x5c, 0x8f, 0xe9, 0x91, 0xb9, 0x43, 0x52, 0x73, 0x4c, - 0x16, 0xa8, 0xf0, 0x2c, 0x3e, 0xdc, 0xf5, 0x1a, 0x51, 0x73, 0x4c, 0xc6, 0x54, 0xee, 0x83, 0x71, - 0xad, 0x5e, 0x77, 0x09, 0xb9, 0x20, 0x62, 0xeb, 0x92, 0xb1, 0x40, 0x4c, 0x15, 0x0b, 0x97, 0x20, - 0x23, 0xec, 0x40, 0xa6, 0x6a, 0x62, 0x89, 0xaa, 0xc3, 0x16, 0xdb, 0x89, 0xd3, 0x59, 0x35, 0x63, - 0x89, 0x97, 0x77, 0xc1, 0x88, 0xe1, 0x55, 0xc3, 0x4d, 0xfc, 0xc4, 0x5c, 0xe2, 0x74, 0x46, 0xcd, - 0x19, 0x5e, 0xb0, 0x01, 0xaa, 0x7c, 0x35, 0x01, 0x63, 0xf1, 0x43, 0x08, 0xb4, 0x08, 0x19, 0xd3, - 0xd6, 0x35, 0xea, 0x5a, 0xec, 0x04, 0xec, 0x74, 0x8f, 0x73, 0x8b, 0xe2, 0x0a, 0xd7, 0x57, 0x03, - 0x64, 0xe1, 0xdf, 0x48, 0x90, 0x11, 0x62, 0x34, 0x0d, 0x29, 0x47, 0xf3, 0xf7, 0x28, 0x5d, 0xba, - 0x9c, 0x90, 0x25, 0x95, 0x3e, 0x13, 0xb9, 0xe7, 0x68, 0x16, 0x75, 0x01, 0x2e, 0x27, 0xcf, 0xa4, - 0x5f, 0x4d, 0xac, 0xd5, 0xe8, 0xa2, 0xc7, 0x6e, 0x34, 0xb0, 0xe5, 0x7b, 0xa2, 0x5f, 0xb9, 0x7c, - 0x81, 0x8b, 0xd1, 0x03, 0x30, 0xe1, 0xbb, 0x9a, 0x61, 0xc6, 0x74, 0x53, 0x54, 0x57, 0x16, 0x2f, - 0x02, 0xe5, 0x12, 0x9c, 0x10, 0xbc, 0x35, 0xec, 0x6b, 0xfa, 0x1e, 0xae, 0x85, 0xa0, 0x21, 0xba, - 0xb9, 0x71, 0x07, 0x57, 0x58, 0xe4, 0xef, 0x05, 0x56, 0x79, 0x5d, 0x82, 0x09, 0xb1, 0x4c, 0xab, - 0x05, 0xc6, 0x5a, 0x05, 0xd0, 0x2c, 0xcb, 0xf6, 0xa3, 0xe6, 0x6a, 0x77, 0xe5, 0x36, 0x5c, 0x71, - 0x3e, 0x00, 0xa9, 0x11, 0x82, 0x42, 0x03, 0x20, 0x7c, 0xd3, 0xd5, 0x6c, 0xb3, 0x90, 0xe3, 0x27, - 0x4c, 0xf4, 0x98, 0x92, 0x2d, 0xec, 0x81, 0x89, 0xc8, 0x7a, 0x0e, 0x4d, 0x41, 0x7a, 0x07, 0xd7, - 0x0d, 0x8b, 0xef, 0x1b, 0xb3, 0x07, 0xb1, 0xfd, 0x92, 0x0a, 0xb6, 0x5f, 0xca, 0x9f, 0x96, 0x60, - 0x52, 0xb7, 0x1b, 0xad, 0xf5, 0x2d, 0xcb, 0x2d, 0xbb, 0x0b, 0xde, 0x33, 0xd2, 0x87, 0x3e, 0x50, - 0x37, 0xfc, 0xbd, 0xe6, 0x4e, 0x51, 0xb7, 0x1b, 0x67, 0xeb, 0xb6, 0xa9, 0x59, 0xf5, 0xf0, 0x9c, - 0x95, 0xfe, 0xd0, 0x1f, 0xaa, 0x63, 0xeb, 0xa1, 0xba, 0x1d, 0x39, 0x75, 0xbd, 0x10, 0xfe, 0xfc, - 0x7f, 0x92, 0xf4, 0xe5, 0x44, 0x72, 0x69, 0xa3, 0xfc, 0xf5, 0x44, 0x61, 0x89, 0x15, 0xb7, 0x21, - 0xcc, 0xa3, 0xe2, 0x5d, 0x13, 0xeb, 0xa4, 0xc9, 0xf0, 0x83, 0x07, 0x60, 0xaa, 0x6e, 0xd7, 0x6d, - 0xca, 0x78, 0x96, 0xfc, 0xe2, 0x27, 0xb7, 0xd9, 0x40, 0x5a, 0xe8, 0x79, 0xcc, 0x5b, 0x5a, 0x83, - 0x49, 0xae, 0x5c, 0xa5, 0x47, 0x47, 0x6c, 0x61, 0x83, 0x0e, 0xdd, 0x55, 0xcb, 0xff, 0xf2, 0xf7, - 0xe8, 0x84, 0xae, 0x4e, 0x70, 0x28, 0x79, 0xc7, 0xd6, 0x3e, 0x25, 0x15, 0x8e, 0xc7, 0xf8, 0xd8, - 0xb0, 0xc5, 0x6e, 0x0f, 0xc6, 0x7f, 0xce, 0x19, 0x27, 0x23, 0x8c, 0x9b, 0x1c, 0x5a, 0x5a, 0x80, - 0xd1, 0x41, 0xb8, 0x7e, 0x9b, 0x73, 0x8d, 0xe0, 0x28, 0xc9, 0x12, 0x8c, 0x53, 0x12, 0xbd, 0xe9, - 0xf9, 0x76, 0x83, 0xc6, 0xc4, 0xc3, 0x69, 0xfe, 0xc5, 0xf7, 0xd8, 0x38, 0x1a, 0x23, 0xb0, 0x85, - 0x00, 0x55, 0x2a, 0x01, 0x3d, 0x2d, 0xab, 0x61, 0xdd, 0xec, 0xc1, 0xf0, 0x2d, 0x5e, 0x91, 0x40, - 0xbf, 0x74, 0x19, 0xa6, 0xc8, 0x6f, 0x1a, 0xb2, 0xa2, 0x35, 0xe9, 0xbd, 0x05, 0x97, 0x7f, 0xfd, - 0x63, 0x6c, 0xa8, 0x4e, 0x06, 0x04, 0x91, 0x3a, 0x45, 0x7a, 0xb1, 0x8e, 0x7d, 0x1f, 0xbb, 0x5e, - 0x55, 0x33, 0x3b, 0x55, 0x2f, 0xb2, 0x87, 0x91, 0xff, 0xf9, 0x1f, 0xc6, 0x7b, 0x71, 0x89, 0x21, - 0xe7, 0x4d, 0xb3, 0xb4, 0x0d, 0x77, 0x74, 0xf0, 0x8a, 0x3e, 0x38, 0x3f, 0xcf, 0x39, 0xa7, 0xda, - 0x3c, 0x83, 0xd0, 0x6e, 0x80, 0x90, 0x07, 0x7d, 0xd9, 0x07, 0xe7, 0x5f, 0xe3, 0x9c, 0x88, 0x63, - 0x45, 0x97, 0x12, 0xc6, 0x4b, 0x30, 0x71, 0x15, 0xbb, 0x3b, 0xb6, 0xc7, 0xf7, 0x8d, 0xfa, 0xa0, - 0xfb, 0x02, 0xa7, 0x1b, 0xe7, 0x40, 0xba, 0x91, 0x44, 0xb8, 0x9e, 0x82, 0xcc, 0xae, 0xa6, 0xe3, - 0x3e, 0x28, 0x5e, 0xe5, 0x14, 0xc3, 0x44, 0x9f, 0x40, 0xe7, 0x61, 0xa4, 0x6e, 0xf3, 0x59, 0xab, - 0x37, 0xfc, 0x8b, 0x1c, 0x9e, 0x13, 0x18, 0x4e, 0xe1, 0xd8, 0x4e, 0xd3, 0x24, 0x53, 0x5a, 0x6f, - 0x8a, 0xbf, 0x2e, 0x28, 0x04, 0x86, 0x53, 0x0c, 0x60, 0xd6, 0xd7, 0x04, 0x85, 0x17, 0xb1, 0xe7, - 0xd3, 0x90, 0xb3, 0x2d, 0xf3, 0xc0, 0xb6, 0xfa, 0xa9, 0xc4, 0x97, 0x38, 0x03, 0x70, 0x08, 0x21, - 0xb8, 0x00, 0xd9, 0x7e, 0x3b, 0xe2, 0x6f, 0xfe, 0x50, 0x0c, 0x0f, 0xd1, 0x03, 0x4b, 0x30, 0x2e, - 0x02, 0x94, 0x61, 0x5b, 0x7d, 0x50, 0xfc, 0x2d, 0x4e, 0x31, 0x16, 0x81, 0xf1, 0x66, 0xf8, 0xd8, - 0xf3, 0xeb, 0xb8, 0x1f, 0x92, 0xaf, 0x8a, 0x66, 0x70, 0x08, 0x37, 0xe5, 0x0e, 0xb6, 0xf4, 0xbd, - 0xfe, 0x18, 0xbe, 0x26, 0x4c, 0x29, 0x30, 0x84, 0x62, 0x01, 0x46, 0x1b, 0x9a, 0xeb, 0xed, 0x69, - 0x66, 0x5f, 0xdd, 0xf1, 0xb7, 0x39, 0xc7, 0x48, 0x00, 0xe2, 0x16, 0x69, 0x5a, 0x83, 0xd0, 0x7c, - 0x5d, 0x58, 0x24, 0x02, 0xe3, 0x43, 0xcf, 0xf3, 0xe9, 0x26, 0xdb, 0x20, 0x6c, 0xbf, 0x20, 0x86, - 0x1e, 0xc3, 0xae, 0x46, 0x19, 0x2f, 0x40, 0xd6, 0x33, 0xae, 0xf7, 0x45, 0xf3, 0x8b, 0xa2, 0xa7, - 0x29, 0x80, 0x80, 0x5f, 0x80, 0x13, 0x1d, 0xa7, 0x89, 0x3e, 0xc8, 0xfe, 0x0e, 0x27, 0x9b, 0xee, - 0x30, 0x55, 0xf0, 0x90, 0x30, 0x28, 0xe5, 0xdf, 0x15, 0x21, 0x01, 0xb7, 0x70, 0x6d, 0x90, 0x75, - 0x84, 0xa7, 0xed, 0x0e, 0x66, 0xb5, 0x5f, 0x12, 0x56, 0x63, 0xd8, 0x98, 0xd5, 0xb6, 0x60, 0x9a, - 0x33, 0x0e, 0xd6, 0xaf, 0x7f, 0x4f, 0x04, 0x56, 0x86, 0xde, 0x8e, 0xf7, 0xee, 0x87, 0xa1, 0x10, - 0x98, 0x53, 0x24, 0xac, 0x5e, 0xb5, 0xa1, 0x39, 0x7d, 0x30, 0xff, 0x32, 0x67, 0x16, 0x11, 0x3f, - 0xc8, 0x78, 0xbd, 0x55, 0xcd, 0x21, 0xe4, 0xcf, 0x43, 0x5e, 0x90, 0x37, 0x2d, 0x17, 0xeb, 0x76, - 0xdd, 0x32, 0xae, 0xe3, 0x5a, 0x1f, 0xd4, 0x7f, 0xbf, 0xa5, 0xab, 0xb6, 0x23, 0x70, 0xc2, 0xbc, - 0x0c, 0x72, 0x90, 0xab, 0x54, 0x8d, 0x86, 0x63, 0xbb, 0x7e, 0x0f, 0xc6, 0x5f, 0x11, 0x3d, 0x15, - 0xe0, 0x96, 0x29, 0xac, 0x54, 0x01, 0x76, 0xf2, 0xdc, 0xaf, 0x4b, 0xfe, 0x2a, 0x27, 0x1a, 0x0d, - 0x51, 0x3c, 0x70, 0xe8, 0x76, 0xc3, 0xd1, 0xdc, 0x7e, 0xe2, 0xdf, 0x3f, 0x10, 0x81, 0x83, 0x43, - 0x78, 0xe0, 0xf0, 0x0f, 0x1c, 0x4c, 0x66, 0xfb, 0x3e, 0x18, 0x7e, 0x4d, 0x04, 0x0e, 0x81, 0xe1, - 0x14, 0x22, 0x61, 0xe8, 0x83, 0xe2, 0x1f, 0x0a, 0x0a, 0x81, 0x21, 0x14, 0xcf, 0x85, 0x13, 0xad, - 0x8b, 0xeb, 0x86, 0xe7, 0xbb, 0x2c, 0x4d, 0x3e, 0x9c, 0xea, 0x1f, 0xfd, 0x30, 0x9e, 0x84, 0xa9, - 0x11, 0x28, 0x89, 0x44, 0x7c, 0xdb, 0x95, 0xae, 0xa2, 0x7a, 0x57, 0xec, 0xd7, 0x45, 0x24, 0x8a, - 0xc0, 0x48, 0xdd, 0x22, 0x19, 0x22, 0x31, 0xbb, 0x4e, 0xd6, 0x0e, 0x7d, 0xd0, 0xfd, 0xe3, 0x96, - 0xca, 0x6d, 0x0a, 0x2c, 0xe1, 0x8c, 0xe4, 0x3f, 0x4d, 0xeb, 0x0a, 0x3e, 0xe8, 0xcb, 0x3b, 0x7f, - 0xa3, 0x25, 0xff, 0xd9, 0x66, 0x48, 0x16, 0x43, 0xc6, 0x5b, 0xf2, 0x29, 0xd4, 0xeb, 0x9e, 0x51, - 0xfe, 0xcf, 0xbd, 0xc9, 0xdb, 0x1b, 0x4f, 0xa7, 0x4a, 0x2b, 0xc4, 0xc9, 0xe3, 0x49, 0x4f, 0x6f, - 0xb2, 0x8f, 0xbd, 0x19, 0xf8, 0x79, 0x2c, 0xe7, 0x29, 0x5d, 0x84, 0xd1, 0x58, 0xc2, 0xd3, 0x9b, - 0xea, 0xe3, 0x9c, 0x6a, 0x24, 0x9a, 0xef, 0x94, 0x1e, 0x87, 0x14, 0x49, 0x5e, 0x7a, 0xc3, 0x3f, - 0xc1, 0xe1, 0x54, 0xbd, 0xf4, 0x7e, 0xc8, 0x88, 0xa4, 0xa5, 0x37, 0xf4, 0xa7, 0x39, 0x34, 0x80, - 0x10, 0xb8, 0x48, 0x58, 0x7a, 0xc3, 0x7f, 0x46, 0xc0, 0x05, 0x84, 0xc0, 0xfb, 0x37, 0xe1, 0x37, - 0xfe, 0x7c, 0x8a, 0x4f, 0x3a, 0xc2, 0x76, 0x17, 0x60, 0x98, 0x67, 0x2a, 0xbd, 0xd1, 0x9f, 0xe4, - 0x85, 0x0b, 0x44, 0xe9, 0x09, 0x48, 0xf7, 0x69, 0xf0, 0x4f, 0x71, 0x28, 0xd3, 0x2f, 0x2d, 0x40, - 0x2e, 0x92, 0x9d, 0xf4, 0x86, 0xff, 0x45, 0x0e, 0x8f, 0xa2, 0x48, 0xd5, 0x79, 0x76, 0xd2, 0x9b, - 0xe0, 0xd3, 0xa2, 0xea, 0x1c, 0x41, 0xcc, 0x26, 0x12, 0x93, 0xde, 0xe8, 0xcf, 0x08, 0xab, 0x0b, - 0x48, 0xe9, 0x69, 0xc8, 0x06, 0x93, 0x4d, 0x6f, 0xfc, 0x67, 0x39, 0x3e, 0xc4, 0x10, 0x0b, 0x44, - 0x26, 0xbb, 0xde, 0x14, 0x7f, 0x49, 0x58, 0x20, 0x82, 0x22, 0xc3, 0xa8, 0x35, 0x81, 0xe9, 0xcd, - 0xf4, 0x97, 0xc5, 0x30, 0x6a, 0xc9, 0x5f, 0x48, 0x6f, 0xd2, 0x98, 0xdf, 0x9b, 0xe2, 0xe7, 0x44, - 0x6f, 0x52, 0x7d, 0x52, 0x8d, 0xd6, 0x8c, 0xa0, 0x37, 0xc7, 0x5f, 0x15, 0xd5, 0x68, 0x49, 0x08, - 0x4a, 0x1b, 0x80, 0xda, 0xb3, 0x81, 0xde, 0x7c, 0x9f, 0xe3, 0x7c, 0x13, 0x6d, 0xc9, 0x40, 0xe9, - 0x83, 0x30, 0xdd, 0x39, 0x13, 0xe8, 0xcd, 0xfa, 0xf3, 0x6f, 0xb6, 0xac, 0xdd, 0xa2, 0x89, 0x40, - 0x69, 0x2b, 0x9c, 0x52, 0xa2, 0x59, 0x40, 0x6f, 0xda, 0xcf, 0xbf, 0x19, 0x0f, 0xdc, 0xd1, 0x24, - 0xa0, 0x34, 0x0f, 0x10, 0x4e, 0xc0, 0xbd, 0xb9, 0xbe, 0xc0, 0xb9, 0x22, 0x20, 0x32, 0x34, 0xf8, - 0xfc, 0xdb, 0x1b, 0xff, 0xaa, 0x18, 0x1a, 0x1c, 0x41, 0x86, 0x86, 0x98, 0x7a, 0x7b, 0xa3, 0xbf, - 0x28, 0x86, 0x86, 0x80, 0x10, 0xcf, 0x8e, 0xcc, 0x6e, 0xbd, 0x19, 0xbe, 0x24, 0x3c, 0x3b, 0x82, - 0x2a, 0xad, 0xc1, 0x44, 0xdb, 0x84, 0xd8, 0x9b, 0xea, 0xcb, 0x9c, 0x4a, 0x6e, 0x9d, 0x0f, 0xa3, - 0x93, 0x17, 0x9f, 0x0c, 0x7b, 0xb3, 0x7d, 0xa5, 0x65, 0xf2, 0xe2, 0x73, 0x61, 0xe9, 0x02, 0x64, - 0xac, 0xa6, 0x69, 0x92, 0xc1, 0x83, 0x0e, 0xbf, 0x1b, 0x98, 0xff, 0x83, 0xb7, 0xb8, 0x75, 0x04, - 0xa0, 0xf4, 0x38, 0xa4, 0x71, 0x63, 0x07, 0xd7, 0x7a, 0x21, 0x7f, 0xf0, 0x96, 0x08, 0x98, 0x44, - 0xbb, 0xf4, 0x34, 0x00, 0xdb, 0x1a, 0xa1, 0xc7, 0x83, 0x3d, 0xb0, 0xff, 0xfd, 0x2d, 0x7e, 0x19, - 0x27, 0x84, 0x84, 0x04, 0xec, 0x6a, 0xcf, 0xe1, 0x04, 0x3f, 0x8c, 0x13, 0xd0, 0x1e, 0x79, 0x0a, - 0x86, 0x5f, 0xf4, 0x6c, 0xcb, 0xd7, 0xea, 0xbd, 0xd0, 0xff, 0x83, 0xa3, 0x85, 0x3e, 0x31, 0x58, - 0xc3, 0x76, 0xb1, 0xaf, 0xd5, 0xbd, 0x5e, 0xd8, 0xff, 0xc9, 0xb1, 0x01, 0x80, 0x80, 0x75, 0xcd, - 0xf3, 0xfb, 0x69, 0xf7, 0x1f, 0x0a, 0xb0, 0x00, 0x90, 0x4a, 0x93, 0xdf, 0x57, 0xf0, 0x41, 0x2f, - 0xec, 0x1f, 0x89, 0x4a, 0x73, 0xfd, 0xd2, 0xfb, 0x21, 0x4b, 0x7e, 0xb2, 0x1b, 0x76, 0x3d, 0xc0, - 0xff, 0x8b, 0x83, 0x43, 0x04, 0x29, 0xd9, 0xf3, 0x6b, 0xbe, 0xd1, 0xdb, 0xd8, 0x37, 0x79, 0x4f, - 0x0b, 0xfd, 0xd2, 0x3c, 0xe4, 0x3c, 0xbf, 0x56, 0x6b, 0xf2, 0xfc, 0xb4, 0x07, 0xfc, 0x7f, 0xbf, - 0x15, 0x6c, 0x59, 0x04, 0x18, 0xd2, 0xdb, 0xd7, 0xae, 0xf8, 0x8e, 0x4d, 0x8f, 0x40, 0x7a, 0x31, - 0xbc, 0xc9, 0x19, 0x22, 0x90, 0xd2, 0x02, 0x8c, 0x90, 0xb6, 0xb8, 0xd8, 0xc1, 0xf4, 0xbc, 0xaa, - 0x07, 0xc5, 0xff, 0xe1, 0x06, 0x88, 0x81, 0xca, 0x1f, 0xf9, 0xd6, 0x1b, 0x33, 0xd2, 0xb7, 0xdf, - 0x98, 0x91, 0x7e, 0xff, 0x8d, 0x19, 0xe9, 0x33, 0xdf, 0x9d, 0x39, 0xf6, 0xed, 0xef, 0xce, 0x1c, - 0xfb, 0xbd, 0xef, 0xce, 0x1c, 0xeb, 0xbc, 0x6d, 0x0c, 0x4b, 0xf6, 0x92, 0xcd, 0x36, 0x8c, 0x3f, - 0xa4, 0xc4, 0xb6, 0x8b, 0xeb, 0x76, 0xb8, 0x5b, 0x1b, 0x2c, 0x72, 0xe0, 0xe3, 0x49, 0x98, 0xd1, - 0x6d, 0xaf, 0x61, 0x7b, 0x67, 0x77, 0x34, 0x0f, 0x9f, 0xbd, 0xfa, 0xc8, 0x0e, 0xf6, 0xb5, 0x47, - 0xce, 0xea, 0xb6, 0x61, 0xf1, 0x6d, 0xdf, 0x49, 0xf6, 0xbe, 0x48, 0xde, 0x17, 0xf9, 0xfb, 0x42, - 0xc7, 0x1d, 0x62, 0x65, 0x09, 0x52, 0x0b, 0xb6, 0x61, 0xa1, 0x29, 0x48, 0xd7, 0xb0, 0x65, 0x37, - 0xf8, 0x05, 0x30, 0xf6, 0x80, 0xee, 0x86, 0x21, 0xad, 0x61, 0x37, 0x2d, 0x9f, 0x6d, 0x97, 0x97, - 0x73, 0xdf, 0xba, 0x31, 0x7b, 0xec, 0x3f, 0xde, 0x98, 0x4d, 0x2e, 0x5b, 0xbe, 0xca, 0x5f, 0x95, - 0x52, 0xdf, 0x7f, 0x6d, 0x56, 0x52, 0x2e, 0xc1, 0xf0, 0x22, 0xd6, 0x8f, 0xc2, 0xb5, 0x88, 0xf5, - 0x16, 0xae, 0xfb, 0x21, 0xb3, 0x6c, 0xf9, 0xec, 0x8a, 0xde, 0x29, 0x48, 0x1a, 0x16, 0xbb, 0xf5, - 0xd1, 0x52, 0x3e, 0x91, 0x13, 0xd5, 0x45, 0xac, 0x07, 0xaa, 0x35, 0xac, 0xb7, 0xaa, 0x12, 0x7a, - 0x22, 0x2f, 0x2f, 0xfe, 0xde, 0x7f, 0x99, 0x39, 0xf6, 0xf2, 0x1b, 0x33, 0xc7, 0xba, 0xf5, 0x4f, - 0xcc, 0xfc, 0xdc, 0xc4, 0xec, 0x9f, 0x87, 0xbc, 0xda, 0x95, 0xb3, 0x64, 0x68, 0x79, 0x3b, 0x43, - 0xec, 0x56, 0x33, 0x7c, 0x26, 0x01, 0xb3, 0xad, 0x5b, 0xea, 0xc4, 0x8f, 0x3d, 0x5f, 0x6b, 0x38, - 0xdd, 0x3e, 0x9c, 0xba, 0x00, 0xd9, 0x2d, 0xa1, 0x83, 0xf2, 0x30, 0xec, 0x61, 0xdd, 0xb6, 0x6a, - 0x1e, 0xad, 0x72, 0x52, 0x15, 0x8f, 0xc4, 0x80, 0x96, 0x66, 0xd9, 0x1e, 0xbf, 0xae, 0xc9, 0x1e, - 0xca, 0x7f, 0x45, 0x1a, 0xcc, 0xb1, 0xc6, 0x82, 0xa2, 0xa8, 0x79, 0x36, 0xa4, 0x0f, 0x3d, 0x70, - 0xd8, 0x69, 0x04, 0x6d, 0x5e, 0xd8, 0x84, 0xc8, 0xd1, 0xc3, 0x4c, 0xeb, 0xd1, 0xc3, 0x07, 0xb1, - 0x69, 0x3e, 0x6b, 0xd9, 0xd7, 0xac, 0xad, 0x98, 0x49, 0x7e, 0x47, 0x82, 0x39, 0x7a, 0x61, 0xdd, - 0x6d, 0x18, 0x96, 0x7f, 0xd6, 0x34, 0x76, 0xbc, 0xb3, 0x3b, 0x86, 0xef, 0x31, 0xcb, 0x71, 0x9b, - 0x4c, 0x85, 0x1a, 0x45, 0xa2, 0x51, 0x24, 0x1a, 0xca, 0x63, 0x90, 0x29, 0x1b, 0xfe, 0xbc, 0xeb, - 0x6a, 0x07, 0x08, 0x41, 0x8a, 0xc8, 0xb8, 0x51, 0xe8, 0x6f, 0x62, 0x11, 0x6c, 0xe2, 0x86, 0x47, - 0x0f, 0xbd, 0x52, 0x2a, 0x7b, 0x28, 0x6f, 0x77, 0xed, 0xc9, 0x0b, 0x91, 0x96, 0x46, 0xaa, 0x14, - 0xf9, 0xc9, 0x46, 0x42, 0xa7, 0xea, 0x06, 0xed, 0xf9, 0x7a, 0x0a, 0x4e, 0x45, 0x14, 0x74, 0xf7, - 0xc0, 0xf1, 0xe9, 0x90, 0xb4, 0x77, 0x79, 0x63, 0x26, 0x22, 0x8d, 0x61, 0xaf, 0xbb, 0x0c, 0xb3, - 0x5d, 0x48, 0x6f, 0x10, 0x1c, 0x69, 0x88, 0x6f, 0xfb, 0x9a, 0xc9, 0x5b, 0xc7, 0x1e, 0x88, 0x94, - 0x5d, 0xda, 0x4f, 0x30, 0xa9, 0x21, 0xee, 0xeb, 0x9b, 0x58, 0xdb, 0x65, 0x77, 0x1f, 0x93, 0xf4, - 0xec, 0x33, 0x43, 0x04, 0xf4, 0x9a, 0xe3, 0x14, 0xa4, 0xb5, 0x26, 0x3b, 0xb6, 0x4b, 0x9e, 0x1e, - 0x51, 0xd9, 0x83, 0xf2, 0x2c, 0x0c, 0xf3, 0xa3, 0x02, 0x24, 0x43, 0xf2, 0x0a, 0x3e, 0xa0, 0xe5, - 0x8c, 0xa8, 0xe4, 0x27, 0x2a, 0x42, 0x9a, 0x56, 0x9e, 0x5f, 0xea, 0xce, 0x17, 0xdb, 0x6a, 0x5f, - 0xa4, 0x95, 0x54, 0x99, 0x9a, 0x72, 0x09, 0x32, 0x8b, 0x76, 0xc3, 0xb0, 0xec, 0x38, 0x5b, 0x96, - 0xb1, 0xd1, 0x3a, 0x3b, 0x4d, 0x3e, 0x9c, 0x55, 0xf6, 0x80, 0xa6, 0x61, 0x88, 0xdd, 0x85, 0xe5, - 0x47, 0x8f, 0xfc, 0x49, 0x59, 0x80, 0x61, 0xca, 0xbd, 0xee, 0x90, 0xfe, 0x0d, 0x2e, 0x22, 0x65, - 0xf9, 0x97, 0x11, 0x9c, 0x3e, 0x11, 0x56, 0x16, 0x41, 0xaa, 0xa6, 0xf9, 0x1a, 0x6f, 0x37, 0xfd, - 0xad, 0x7c, 0x00, 0x32, 0x9c, 0xc4, 0x43, 0xe7, 0x20, 0x69, 0x3b, 0x1e, 0x3f, 0x3c, 0x2c, 0x74, - 0x6b, 0xca, 0xba, 0x53, 0x4e, 0x91, 0x40, 0xa0, 0x12, 0xe5, 0xb2, 0xda, 0xd5, 0x5f, 0x9e, 0x1c, - 0xdc, 0x5f, 0x58, 0x31, 0x81, 0xb3, 0x7c, 0x29, 0x01, 0x33, 0x91, 0xb7, 0x57, 0xb1, 0x4b, 0xf2, - 0xe5, 0x98, 0xeb, 0xa3, 0x48, 0x25, 0xf9, 0xfb, 0x2e, 0xee, 0xf2, 0x7e, 0x48, 0xce, 0x3b, 0x0e, - 0x2a, 0x40, 0x86, 0x1d, 0x12, 0xda, 0xcc, 0x5f, 0x52, 0x6a, 0xf0, 0x4c, 0xde, 0x79, 0xf6, 0xae, - 0x7f, 0x4d, 0x73, 0x83, 0xcf, 0x45, 0xc4, 0xb3, 0xf2, 0x14, 0x64, 0x17, 0x6c, 0xcb, 0xc3, 0x96, - 0xd7, 0xa4, 0x43, 0x67, 0xc7, 0xb4, 0xf5, 0x2b, 0x9c, 0x81, 0x3d, 0x10, 0x83, 0x6b, 0x8e, 0x43, - 0x91, 0x29, 0x95, 0xfc, 0x64, 0xa1, 0xb7, 0xbc, 0xd9, 0xd5, 0x44, 0x4f, 0x0d, 0x6e, 0x22, 0xde, - 0xc8, 0xc0, 0x46, 0xbf, 0x71, 0x02, 0xee, 0x8c, 0x42, 0x59, 0xc4, 0x89, 0x58, 0x48, 0x8e, 0x58, - 0x88, 0xca, 0x3b, 0xdb, 0xa7, 0xd0, 0x2b, 0xf2, 0x16, 0x7a, 0xc6, 0xa1, 0xc2, 0xe1, 0x23, 0xbb, - 0xd0, 0xa3, 0x2f, 0x95, 0xa7, 0x60, 0x74, 0x43, 0x73, 0xfd, 0x4d, 0xec, 0x3f, 0x83, 0xb5, 0x1a, - 0x76, 0xe3, 0x03, 0x7b, 0x54, 0x0c, 0x6c, 0x04, 0x29, 0x3a, 0x7a, 0x99, 0x63, 0xd3, 0xdf, 0xca, - 0x1e, 0xa4, 0xe8, 0x45, 0x83, 0x60, 0xd0, 0x73, 0x04, 0x1b, 0xf4, 0xa4, 0xbb, 0x0e, 0x7c, 0xec, - 0x71, 0x08, 0x7b, 0x40, 0x8f, 0x89, 0xa1, 0x9b, 0x3c, 0x7c, 0xe8, 0x72, 0x6f, 0xe7, 0x03, 0xd8, - 0x84, 0xe1, 0x32, 0xe9, 0xed, 0xe5, 0xc5, 0xa0, 0x22, 0x52, 0x58, 0x11, 0xb4, 0x0a, 0xe3, 0x8e, - 0xe6, 0xfa, 0xf4, 0x86, 0xe5, 0x1e, 0x6d, 0x05, 0x8f, 0x0c, 0xb3, 0xc5, 0xd6, 0x7e, 0x28, 0xc6, - 0x1a, 0xcb, 0x4b, 0x19, 0x75, 0xa2, 0x42, 0xe5, 0xbf, 0xa6, 0x60, 0x88, 0x1b, 0xe3, 0xfd, 0x30, - 0xcc, 0x8d, 0x46, 0x0b, 0xcc, 0x9d, 0x3b, 0x55, 0x6c, 0xf7, 0xfd, 0x62, 0xe0, 0xa3, 0x9c, 0x4f, - 0x60, 0xd0, 0xbd, 0x90, 0xd1, 0xf7, 0x34, 0xc3, 0xaa, 0x1a, 0x35, 0x91, 0x2c, 0xbc, 0x71, 0x63, - 0x76, 0x78, 0x81, 0xc8, 0x96, 0x17, 0xd5, 0x61, 0xfa, 0x72, 0xb9, 0x46, 0x82, 0xcd, 0x1e, 0x36, - 0xea, 0x7b, 0x2c, 0xd8, 0x24, 0x55, 0xfe, 0x84, 0x9e, 0x84, 0x14, 0x71, 0x08, 0x7e, 0xff, 0xbe, - 0xd0, 0x96, 0xc4, 0x05, 0x13, 0x63, 0x39, 0x43, 0x0a, 0xfe, 0xcc, 0x77, 0x66, 0x25, 0x95, 0x22, - 0xd0, 0x02, 0x8c, 0x9a, 0x9a, 0xe7, 0x57, 0xe9, 0x20, 0x21, 0xc5, 0xa7, 0x29, 0xc5, 0x89, 0x76, - 0x83, 0x70, 0xc3, 0xf2, 0xaa, 0xe7, 0x08, 0x8a, 0x89, 0x6a, 0xe8, 0x34, 0xc8, 0x94, 0x44, 0xb7, - 0x1b, 0x0d, 0xc3, 0x67, 0xe1, 0x7b, 0x88, 0xda, 0x7d, 0x8c, 0xc8, 0x17, 0xa8, 0x98, 0x06, 0xf1, - 0x93, 0x90, 0xa5, 0x37, 0x7e, 0xa9, 0x0a, 0xbb, 0xdd, 0x92, 0x21, 0x02, 0xfa, 0xf2, 0x3e, 0x18, - 0xbf, 0xaa, 0x99, 0x46, 0x4d, 0xf3, 0x6d, 0xd7, 0x63, 0x2a, 0x19, 0xc6, 0x12, 0x8a, 0xa9, 0xe2, - 0xc3, 0x30, 0x65, 0xe1, 0x7d, 0x7a, 0xdf, 0x26, 0xa6, 0x9d, 0xa5, 0xda, 0x88, 0xbc, 0xbb, 0x1c, - 0x47, 0xbc, 0x0f, 0xc6, 0x74, 0x61, 0x7c, 0xa6, 0x0b, 0x54, 0x77, 0x34, 0x90, 0x52, 0xb5, 0x13, - 0x90, 0xd1, 0x1c, 0x87, 0x29, 0xe4, 0xa8, 0xc2, 0xb0, 0xe6, 0x38, 0xf4, 0xd5, 0x19, 0x98, 0xa0, - 0x6d, 0x74, 0xb1, 0xd7, 0x34, 0x7d, 0x4e, 0x32, 0x42, 0x75, 0xc6, 0xc9, 0x0b, 0x95, 0xc9, 0xa9, - 0xee, 0xdd, 0x30, 0x8a, 0xaf, 0x1a, 0x35, 0x6c, 0xe9, 0x98, 0xe9, 0x8d, 0x52, 0xbd, 0x11, 0x21, - 0xa4, 0x4a, 0xf7, 0x83, 0xec, 0xb8, 0xb6, 0x63, 0x7b, 0xd8, 0xad, 0x6a, 0xb5, 0x9a, 0x8b, 0x3d, - 0x2f, 0x3f, 0xc6, 0xf8, 0x84, 0x7c, 0x9e, 0x89, 0x95, 0x07, 0x21, 0xb5, 0xa8, 0xf9, 0x1a, 0x89, - 0x61, 0xfe, 0x3e, 0x9b, 0x02, 0x46, 0x54, 0xf2, 0xb3, 0xe3, 0x70, 0xfb, 0x7e, 0x02, 0x52, 0x97, - 0x6d, 0x1f, 0xa3, 0x47, 0x23, 0xf3, 0xce, 0x58, 0x27, 0x1f, 0xdf, 0x34, 0xea, 0x16, 0xae, 0xad, - 0x7a, 0xf5, 0xc8, 0x27, 0x7b, 0xa1, 0x8b, 0x25, 0x62, 0x2e, 0x36, 0x05, 0x69, 0xd7, 0x6e, 0x5a, - 0x35, 0x71, 0x59, 0x84, 0x3e, 0xa0, 0x0a, 0x64, 0x02, 0xcf, 0x49, 0xf5, 0xf2, 0x9c, 0x71, 0xe2, - 0x39, 0xc4, 0xaf, 0xb9, 0x40, 0x1d, 0xde, 0xe1, 0x0e, 0x54, 0x86, 0x6c, 0x10, 0xd0, 0xb8, 0x07, - 0xf6, 0xe7, 0xc4, 0x21, 0x0c, 0x3d, 0x00, 0x13, 0x81, 0x3f, 0x04, 0x06, 0x65, 0x5e, 0x28, 0x07, - 0x2f, 0xb8, 0x45, 0x63, 0xae, 0xc6, 0x3f, 0x1f, 0x1c, 0xa6, 0xed, 0x0a, 0x5d, 0x8d, 0x7d, 0x42, - 0x78, 0x27, 0x64, 0x3d, 0xa3, 0x6e, 0x69, 0x7e, 0xd3, 0xc5, 0xdc, 0x1b, 0x43, 0x81, 0xf2, 0xd9, - 0x04, 0x0c, 0x31, 0xef, 0x8e, 0xd8, 0x4d, 0xea, 0x6c, 0xb7, 0x44, 0x37, 0xbb, 0x25, 0x8f, 0x6e, - 0xb7, 0x79, 0x80, 0xa0, 0x32, 0x1e, 0xff, 0xaa, 0xeb, 0x64, 0x3b, 0x11, 0xab, 0xe2, 0xa6, 0x51, - 0xe7, 0x83, 0x37, 0x02, 0x0a, 0x3c, 0x28, 0x1d, 0x89, 0x93, 0x17, 0x20, 0xbb, 0x63, 0xf8, 0x55, - 0x8d, 0x64, 0xa7, 0xd4, 0x84, 0xb9, 0x73, 0x33, 0xc5, 0x4e, 0x69, 0x6c, 0x51, 0xe4, 0xb0, 0x6a, - 0x66, 0x87, 0xff, 0x52, 0xfe, 0xb3, 0x44, 0x26, 0x63, 0x5e, 0x20, 0x9a, 0x87, 0x51, 0xd1, 0xd0, - 0xea, 0xae, 0xa9, 0xd5, 0xb9, 0x33, 0x9e, 0xea, 0xda, 0xda, 0x8b, 0xa6, 0x56, 0x57, 0x73, 0xbc, - 0x81, 0xe4, 0xa1, 0x73, 0xc7, 0x26, 0xba, 0x74, 0x6c, 0xcc, 0x93, 0x92, 0x47, 0xf3, 0xa4, 0x58, - 0x9f, 0xa7, 0x5a, 0xfb, 0xfc, 0x57, 0x12, 0x34, 0x29, 0x73, 0x6c, 0x4f, 0x33, 0xdf, 0x89, 0x21, - 0x76, 0x12, 0xb2, 0x8e, 0x6d, 0x56, 0xd9, 0x1b, 0x76, 0x2b, 0x2b, 0xe3, 0xd8, 0xa6, 0xda, 0xe6, - 0x47, 0xe9, 0x5b, 0x34, 0xfe, 0x86, 0x6e, 0x81, 0xd5, 0x86, 0x5b, 0xad, 0xe6, 0xc2, 0x08, 0x33, - 0x05, 0x9f, 0x30, 0x1f, 0x26, 0x36, 0xa0, 0x33, 0xb0, 0xd4, 0x3e, 0xc1, 0xb3, 0x6a, 0x33, 0x4d, - 0x95, 0xeb, 0x11, 0x04, 0x9b, 0x5f, 0x3a, 0x65, 0xf3, 0x51, 0x3f, 0x57, 0xb9, 0x9e, 0xf2, 0x9b, - 0x12, 0x64, 0x69, 0x53, 0x57, 0xb1, 0xaf, 0xc5, 0x4c, 0x25, 0x1d, 0xdd, 0x54, 0xa7, 0x00, 0x18, - 0x8d, 0x67, 0x5c, 0xc7, 0xbc, 0x03, 0xb3, 0x54, 0xb2, 0x69, 0x5c, 0xc7, 0xe8, 0x7c, 0xd0, 0xae, - 0xe4, 0xe1, 0xed, 0xe2, 0x43, 0x51, 0xb4, 0xee, 0x0e, 0x18, 0xa6, 0x7f, 0xbd, 0x60, 0x9f, 0x5d, - 0x4b, 0x4c, 0xd2, 0x4f, 0x16, 0xb7, 0xf6, 0x3d, 0xe5, 0x45, 0x18, 0xde, 0xda, 0x67, 0x4b, 0xa9, - 0x93, 0x90, 0x75, 0x6d, 0x9b, 0xcf, 0xaf, 0x2c, 0xaf, 0xc9, 0x10, 0x01, 0x9d, 0x4e, 0xc4, 0xf2, - 0x21, 0x11, 0x2e, 0x1f, 0xc2, 0xf5, 0x4f, 0xb2, 0xaf, 0xf5, 0xcf, 0x99, 0x7f, 0x2f, 0x41, 0x2e, - 0x32, 0x0c, 0xd1, 0x23, 0x70, 0xbc, 0xbc, 0xb2, 0xbe, 0xf0, 0x6c, 0x75, 0x79, 0xb1, 0x7a, 0x71, - 0x65, 0x7e, 0x29, 0xbc, 0xde, 0x5b, 0x98, 0x7e, 0xe5, 0xd5, 0x39, 0x14, 0xd1, 0xdd, 0xb6, 0xae, - 0x90, 0xf5, 0x31, 0x3a, 0x0b, 0x53, 0x71, 0xc8, 0x7c, 0x79, 0xb3, 0xb2, 0xb6, 0x25, 0x4b, 0x85, - 0xe3, 0xaf, 0xbc, 0x3a, 0x37, 0x11, 0x41, 0xcc, 0xef, 0x78, 0xd8, 0xf2, 0xdb, 0x01, 0x0b, 0xeb, - 0xab, 0xab, 0xcb, 0x5b, 0x72, 0xa2, 0x0d, 0xc0, 0x03, 0xed, 0xfd, 0x30, 0x11, 0x07, 0xac, 0x2d, - 0xaf, 0xc8, 0xc9, 0x02, 0x7a, 0xe5, 0xd5, 0xb9, 0xb1, 0x88, 0xf6, 0x9a, 0x61, 0x16, 0x32, 0x3f, - 0xfb, 0x95, 0x99, 0x63, 0x5f, 0xfb, 0x1b, 0x33, 0x12, 0x69, 0xd9, 0x68, 0x6c, 0x28, 0xa2, 0x07, - 0xe1, 0x8e, 0xcd, 0xe5, 0xa5, 0xb5, 0xca, 0x62, 0x75, 0x75, 0x73, 0xa9, 0xca, 0x3e, 0x6b, 0x0e, - 0x5a, 0x37, 0xfe, 0xca, 0xab, 0x73, 0x39, 0xde, 0xa4, 0x6e, 0xda, 0x1b, 0x6a, 0xe5, 0xf2, 0xfa, - 0x56, 0x45, 0x96, 0x98, 0xf6, 0x86, 0x8b, 0xaf, 0xda, 0x3e, 0xfb, 0xf3, 0x26, 0x0f, 0xc3, 0x89, - 0x0e, 0xda, 0x41, 0xc3, 0x26, 0x5e, 0x79, 0x75, 0x6e, 0x74, 0xc3, 0xc5, 0xcc, 0x4d, 0x29, 0xa2, - 0x08, 0xf9, 0x76, 0xc4, 0xfa, 0xc6, 0xfa, 0xe6, 0xfc, 0x8a, 0x3c, 0x57, 0x90, 0x5f, 0x79, 0x75, - 0x6e, 0x44, 0xc4, 0x1c, 0xa2, 0x1f, 0xb6, 0xac, 0xfc, 0x5c, 0xd7, 0xf5, 0xcb, 0x13, 0x83, 0xaf, - 0x5f, 0xe2, 0x3b, 0x3e, 0x7f, 0x21, 0x01, 0x33, 0x6d, 0x97, 0x28, 0xf9, 0xd6, 0x63, 0xb7, 0x0d, - 0x9f, 0x12, 0x64, 0x16, 0xc5, 0x8e, 0xe6, 0xa0, 0xfb, 0x3d, 0x3f, 0x37, 0xe0, 0x7e, 0xcf, 0xa8, - 0x28, 0x49, 0x6c, 0xf7, 0x9c, 0xe9, 0xbd, 0xdd, 0x23, 0xea, 0x7f, 0x84, 0xdd, 0x9e, 0x4f, 0x3c, - 0x02, 0xf7, 0xf0, 0x4d, 0x32, 0xcf, 0xd7, 0xae, 0x18, 0x56, 0x3d, 0xd8, 0x8a, 0xe4, 0xcf, 0xdc, - 0x28, 0xd3, 0x7c, 0x37, 0x52, 0x48, 0x0f, 0xdd, 0x90, 0x2c, 0x1c, 0xba, 0x40, 0xec, 0xbd, 0xf0, - 0xeb, 0xd1, 0x43, 0x85, 0x1e, 0x5b, 0xa7, 0xca, 0x27, 0x25, 0x18, 0x7b, 0xc6, 0xf0, 0x7c, 0xdb, - 0x35, 0x74, 0xcd, 0xa4, 0xb7, 0x95, 0xcf, 0xf7, 0x1b, 0x9b, 0x5b, 0x62, 0xd8, 0xd3, 0x30, 0x74, - 0x55, 0x33, 0x3d, 0xec, 0xf3, 0xcb, 0xfa, 0x77, 0x15, 0x3b, 0x1b, 0xa2, 0x18, 0x24, 0xe7, 0x82, - 0x80, 0xc1, 0x94, 0x5f, 0x4a, 0xc0, 0x38, 0x1d, 0xe5, 0x1e, 0xfb, 0xb3, 0x1b, 0x64, 0x21, 0x58, - 0x86, 0x94, 0xab, 0xf9, 0x7c, 0xf3, 0xa4, 0x5c, 0xe4, 0x9b, 0x9c, 0xf7, 0xf6, 0xde, 0xb8, 0x2c, - 0x2e, 0x62, 0x5d, 0xa5, 0x58, 0xf4, 0x53, 0x90, 0x69, 0x68, 0xfb, 0x55, 0xca, 0xc3, 0x96, 0x57, - 0xf3, 0x83, 0xf1, 0xdc, 0xbc, 0x31, 0x3b, 0x7e, 0xa0, 0x35, 0xcc, 0x92, 0x22, 0x78, 0x14, 0x75, - 0xb8, 0xa1, 0xed, 0x93, 0x2a, 0x22, 0x07, 0xc6, 0x89, 0x54, 0xdf, 0xd3, 0xac, 0x3a, 0x66, 0x85, - 0xd0, 0xad, 0xa0, 0xf2, 0x33, 0x03, 0x17, 0x32, 0x1d, 0x16, 0x12, 0xa1, 0x53, 0xd4, 0xd1, 0x86, - 0xb6, 0xbf, 0x40, 0x05, 0xa4, 0xc4, 0x52, 0xe6, 0x73, 0xaf, 0xcd, 0x1e, 0xa3, 0x1b, 0xc7, 0xaf, - 0x4b, 0x00, 0xa1, 0xc5, 0xd0, 0x4f, 0x81, 0xac, 0x07, 0x4f, 0x14, 0xeb, 0xf1, 0x3e, 0xbc, 0xaf, - 0x5b, 0x5f, 0xb4, 0xd8, 0x9b, 0xcd, 0xed, 0xdf, 0xbe, 0x31, 0x2b, 0xa9, 0xe3, 0x7a, 0x4b, 0x57, - 0x7c, 0x18, 0x72, 0x4d, 0xa7, 0xa6, 0xf9, 0xb8, 0x4a, 0x17, 0x9b, 0x89, 0x9e, 0x79, 0xc2, 0x0c, - 0xe1, 0xba, 0x79, 0x63, 0x16, 0xb1, 0x66, 0x45, 0xc0, 0x0a, 0xcd, 0x1e, 0x80, 0x49, 0x08, 0x20, - 0xd2, 0xa6, 0x7f, 0x29, 0x41, 0x6e, 0x31, 0x72, 0x6b, 0x20, 0x0f, 0xc3, 0x0d, 0xdb, 0x32, 0xae, - 0x70, 0x7f, 0xcc, 0xaa, 0xe2, 0x11, 0x15, 0x20, 0xc3, 0x3e, 0xe0, 0xf0, 0x0f, 0xc4, 0x96, 0x90, - 0x78, 0x26, 0xa8, 0x6b, 0x78, 0xc7, 0x33, 0x44, 0x6f, 0xa8, 0xe2, 0x11, 0x5d, 0x04, 0xd9, 0xc3, - 0x7a, 0xd3, 0x35, 0xfc, 0x83, 0xaa, 0x6e, 0x5b, 0xbe, 0xa6, 0xfb, 0xec, 0x53, 0x80, 0xf2, 0xc9, - 0x9b, 0x37, 0x66, 0xef, 0x60, 0x75, 0x6d, 0xd5, 0x50, 0xd4, 0x71, 0x21, 0x5a, 0x60, 0x12, 0x52, - 0x42, 0x0d, 0xfb, 0x9a, 0x61, 0x7a, 0x34, 0xf5, 0xca, 0xaa, 0xe2, 0x31, 0xd2, 0x96, 0x7f, 0x32, - 0x0c, 0xd9, 0xc0, 0xdb, 0xd1, 0x35, 0x90, 0x6d, 0x07, 0xbb, 0xb1, 0x44, 0x96, 0xce, 0xe3, 0xe5, - 0x95, 0xb0, 0xe4, 0x56, 0x0d, 0xe5, 0xff, 0xdf, 0x98, 0x7d, 0xa8, 0x0f, 0x0f, 0xba, 0xac, 0x99, - 0x3c, 0x09, 0x56, 0xc7, 0x05, 0x87, 0xc8, 0x8a, 0x2f, 0x12, 0xbf, 0x10, 0xcb, 0x5f, 0xa7, 0xb9, - 0x23, 0xb6, 0x1e, 0x63, 0x4d, 0x6e, 0xd5, 0x50, 0x88, 0x07, 0x70, 0xd1, 0x06, 0x95, 0x90, 0xcc, - 0xf5, 0x45, 0xcd, 0x30, 0xc5, 0x57, 0x6d, 0x2a, 0x7f, 0x42, 0xcb, 0x30, 0xe4, 0xf9, 0x9a, 0xdf, - 0x64, 0xc9, 0x4b, 0xba, 0xfc, 0x48, 0x9f, 0x75, 0x2e, 0xdb, 0x56, 0x6d, 0x93, 0x02, 0x55, 0x4e, - 0x80, 0x2e, 0xc2, 0x90, 0x6f, 0x5f, 0xc1, 0x16, 0x37, 0xea, 0x40, 0x23, 0x9e, 0x1e, 0xd2, 0x30, - 0x34, 0xf2, 0x41, 0xae, 0x61, 0x13, 0xd7, 0xa9, 0x29, 0xbd, 0x3d, 0x8d, 0x2c, 0x90, 0xe8, 0x5f, - 0xa0, 0x29, 0x2f, 0x0f, 0x3c, 0x2c, 0xb9, 0x81, 0x5a, 0xf9, 0x14, 0x75, 0x3c, 0x10, 0x6d, 0x52, - 0x09, 0x7a, 0x36, 0x76, 0xe1, 0x85, 0xff, 0x99, 0xa6, 0xbb, 0xbb, 0x8d, 0xbd, 0x88, 0x97, 0x8b, - 0x6d, 0x95, 0xe8, 0x75, 0x99, 0x8b, 0x20, 0x37, 0xad, 0x1d, 0xdb, 0xa2, 0x5f, 0xa2, 0xf0, 0x15, - 0x03, 0x59, 0x82, 0x26, 0xa3, 0xbd, 0xd6, 0xaa, 0xa1, 0xa8, 0xe3, 0x81, 0xe8, 0x19, 0xb6, 0xae, - 0xa8, 0xc1, 0x58, 0xa8, 0x45, 0x87, 0x6e, 0xb6, 0xe7, 0xd0, 0xbd, 0x8b, 0x0f, 0xdd, 0xe3, 0xad, - 0xa5, 0x84, 0xa3, 0x77, 0x34, 0x10, 0x12, 0x18, 0x7a, 0x06, 0x20, 0x0c, 0x18, 0x74, 0x7b, 0x25, - 0x77, 0x4e, 0xe9, 0x1d, 0x75, 0xc4, 0x92, 0x34, 0xc4, 0xa2, 0x8f, 0xc2, 0x64, 0xc3, 0xb0, 0xaa, - 0x1e, 0x36, 0x77, 0xab, 0xdc, 0xc0, 0x84, 0x92, 0xfe, 0x21, 0x81, 0xf2, 0xca, 0x60, 0xfe, 0x70, - 0xf3, 0xc6, 0x6c, 0x81, 0x07, 0xd5, 0x76, 0x4a, 0x45, 0x9d, 0x68, 0x18, 0xd6, 0x26, 0x36, 0x77, - 0x17, 0x03, 0x59, 0x69, 0xe4, 0x67, 0x5f, 0x9b, 0x3d, 0x16, 0x0c, 0x60, 0x03, 0x46, 0xc2, 0x81, - 0x85, 0x3d, 0xb4, 0x0e, 0x59, 0x4d, 0x3c, 0xb0, 0x8d, 0x98, 0xbe, 0x9d, 0x3d, 0x32, 0x40, 0x43, - 0x0e, 0x16, 0x2b, 0x5e, 0xfe, 0x4f, 0x73, 0x92, 0xf2, 0x4a, 0x02, 0x86, 0x16, 0x2f, 0x6f, 0x68, - 0x86, 0x8b, 0xae, 0xc3, 0x44, 0xe8, 0x6c, 0xf1, 0x48, 0xb1, 0x7a, 0xf3, 0xc6, 0x6c, 0xbe, 0xd5, - 0x1f, 0x07, 0x0c, 0x15, 0xf3, 0xba, 0x2e, 0x6a, 0x12, 0x0e, 0x12, 0x11, 0x2b, 0xae, 0x77, 0x5d, - 0x6e, 0x47, 0xcb, 0x6e, 0x53, 0x39, 0x42, 0x98, 0x6a, 0x5b, 0xbd, 0x47, 0x02, 0x67, 0x05, 0x86, - 0x99, 0x2d, 0x3c, 0x54, 0x82, 0xb4, 0x43, 0x7e, 0xf0, 0xa3, 0x8f, 0x99, 0xae, 0xa3, 0x89, 0xea, - 0x07, 0x1b, 0xc2, 0x04, 0xa2, 0x7c, 0x39, 0x09, 0xb0, 0x78, 0xf9, 0xf2, 0x96, 0x6b, 0x38, 0x26, - 0xf6, 0x7f, 0xa4, 0x76, 0xfd, 0x84, 0x04, 0xc7, 0x43, 0xab, 0x79, 0xae, 0xde, 0x62, 0xdc, 0xe7, - 0x6e, 0xde, 0x98, 0xbd, 0xb3, 0xd5, 0xb8, 0x11, 0xb5, 0x23, 0x18, 0x78, 0x32, 0x20, 0xda, 0x74, - 0xf5, 0xce, 0xf5, 0xa8, 0x79, 0x7e, 0x50, 0x8f, 0x64, 0xf7, 0x7a, 0x44, 0xd4, 0xde, 0x56, 0x3d, - 0x16, 0x3d, 0xbf, 0xbd, 0xaf, 0x37, 0x21, 0x17, 0xf6, 0x91, 0x87, 0x16, 0x21, 0xe3, 0xf3, 0xdf, - 0xbc, 0xcb, 0x95, 0xee, 0x5d, 0x2e, 0x60, 0xbc, 0xdb, 0x03, 0xa4, 0xf2, 0xef, 0x12, 0x00, 0xe1, - 0xa8, 0xfe, 0xd3, 0x3a, 0xa2, 0xc8, 0x74, 0xca, 0x27, 0xbf, 0xe4, 0x91, 0x12, 0x68, 0x8e, 0x8e, - 0xf4, 0xd6, 0x1f, 0x24, 0x60, 0x72, 0x5b, 0x44, 0xfe, 0xf7, 0x2c, 0x8c, 0x36, 0x60, 0x18, 0x5b, - 0xbe, 0x6b, 0x50, 0x13, 0x13, 0x6f, 0x7d, 0xb8, 0x9b, 0xb7, 0x76, 0xb0, 0x1a, 0xfd, 0x63, 0x19, - 0xe2, 0x34, 0x88, 0xd3, 0x44, 0x6c, 0xfd, 0xe9, 0x24, 0xe4, 0xbb, 0xa1, 0xd0, 0x02, 0x8c, 0xeb, - 0x2e, 0xa6, 0x82, 0x6a, 0x74, 0xeb, 0xb9, 0x5c, 0x08, 0x57, 0x12, 0x2d, 0x0a, 0x8a, 0x3a, 0x26, - 0x24, 0x3c, 0x37, 0xa8, 0x03, 0x49, 0xf3, 0xc9, 0x90, 0x21, 0x5a, 0x7d, 0xe6, 0xf5, 0x0a, 0x4f, - 0x0e, 0x44, 0x21, 0x71, 0x02, 0x96, 0x1d, 0x8c, 0x85, 0x52, 0x9a, 0x1e, 0xbc, 0x04, 0xe3, 0x86, - 0x65, 0xf8, 0x86, 0x66, 0x56, 0x77, 0x34, 0x53, 0xb3, 0xf4, 0xa3, 0xac, 0x92, 0xd8, 0x84, 0xce, - 0x8b, 0x6d, 0xa1, 0x53, 0xd4, 0x31, 0x2e, 0x29, 0x33, 0x01, 0x7a, 0x06, 0x86, 0x45, 0x51, 0xa9, - 0x23, 0xe5, 0x92, 0x02, 0x1e, 0xe9, 0x91, 0x4f, 0x25, 0x61, 0x42, 0xc5, 0xb5, 0xf7, 0xba, 0x62, - 0xb0, 0xae, 0x58, 0x05, 0x60, 0x81, 0x84, 0xcc, 0x24, 0x47, 0xe8, 0x0d, 0x12, 0x8a, 0xb2, 0x8c, - 0x61, 0xd1, 0xf3, 0x23, 0xfd, 0xf1, 0x87, 0x49, 0x18, 0x89, 0xf6, 0xc7, 0x7b, 0x53, 0xfc, 0x8f, - 0xcf, 0x14, 0x8f, 0x96, 0xc3, 0xd0, 0x98, 0xe2, 0x7f, 0xf3, 0xb0, 0x4b, 0x68, 0x6c, 0x1b, 0x52, - 0xdd, 0x63, 0xe2, 0xff, 0x4d, 0xc0, 0xd0, 0x86, 0xe6, 0x6a, 0x0d, 0x0f, 0xe9, 0x6d, 0x0b, 0x1b, - 0xb1, 0xb1, 0xdf, 0xf6, 0x57, 0x6d, 0xf9, 0xa6, 0x58, 0x8f, 0x75, 0xcd, 0xe7, 0x3a, 0xac, 0x6b, - 0x7e, 0x12, 0xc6, 0x1a, 0xda, 0x7e, 0xe4, 0xac, 0x99, 0x76, 0xe6, 0x68, 0xf9, 0x44, 0xc8, 0x12, - 0x7f, 0xcf, 0xb6, 0x6b, 0xc2, 0x03, 0x68, 0xf4, 0x04, 0xe4, 0x88, 0x46, 0x38, 0x4b, 0x10, 0xf8, - 0x74, 0xb8, 0x2f, 0x12, 0x79, 0xa9, 0xa8, 0xd0, 0xd0, 0xf6, 0x2b, 0xec, 0x01, 0xad, 0x00, 0xda, - 0x0b, 0xb6, 0xe6, 0xaa, 0xa1, 0x29, 0x09, 0xfe, 0xd4, 0xcd, 0x1b, 0xb3, 0x27, 0x18, 0xbe, 0x5d, - 0x47, 0x51, 0x27, 0x42, 0xa1, 0x60, 0x7b, 0x0c, 0x80, 0xb4, 0xab, 0xca, 0xae, 0x2a, 0xb2, 0xd5, - 0xf5, 0xf1, 0x9b, 0x37, 0x66, 0x27, 0x18, 0x4b, 0xf8, 0x4e, 0x51, 0xb3, 0xe4, 0x61, 0x91, 0xfc, - 0x8e, 0x18, 0xfe, 0x2b, 0x12, 0xa0, 0x70, 0x0e, 0x52, 0xb1, 0xe7, 0xd8, 0x96, 0x47, 0xd7, 0x7d, - 0x91, 0x45, 0x9a, 0x74, 0xf8, 0xba, 0x2f, 0xc4, 0x8b, 0x75, 0x5f, 0x64, 0xe8, 0x3e, 0x15, 0xc6, - 0xeb, 0x04, 0xef, 0xc7, 0x0e, 0xf7, 0x3a, 0x8b, 0x0b, 0xb6, 0x21, 0xd0, 0x1d, 0x02, 0xf4, 0xbf, - 0x92, 0xe0, 0x44, 0x9b, 0x37, 0x05, 0x95, 0xfd, 0x33, 0x80, 0xdc, 0xc8, 0x4b, 0xfe, 0xc7, 0xab, - 0x58, 0xa5, 0x07, 0x76, 0xce, 0x09, 0xb7, 0x6d, 0x22, 0xb8, 0x75, 0x53, 0x0e, 0xbb, 0x18, 0xfa, - 0x4f, 0x25, 0x98, 0x8a, 0x16, 0x1f, 0x34, 0x64, 0x0d, 0x46, 0xa2, 0xa5, 0xf3, 0x26, 0xdc, 0xd3, - 0x4f, 0x13, 0x78, 0xed, 0x63, 0x78, 0xf4, 0x5c, 0x38, 0x54, 0xd9, 0xe6, 0xed, 0x23, 0x7d, 0x5b, - 0x43, 0xd4, 0xa9, 0x75, 0xc8, 0xb2, 0x16, 0xfc, 0xb1, 0x04, 0xa9, 0x0d, 0xdb, 0x36, 0x91, 0x0d, - 0x13, 0x96, 0xed, 0x57, 0x89, 0x67, 0xe1, 0x5a, 0x95, 0xef, 0xf1, 0xb0, 0x5d, 0xdd, 0x85, 0xc1, - 0x8c, 0xf4, 0x83, 0x1b, 0xb3, 0xed, 0x54, 0xea, 0xb8, 0x65, 0xfb, 0x65, 0x2a, 0xd9, 0x62, 0x3b, - 0x40, 0x1f, 0x85, 0xd1, 0x78, 0x61, 0x6c, 0xc7, 0xeb, 0x83, 0x03, 0x17, 0x16, 0xa7, 0xb9, 0x79, - 0x63, 0x76, 0x2a, 0x1c, 0x31, 0x81, 0x58, 0x51, 0x47, 0x76, 0x22, 0xa5, 0x97, 0x32, 0xa4, 0xf5, - 0x7f, 0xf4, 0xda, 0xac, 0x54, 0xbe, 0xd8, 0xf5, 0x84, 0xe6, 0xc1, 0x43, 0xab, 0xb0, 0x1f, 0x1c, - 0x33, 0xc4, 0x8f, 0x65, 0x3e, 0x37, 0x09, 0xb3, 0x5d, 0xce, 0x21, 0xfc, 0xfd, 0x23, 0x1d, 0x41, - 0xf4, 0x38, 0x23, 0x28, 0xf4, 0x75, 0xec, 0xa1, 0xbc, 0x95, 0x02, 0xb4, 0xea, 0xd5, 0x17, 0x48, - 0x56, 0x83, 0xc3, 0x4d, 0xcf, 0x96, 0x2d, 0x31, 0xe9, 0x6d, 0x6d, 0x89, 0xad, 0xc6, 0x36, 0x99, - 0x12, 0x83, 0x6d, 0x6d, 0xf7, 0xbd, 0xd3, 0x94, 0x7c, 0x47, 0x76, 0x9a, 0x3a, 0xa7, 0x2a, 0xa9, - 0x1f, 0xe1, 0x8a, 0x29, 0xfd, 0xce, 0xac, 0x98, 0xa6, 0x61, 0x88, 0xef, 0x41, 0xb3, 0x3f, 0x09, - 0xce, 0x9f, 0xd0, 0xe3, 0xe2, 0x0f, 0x24, 0x0f, 0xf7, 0x17, 0xfd, 0x99, 0x36, 0x8f, 0x33, 0xdf, - 0x48, 0x82, 0xbc, 0xea, 0xd5, 0x2b, 0x35, 0xc3, 0xbf, 0x4d, 0xbe, 0xe7, 0x74, 0x5f, 0x64, 0x2e, - 0xdc, 0xbc, 0x31, 0x3b, 0xc6, 0x4c, 0x76, 0x2b, 0x0d, 0xd5, 0x80, 0xf1, 0x96, 0xe3, 0x1c, 0xee, - 0x9a, 0x8b, 0x47, 0x39, 0x55, 0x6a, 0xa1, 0x52, 0xe8, 0xba, 0x20, 0x32, 0x40, 0xd0, 0x7e, 0xe7, - 0xd1, 0xc0, 0x26, 0xb2, 0x67, 0x6e, 0xe7, 0x9e, 0x2b, 0xeb, 0xc2, 0x6f, 0x26, 0x20, 0xb7, 0xea, - 0x89, 0x75, 0x2e, 0xfe, 0x53, 0xbb, 0xa3, 0xf0, 0x44, 0xf0, 0xe1, 0x48, 0xb2, 0xbf, 0x81, 0x10, - 0xff, 0x98, 0xe4, 0x3b, 0x49, 0x1a, 0x87, 0xcb, 0xb8, 0x6e, 0x58, 0xc1, 0x64, 0x8d, 0xdf, 0x5b, - 0x18, 0xfd, 0x18, 0x2d, 0x8c, 0xc2, 0x1e, 0x4e, 0x1d, 0xa5, 0x87, 0x7f, 0x3b, 0x01, 0xa3, 0xab, - 0x5e, 0x7d, 0xdb, 0xaa, 0xbd, 0x37, 0x54, 0xde, 0xce, 0x50, 0xb9, 0xe5, 0xa9, 0xd9, 0x37, 0x13, - 0x70, 0x26, 0x9a, 0x4b, 0xbd, 0xd4, 0xc4, 0xee, 0x41, 0x90, 0x2e, 0x39, 0x5a, 0xdd, 0xb0, 0xa2, - 0xb7, 0x67, 0x4e, 0x44, 0x2b, 0x4b, 0x75, 0x45, 0x95, 0x15, 0x0b, 0x72, 0x1b, 0x5a, 0x1d, 0xab, - 0xf8, 0xa5, 0x26, 0xf6, 0xfc, 0x0e, 0xdf, 0xb6, 0x4c, 0xc3, 0x90, 0xbd, 0xbb, 0xcb, 0x2e, 0x5b, - 0x48, 0xa7, 0x53, 0x2a, 0x7f, 0x42, 0x53, 0x90, 0x36, 0x8d, 0x86, 0xc1, 0x0c, 0x92, 0x52, 0xd9, - 0x03, 0x9a, 0x85, 0x9c, 0x4e, 0xda, 0x5d, 0x65, 0x57, 0xf6, 0x53, 0xe2, 0x6f, 0x77, 0x34, 0x2d, - 0x7f, 0x8b, 0x48, 0x94, 0xa7, 0x61, 0x84, 0x95, 0xc7, 0xd7, 0x17, 0x27, 0x20, 0x43, 0xaf, 0x58, - 0x87, 0xa5, 0x0e, 0x93, 0xe7, 0x67, 0xd9, 0x77, 0x30, 0x8c, 0x85, 0x15, 0xcc, 0x1e, 0xca, 0xe5, - 0xae, 0xa6, 0x3c, 0xdd, 0xbb, 0x93, 0x99, 0xa1, 0x02, 0x33, 0xfe, 0xe6, 0xa3, 0xa0, 0x74, 0x49, - 0x39, 0x99, 0x95, 0x0e, 0x4f, 0x72, 0x07, 0xe8, 0x82, 0x2e, 0x09, 0x71, 0x7f, 0x09, 0xef, 0x3e, - 0x4c, 0x3f, 0x47, 0xd8, 0xc3, 0xa5, 0xbe, 0xe8, 0xae, 0xe9, 0xe0, 0x3c, 0x5c, 0xe2, 0xff, 0x23, - 0x93, 0x38, 0xdc, 0x86, 0xb0, 0x06, 0x3c, 0x7d, 0xbd, 0xb7, 0xd8, 0xd5, 0x0b, 0x8a, 0x11, 0x17, - 0x50, 0x23, 0x48, 0xe5, 0x17, 0x24, 0xb8, 0xa3, 0xad, 0x68, 0xde, 0x73, 0x4b, 0x00, 0x91, 0xbd, - 0x0a, 0x69, 0xb0, 0x9b, 0x38, 0x11, 0x28, 0x21, 0x6a, 0xab, 0xec, 0x7d, 0x3d, 0x2b, 0xcb, 0x6a, - 0x11, 0xab, 0xed, 0x4b, 0x70, 0x3c, 0x5e, 0x59, 0x61, 0xa6, 0xe7, 0x61, 0x2c, 0x1e, 0x16, 0x78, - 0xc8, 0x3a, 0xc2, 0x89, 0xea, 0x68, 0x2c, 0x34, 0x28, 0xd5, 0xd6, 0xae, 0x09, 0xcc, 0x53, 0x81, - 0x6c, 0xa0, 0xca, 0x13, 0xc2, 0xbe, 0xad, 0x13, 0x22, 0x95, 0x6f, 0x4a, 0x30, 0x17, 0x2f, 0x21, - 0x4c, 0x67, 0xbc, 0xdb, 0xde, 0xbe, 0x5b, 0xe6, 0x48, 0xdf, 0x97, 0xe0, 0xae, 0x43, 0x9a, 0xc1, - 0x6d, 0x76, 0x1d, 0xa6, 0x22, 0x7b, 0x26, 0x2e, 0x17, 0x0b, 0xe7, 0x3a, 0xd3, 0x7b, 0xb3, 0x27, - 0xd8, 0x22, 0x38, 0x49, 0xec, 0xf8, 0xf5, 0xef, 0xcc, 0x4e, 0xb6, 0xbf, 0xf3, 0xd4, 0xc9, 0xf6, - 0x7d, 0x8e, 0x5b, 0xe8, 0x85, 0xbf, 0x23, 0xc1, 0xfd, 0xf1, 0xa6, 0x76, 0x38, 0x59, 0x79, 0x17, - 0x75, 0xdd, 0x7f, 0x90, 0xe0, 0x4c, 0x3f, 0xed, 0xe1, 0x7d, 0xb8, 0x03, 0x93, 0xe1, 0x66, 0x67, - 0x6b, 0x17, 0x3e, 0x30, 0xc0, 0x91, 0x15, 0x1f, 0x0b, 0x28, 0x60, 0xbb, 0x0d, 0x7d, 0xf5, 0xaf, - 0x25, 0x3e, 0x7e, 0xa3, 0x6e, 0x12, 0x74, 0x4c, 0x3c, 0x8d, 0x19, 0xb0, 0x63, 0x22, 0xa9, 0xcc, - 0x68, 0x2c, 0x95, 0xe9, 0xd0, 0xe5, 0x89, 0x5b, 0x14, 0x8d, 0xae, 0xf2, 0x68, 0xdd, 0x61, 0xf7, - 0xf4, 0xc3, 0x30, 0xd9, 0x61, 0x68, 0xf1, 0xc0, 0x34, 0xc0, 0xc8, 0x52, 0x51, 0xfb, 0xe0, 0x51, - 0xfe, 0xad, 0x04, 0xb3, 0xb4, 0xe0, 0x0e, 0xdd, 0xf8, 0x6e, 0xb6, 0x67, 0x83, 0xc7, 0xde, 0x8e, - 0xcd, 0xe2, 0x86, 0x5d, 0x86, 0x21, 0xe6, 0xa1, 0xdc, 0x96, 0x47, 0x70, 0x71, 0x4e, 0x10, 0xc6, - 0xfa, 0x45, 0xd1, 0xbe, 0xce, 0x01, 0xe3, 0x36, 0xd9, 0xf1, 0x56, 0x05, 0x8c, 0xd7, 0x45, 0xac, - 0xef, 0xdc, 0x0c, 0x6e, 0x37, 0xfd, 0x96, 0xc5, 0x7a, 0x66, 0xc4, 0x77, 0x28, 0xa8, 0x07, 0x6d, - 0xea, 0x11, 0xd4, 0x7f, 0xcc, 0xfb, 0x28, 0x08, 0xea, 0x3d, 0xda, 0xf3, 0x6e, 0x0c, 0xea, 0x7f, - 0x9c, 0x80, 0x13, 0xb4, 0x6d, 0xd1, 0x13, 0x84, 0x77, 0xa0, 0x6f, 0xaa, 0x80, 0x3c, 0x57, 0xaf, - 0xde, 0xaa, 0x58, 0x24, 0x7b, 0xae, 0x7e, 0x39, 0x36, 0xa3, 0x57, 0x01, 0xd5, 0x3c, 0xbf, 0xb5, - 0x80, 0xe4, 0x91, 0x0b, 0xa8, 0x79, 0xfe, 0xe5, 0x43, 0x52, 0x86, 0xd4, 0x91, 0xbd, 0xeb, 0xdb, - 0x12, 0x14, 0x3a, 0xf5, 0x00, 0xf7, 0x26, 0x03, 0xa6, 0x63, 0x87, 0x63, 0xad, 0x0e, 0xf5, 0x60, - 0x3f, 0x47, 0x42, 0x2d, 0xc3, 0xff, 0xb8, 0x8b, 0x6f, 0x6b, 0x00, 0xf8, 0x2d, 0x31, 0xc5, 0x05, - 0x03, 0xa6, 0x7d, 0x35, 0xf6, 0xe3, 0x3f, 0xec, 0x7f, 0xb5, 0x6d, 0x86, 0x79, 0x57, 0x2c, 0xec, - 0x7e, 0x57, 0x82, 0x99, 0x2e, 0xd5, 0x7e, 0x37, 0xa7, 0x17, 0x7b, 0x5d, 0x5d, 0xea, 0x56, 0xaf, - 0x22, 0x1f, 0xe3, 0xe3, 0x31, 0xfe, 0x01, 0x4e, 0x64, 0x17, 0xa1, 0xd3, 0x27, 0xc5, 0xca, 0x0b, - 0x70, 0xb2, 0x23, 0x8a, 0xd7, 0xad, 0x04, 0xa9, 0x3d, 0xc3, 0xf3, 0x79, 0xb5, 0xee, 0xed, 0x56, - 0xad, 0x16, 0x34, 0xc5, 0x28, 0x08, 0x64, 0x4a, 0xbd, 0x61, 0xdb, 0x26, 0xaf, 0x86, 0xf2, 0x2c, - 0x4c, 0x44, 0x64, 0xbc, 0x90, 0xf3, 0x90, 0x72, 0x6c, 0xfe, 0x57, 0x3a, 0x72, 0xe7, 0xee, 0xec, - 0x56, 0x08, 0xc1, 0xf0, 0x66, 0x53, 0x7d, 0x65, 0x0a, 0x10, 0x23, 0xa3, 0x37, 0x38, 0x44, 0x11, - 0x9b, 0x30, 0x19, 0x93, 0xf2, 0x42, 0x7e, 0x02, 0x86, 0x1c, 0x2a, 0xe1, 0xc5, 0x74, 0xbd, 0xfa, - 0xcb, 0x70, 0x22, 0x6d, 0x63, 0x98, 0x73, 0xbf, 0x38, 0x06, 0x69, 0xca, 0x8a, 0x6c, 0x80, 0xc8, - 0x75, 0x8c, 0x62, 0x37, 0x96, 0xce, 0x9b, 0x39, 0x85, 0xb3, 0x7d, 0xeb, 0xf3, 0xb4, 0xfb, 0x18, - 0x32, 0xa3, 0x5f, 0x7d, 0x3c, 0xd4, 0x1f, 0x5e, 0x14, 0x57, 0xec, 0x57, 0x3d, 0x28, 0xed, 0x53, - 0x12, 0x4c, 0x75, 0x5a, 0xbf, 0xa3, 0x27, 0xfb, 0xa3, 0x6a, 0xcf, 0x94, 0x0a, 0x4f, 0x1d, 0x01, - 0x19, 0xd4, 0xe7, 0x6b, 0x12, 0x9c, 0x3a, 0x74, 0x51, 0x8a, 0xe6, 0xfb, 0xa3, 0x3f, 0x24, 0x97, - 0x2b, 0x94, 0xdf, 0x0e, 0x45, 0x50, 0x55, 0x3b, 0x76, 0x49, 0xf8, 0x70, 0xd3, 0xb7, 0xad, 0x9d, - 0x7a, 0x78, 0x46, 0x7b, 0x4a, 0xac, 0x1c, 0x43, 0xaf, 0x48, 0x9d, 0x6f, 0xcf, 0x3e, 0x71, 0x28, - 0x55, 0xf7, 0xf5, 0x5b, 0xe1, 0xc9, 0xc1, 0x81, 0x31, 0xc7, 0xe9, 0xb4, 0x18, 0xe8, 0xe1, 0x38, - 0x87, 0x2c, 0x83, 0x7a, 0x38, 0xce, 0x61, 0x2b, 0x0f, 0xee, 0x38, 0x87, 0x26, 0xbe, 0x3d, 0x1c, - 0xa7, 0x9f, 0x45, 0x40, 0x0f, 0xc7, 0xe9, 0x2b, 0xef, 0x56, 0x8e, 0xa1, 0x7d, 0x18, 0x8d, 0x25, - 0x51, 0xe8, 0x91, 0x43, 0x69, 0x3b, 0xa5, 0xbc, 0x85, 0x73, 0x83, 0x40, 0x62, 0x1e, 0xd4, 0x21, - 0x4d, 0xe8, 0xe1, 0x41, 0xdd, 0xd3, 0xa3, 0xc2, 0x93, 0x83, 0x03, 0x83, 0xca, 0xfc, 0x4c, 0x78, - 0x27, 0x2c, 0xa2, 0x81, 0xce, 0x0f, 0x48, 0x29, 0xaa, 0xf2, 0xc4, 0xc0, 0xb8, 0xa0, 0x26, 0x7f, - 0xb6, 0xed, 0x33, 0xd6, 0xc3, 0xcd, 0xdb, 0x71, 0xca, 0x2d, 0x3c, 0x3a, 0x10, 0x26, 0x28, 0xfc, - 0x23, 0xfc, 0x8e, 0xd3, 0xe9, 0x43, 0xe1, 0x91, 0x49, 0xb5, 0x70, 0x7f, 0x1f, 0x9a, 0x01, 0xbd, - 0x1e, 0xdc, 0x78, 0x3c, 0x73, 0x38, 0x2c, 0x3a, 0xa9, 0x16, 0x1e, 0xe8, 0x4b, 0x57, 0x14, 0x72, - 0xcb, 0xcf, 0xc2, 0x3e, 0x9f, 0xe9, 0xfa, 0xb9, 0x74, 0x1d, 0x5b, 0xd8, 0x33, 0xbc, 0x23, 0xdd, - 0x55, 0xea, 0xef, 0x68, 0xe6, 0x77, 0xd3, 0x30, 0xb2, 0xc4, 0x4a, 0xd9, 0xf4, 0x35, 0xff, 0x6d, - 0xa6, 0x12, 0xc8, 0xe3, 0x7f, 0xe0, 0x88, 0x1e, 0x75, 0x55, 0x1d, 0xfb, 0x1a, 0x16, 0xd9, 0xe6, - 0xf2, 0xc0, 0x97, 0x84, 0xf8, 0x77, 0x7b, 0xad, 0x7c, 0x0a, 0xfb, 0x5b, 0x49, 0xf4, 0x34, 0x6e, - 0x83, 0x08, 0xd0, 0xc7, 0x25, 0x38, 0x4e, 0xb5, 0xc2, 0x34, 0x97, 0x6a, 0x8a, 0xef, 0x0c, 0xba, - 0xfa, 0xc2, 0x8a, 0x16, 0x59, 0x40, 0x52, 0xae, 0xf2, 0x3d, 0xfc, 0xda, 0xeb, 0x9d, 0x91, 0xc2, - 0x5b, 0x69, 0x15, 0x75, 0xd2, 0x6c, 0x43, 0x7a, 0x2d, 0xcb, 0x8e, 0xd4, 0xd1, 0x97, 0x1d, 0x97, - 0x20, 0x17, 0x89, 0x68, 0xf4, 0x7f, 0x09, 0x1f, 0xe4, 0xa6, 0x68, 0x14, 0x8c, 0x7e, 0x5a, 0x82, - 0xe3, 0xe1, 0xce, 0x47, 0x94, 0x76, 0x68, 0xf0, 0xbd, 0x8f, 0x16, 0xe3, 0x74, 0xe4, 0x55, 0xd4, - 0xa9, 0x66, 0xa7, 0x09, 0x69, 0x03, 0x46, 0xa3, 0x2b, 0x5c, 0x2f, 0x2f, 0xfe, 0x97, 0xbd, 0xfe, - 0x2f, 0x62, 0xc6, 0x09, 0x50, 0x01, 0x32, 0x78, 0xdf, 0xb1, 0x5d, 0x1f, 0xd7, 0xe8, 0xd7, 0x9e, - 0x19, 0x35, 0x78, 0x56, 0xae, 0x01, 0x6a, 0xef, 0x5c, 0xf4, 0x2c, 0x0c, 0xc7, 0x8f, 0xfc, 0x8f, - 0xb0, 0x04, 0x12, 0x0c, 0x68, 0x0a, 0xd2, 0xa1, 0x7f, 0x27, 0x55, 0xf6, 0x70, 0xab, 0x83, 0xc3, - 0x9f, 0x04, 0x00, 0x00, 0xff, 0xff, 0xdc, 0x87, 0xa5, 0xd3, 0x87, 0x89, 0x00, 0x00, + // 8985 bytes of a gzipped FileDescriptorSet + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x6d, 0x74, 0x1c, 0xd7, + 0x75, 0x18, 0x67, 0x3f, 0x80, 0xdd, 0xbb, 0xf8, 0x58, 0x3c, 0x80, 0xd0, 0x72, 0x49, 0x02, 0xd4, + 0x48, 0x96, 0x28, 0x4a, 0x5a, 0x48, 0x14, 0x45, 0x51, 0x4b, 0xdb, 0x32, 0x16, 0x58, 0x82, 0x20, + 0xf1, 0xa5, 0x01, 0x40, 0xc9, 0x76, 0xd2, 0x3d, 0x83, 0xd9, 0x87, 0xc5, 0x88, 0xb3, 0x33, 0xa3, + 0x99, 0x59, 0x12, 0xa0, 0xed, 0x73, 0x94, 0xf8, 0xa3, 0xb1, 0xda, 0xd4, 0xce, 0xc7, 0x69, 0x65, + 0xc7, 0x72, 0x65, 0xbb, 0xad, 0x53, 0xa7, 0x6d, 0x92, 0x3a, 0x4d, 0x9b, 0xa6, 0xa7, 0x75, 0x5a, + 0x27, 0x71, 0xda, 0xa6, 0x47, 0x3a, 0x75, 0xdb, 0x34, 0xa7, 0xa5, 0x53, 0xd9, 0xa7, 0x75, 0x5c, + 0xb7, 0x49, 0x59, 0xf5, 0x53, 0x3f, 0x92, 0xf3, 0xbe, 0xe6, 0x63, 0x3f, 0xb0, 0xbb, 0x10, 0x25, + 0x5b, 0x27, 0xfa, 0x85, 0x7d, 0xf7, 0xdd, 0x7b, 0xdf, 0xbd, 0xf7, 0xdd, 0x7b, 0xdf, 0x7d, 0x6f, + 0xde, 0x0c, 0xe0, 0xe7, 0xce, 0xc3, 0x89, 0x9a, 0x65, 0xd5, 0x0c, 0x3c, 0x63, 0x3b, 0x96, 0x67, + 0x6d, 0x35, 0xb6, 0x67, 0xaa, 0xd8, 0xd5, 0x1c, 0xdd, 0xf6, 0x2c, 0xa7, 0x40, 0x61, 0x68, 0x94, + 0x61, 0x14, 0x04, 0x86, 0xbc, 0x0c, 0x63, 0x17, 0x74, 0x03, 0xcf, 0xfb, 0x88, 0xeb, 0xd8, 0x43, + 0xe7, 0x20, 0xb1, 0xad, 0x1b, 0x38, 0x27, 0x9d, 0x88, 0x9f, 0xcc, 0x9c, 0xbe, 0xbb, 0xd0, 0x44, + 0x54, 0x88, 0x52, 0xac, 0x11, 0xb0, 0x42, 0x29, 0xe4, 0xef, 0x24, 0x60, 0xbc, 0x4d, 0x2f, 0x42, + 0x90, 0x30, 0xd5, 0x3a, 0xe1, 0x28, 0x9d, 0x4c, 0x2b, 0xf4, 0x37, 0xca, 0xc1, 0xa0, 0xad, 0x6a, + 0x57, 0xd5, 0x1a, 0xce, 0xc5, 0x28, 0x58, 0x34, 0xd1, 0x14, 0x40, 0x15, 0xdb, 0xd8, 0xac, 0x62, + 0x53, 0xdb, 0xcb, 0xc5, 0x4f, 0xc4, 0x4f, 0xa6, 0x95, 0x10, 0x04, 0xdd, 0x0f, 0x63, 0x76, 0x63, + 0xcb, 0xd0, 0xb5, 0x4a, 0x08, 0x0d, 0x4e, 0xc4, 0x4f, 0x26, 0x95, 0x2c, 0xeb, 0x98, 0x0f, 0x90, + 0xef, 0x85, 0xd1, 0xeb, 0x58, 0xbd, 0x1a, 0x46, 0xcd, 0x50, 0xd4, 0x11, 0x02, 0x0e, 0x21, 0xce, + 0xc1, 0x50, 0x1d, 0xbb, 0xae, 0x5a, 0xc3, 0x15, 0x6f, 0xcf, 0xc6, 0xb9, 0x04, 0xd5, 0xfe, 0x44, + 0x8b, 0xf6, 0xcd, 0x9a, 0x67, 0x38, 0xd5, 0xc6, 0x9e, 0x8d, 0xd1, 0x2c, 0xa4, 0xb1, 0xd9, 0xa8, + 0x33, 0x0e, 0xc9, 0x0e, 0xf6, 0x2b, 0x9b, 0x8d, 0x7a, 0x33, 0x97, 0x14, 0x21, 0xe3, 0x2c, 0x06, + 0x5d, 0xec, 0x5c, 0xd3, 0x35, 0x9c, 0x1b, 0xa0, 0x0c, 0xee, 0x6d, 0x61, 0xb0, 0xce, 0xfa, 0x9b, + 0x79, 0x08, 0x3a, 0x34, 0x07, 0x69, 0xbc, 0xeb, 0x61, 0xd3, 0xd5, 0x2d, 0x33, 0x37, 0x48, 0x99, + 0xbc, 0xab, 0xcd, 0x2c, 0x62, 0xa3, 0xda, 0xcc, 0x22, 0xa0, 0x43, 0x67, 0x61, 0xd0, 0xb2, 0x3d, + 0xdd, 0x32, 0xdd, 0x5c, 0xea, 0x84, 0x74, 0x32, 0x73, 0xfa, 0x58, 0x5b, 0x47, 0x58, 0x65, 0x38, + 0x8a, 0x40, 0x46, 0x8b, 0x90, 0x75, 0xad, 0x86, 0xa3, 0xe1, 0x8a, 0x66, 0x55, 0x71, 0x45, 0x37, + 0xb7, 0xad, 0x5c, 0x9a, 0x32, 0x98, 0x6e, 0x55, 0x84, 0x22, 0xce, 0x59, 0x55, 0xbc, 0x68, 0x6e, + 0x5b, 0xca, 0x88, 0x1b, 0x69, 0xa3, 0x49, 0x18, 0x70, 0xf7, 0x4c, 0x4f, 0xdd, 0xcd, 0x0d, 0x51, + 0x0f, 0xe1, 0x2d, 0xf9, 0xd7, 0x06, 0x60, 0xb4, 0x17, 0x17, 0x3b, 0x0f, 0xc9, 0x6d, 0xa2, 0x65, + 0x2e, 0xd6, 0x8f, 0x0d, 0x18, 0x4d, 0xd4, 0x88, 0x03, 0x07, 0x34, 0xe2, 0x2c, 0x64, 0x4c, 0xec, + 0x7a, 0xb8, 0xca, 0x3c, 0x22, 0xde, 0xa3, 0x4f, 0x01, 0x23, 0x6a, 0x75, 0xa9, 0xc4, 0x81, 0x5c, + 0xea, 0x69, 0x18, 0xf5, 0x45, 0xaa, 0x38, 0xaa, 0x59, 0x13, 0xbe, 0x39, 0xd3, 0x4d, 0x92, 0x42, + 0x59, 0xd0, 0x29, 0x84, 0x4c, 0x19, 0xc1, 0x91, 0x36, 0x9a, 0x07, 0xb0, 0x4c, 0x6c, 0x6d, 0x57, + 0xaa, 0x58, 0x33, 0x72, 0xa9, 0x0e, 0x56, 0x5a, 0x25, 0x28, 0x2d, 0x56, 0xb2, 0x18, 0x54, 0x33, + 0xd0, 0xe3, 0x81, 0xab, 0x0d, 0x76, 0xf0, 0x94, 0x65, 0x16, 0x64, 0x2d, 0xde, 0xb6, 0x09, 0x23, + 0x0e, 0x26, 0x7e, 0x8f, 0xab, 0x5c, 0xb3, 0x34, 0x15, 0xa2, 0xd0, 0x55, 0x33, 0x85, 0x93, 0x31, + 0xc5, 0x86, 0x9d, 0x70, 0x13, 0xdd, 0x05, 0x3e, 0xa0, 0x42, 0xdd, 0x0a, 0x68, 0x16, 0x1a, 0x12, + 0xc0, 0x15, 0xb5, 0x8e, 0xf3, 0x37, 0x60, 0x24, 0x6a, 0x1e, 0x34, 0x01, 0x49, 0xd7, 0x53, 0x1d, + 0x8f, 0x7a, 0x61, 0x52, 0x61, 0x0d, 0x94, 0x85, 0x38, 0x36, 0xab, 0x34, 0xcb, 0x25, 0x15, 0xf2, + 0x13, 0xbd, 0x2f, 0x50, 0x38, 0x4e, 0x15, 0xbe, 0xa7, 0x75, 0x46, 0x23, 0x9c, 0x9b, 0xf5, 0xce, + 0x3f, 0x06, 0xc3, 0x11, 0x05, 0x7a, 0x1d, 0x5a, 0xfe, 0x30, 0x1c, 0x6e, 0xcb, 0x1a, 0x3d, 0x0d, + 0x13, 0x0d, 0x53, 0x37, 0x3d, 0xec, 0xd8, 0x0e, 0x26, 0x1e, 0xcb, 0x86, 0xca, 0xfd, 0x97, 0xc1, + 0x0e, 0x3e, 0xb7, 0x19, 0xc6, 0x66, 0x5c, 0x94, 0xf1, 0x46, 0x2b, 0xf0, 0x54, 0x3a, 0xf5, 0xdd, + 0xc1, 0xec, 0x73, 0xcf, 0x3d, 0xf7, 0x5c, 0x4c, 0x7e, 0x61, 0x00, 0x26, 0xda, 0xc5, 0x4c, 0xdb, + 0xf0, 0x9d, 0x84, 0x01, 0xb3, 0x51, 0xdf, 0xc2, 0x0e, 0x35, 0x52, 0x52, 0xe1, 0x2d, 0x34, 0x0b, + 0x49, 0x43, 0xdd, 0xc2, 0x46, 0x2e, 0x71, 0x42, 0x3a, 0x39, 0x72, 0xfa, 0xfe, 0x9e, 0xa2, 0xb2, + 0xb0, 0x44, 0x48, 0x14, 0x46, 0x89, 0xde, 0x0b, 0x09, 0x9e, 0xa2, 0x09, 0x87, 0x53, 0xbd, 0x71, + 0x20, 0xb1, 0xa4, 0x50, 0x3a, 0x74, 0x14, 0xd2, 0xe4, 0x2f, 0xf3, 0x8d, 0x01, 0x2a, 0x73, 0x8a, + 0x00, 0x88, 0x5f, 0xa0, 0x3c, 0xa4, 0x68, 0x98, 0x54, 0xb1, 0x58, 0xda, 0xfc, 0x36, 0x71, 0xac, + 0x2a, 0xde, 0x56, 0x1b, 0x86, 0x57, 0xb9, 0xa6, 0x1a, 0x0d, 0x4c, 0x1d, 0x3e, 0xad, 0x0c, 0x71, + 0xe0, 0x15, 0x02, 0x43, 0xd3, 0x90, 0x61, 0x51, 0xa5, 0x9b, 0x55, 0xbc, 0x4b, 0xb3, 0x67, 0x52, + 0x61, 0x81, 0xb6, 0x48, 0x20, 0x64, 0xf8, 0x67, 0x5c, 0xcb, 0x14, 0xae, 0x49, 0x87, 0x20, 0x00, + 0x3a, 0xfc, 0x63, 0xcd, 0x89, 0xfb, 0x78, 0x7b, 0xf5, 0x9a, 0x7d, 0x4a, 0xfe, 0xd5, 0x18, 0x24, + 0x68, 0xbe, 0x18, 0x85, 0xcc, 0xc6, 0xfb, 0xd7, 0xca, 0x95, 0xf9, 0xd5, 0xcd, 0xd2, 0x52, 0x39, + 0x2b, 0xa1, 0x11, 0x00, 0x0a, 0xb8, 0xb0, 0xb4, 0x3a, 0xbb, 0x91, 0x8d, 0xf9, 0xed, 0xc5, 0x95, + 0x8d, 0xb3, 0x67, 0xb2, 0x71, 0x9f, 0x60, 0x93, 0x01, 0x12, 0x61, 0x84, 0x47, 0x4e, 0x67, 0x93, + 0x28, 0x0b, 0x43, 0x8c, 0xc1, 0xe2, 0xd3, 0xe5, 0xf9, 0xb3, 0x67, 0xb2, 0x03, 0x51, 0xc8, 0x23, + 0xa7, 0xb3, 0x83, 0x68, 0x18, 0xd2, 0x14, 0x52, 0x5a, 0x5d, 0x5d, 0xca, 0xa6, 0x7c, 0x9e, 0xeb, + 0x1b, 0xca, 0xe2, 0xca, 0x42, 0x36, 0xed, 0xf3, 0x5c, 0x50, 0x56, 0x37, 0xd7, 0xb2, 0xe0, 0x73, + 0x58, 0x2e, 0xaf, 0xaf, 0xcf, 0x2e, 0x94, 0xb3, 0x19, 0x1f, 0xa3, 0xf4, 0xfe, 0x8d, 0xf2, 0x7a, + 0x76, 0x28, 0x22, 0xd6, 0x23, 0xa7, 0xb3, 0xc3, 0xfe, 0x10, 0xe5, 0x95, 0xcd, 0xe5, 0xec, 0x08, + 0x1a, 0x83, 0x61, 0x36, 0x84, 0x10, 0x62, 0xb4, 0x09, 0x74, 0xf6, 0x4c, 0x36, 0x1b, 0x08, 0xc2, + 0xb8, 0x8c, 0x45, 0x00, 0x67, 0xcf, 0x64, 0x91, 0x3c, 0x07, 0x49, 0xea, 0x5d, 0x08, 0xc1, 0xc8, + 0xd2, 0x6c, 0xa9, 0xbc, 0x54, 0x59, 0x5d, 0xdb, 0x58, 0x5c, 0x5d, 0x99, 0x5d, 0xca, 0x4a, 0x01, + 0x4c, 0x29, 0x3f, 0xb9, 0xb9, 0xa8, 0x94, 0xe7, 0xb3, 0xb1, 0x30, 0x6c, 0xad, 0x3c, 0xbb, 0x51, + 0x9e, 0xcf, 0xc6, 0x65, 0x0d, 0x26, 0xda, 0xe5, 0xc9, 0xb6, 0x91, 0x11, 0x9a, 0xe2, 0x58, 0x87, + 0x29, 0xa6, 0xbc, 0x5a, 0xa6, 0xf8, 0xdb, 0x31, 0x18, 0x6f, 0xb3, 0x56, 0xb4, 0x1d, 0xe4, 0x09, + 0x48, 0x32, 0x17, 0x65, 0xab, 0xe7, 0x7d, 0x6d, 0x17, 0x1d, 0xea, 0xb0, 0x2d, 0x2b, 0x28, 0xa5, + 0x0b, 0x57, 0x10, 0xf1, 0x0e, 0x15, 0x04, 0x61, 0xd1, 0x92, 0xd3, 0x7f, 0xb4, 0x25, 0xa7, 0xb3, + 0x65, 0xef, 0x6c, 0x2f, 0xcb, 0x1e, 0x85, 0xf5, 0x97, 0xdb, 0x93, 0x6d, 0x72, 0xfb, 0x79, 0x18, + 0x6b, 0x61, 0xd4, 0x73, 0x8e, 0xfd, 0xa8, 0x04, 0xb9, 0x4e, 0xc6, 0xe9, 0x92, 0xe9, 0x62, 0x91, + 0x4c, 0x77, 0xbe, 0xd9, 0x82, 0x77, 0x76, 0x9e, 0x84, 0x96, 0xb9, 0xfe, 0xb2, 0x04, 0x93, 0xed, + 0x2b, 0xc5, 0xb6, 0x32, 0xbc, 0x17, 0x06, 0xea, 0xd8, 0xdb, 0xb1, 0x44, 0xb5, 0x74, 0x4f, 0x9b, + 0x35, 0x98, 0x74, 0x37, 0x4f, 0x36, 0xa7, 0x0a, 0x2f, 0xe2, 0xf1, 0x4e, 0xe5, 0x1e, 0x93, 0xa6, + 0x45, 0xd2, 0x4f, 0xc6, 0xe0, 0x70, 0x5b, 0xe6, 0x6d, 0x05, 0x3d, 0x0e, 0xa0, 0x9b, 0x76, 0xc3, + 0x63, 0x15, 0x11, 0x4b, 0xb0, 0x69, 0x0a, 0xa1, 0xc9, 0x8b, 0x24, 0xcf, 0x86, 0xe7, 0xf7, 0xc7, + 0x69, 0x3f, 0x30, 0x10, 0x45, 0x38, 0x17, 0x08, 0x9a, 0xa0, 0x82, 0x4e, 0x75, 0xd0, 0xb4, 0xc5, + 0x31, 0x1f, 0x82, 0xac, 0x66, 0xe8, 0xd8, 0xf4, 0x2a, 0xae, 0xe7, 0x60, 0xb5, 0xae, 0x9b, 0x35, + 0xba, 0x82, 0xa4, 0x8a, 0xc9, 0x6d, 0xd5, 0x70, 0xb1, 0x32, 0xca, 0xba, 0xd7, 0x45, 0x2f, 0xa1, + 0xa0, 0x0e, 0xe4, 0x84, 0x28, 0x06, 0x22, 0x14, 0xac, 0xdb, 0xa7, 0x90, 0x7f, 0x3a, 0x0d, 0x99, + 0x50, 0x5d, 0x8d, 0xee, 0x84, 0xa1, 0x67, 0xd4, 0x6b, 0x6a, 0x45, 0xec, 0x95, 0x98, 0x25, 0x32, + 0x04, 0xb6, 0xc6, 0xf7, 0x4b, 0x0f, 0xc1, 0x04, 0x45, 0xb1, 0x1a, 0x1e, 0x76, 0x2a, 0x9a, 0xa1, + 0xba, 0x2e, 0x35, 0x5a, 0x8a, 0xa2, 0x22, 0xd2, 0xb7, 0x4a, 0xba, 0xe6, 0x44, 0x0f, 0x7a, 0x14, + 0xc6, 0x29, 0x45, 0xbd, 0x61, 0x78, 0xba, 0x6d, 0xe0, 0x0a, 0xd9, 0xbd, 0xb9, 0x74, 0x25, 0xf1, + 0x25, 0x1b, 0x23, 0x18, 0xcb, 0x1c, 0x81, 0x48, 0xe4, 0xa2, 0x79, 0x38, 0x4e, 0xc9, 0x6a, 0xd8, + 0xc4, 0x8e, 0xea, 0xe1, 0x0a, 0x7e, 0xb6, 0xa1, 0x1a, 0x6e, 0x45, 0x35, 0xab, 0x95, 0x1d, 0xd5, + 0xdd, 0xc9, 0x4d, 0x10, 0x06, 0xa5, 0x58, 0x4e, 0x52, 0x8e, 0x10, 0xc4, 0x05, 0x8e, 0x57, 0xa6, + 0x68, 0xb3, 0x66, 0xf5, 0xa2, 0xea, 0xee, 0xa0, 0x22, 0x4c, 0x52, 0x2e, 0xae, 0xe7, 0xe8, 0x66, + 0xad, 0xa2, 0xed, 0x60, 0xed, 0x6a, 0xa5, 0xe1, 0x6d, 0x9f, 0xcb, 0x1d, 0x0d, 0x8f, 0x4f, 0x25, + 0x5c, 0xa7, 0x38, 0x73, 0x04, 0x65, 0xd3, 0xdb, 0x3e, 0x87, 0xd6, 0x61, 0x88, 0x4c, 0x46, 0x5d, + 0xbf, 0x81, 0x2b, 0xdb, 0x96, 0x43, 0x97, 0xc6, 0x91, 0x36, 0xa9, 0x29, 0x64, 0xc1, 0xc2, 0x2a, + 0x27, 0x58, 0xb6, 0xaa, 0xb8, 0x98, 0x5c, 0x5f, 0x2b, 0x97, 0xe7, 0x95, 0x8c, 0xe0, 0x72, 0xc1, + 0x72, 0x88, 0x43, 0xd5, 0x2c, 0xdf, 0xc0, 0x19, 0xe6, 0x50, 0x35, 0x4b, 0x98, 0xf7, 0x51, 0x18, + 0xd7, 0x34, 0xa6, 0xb3, 0xae, 0x55, 0xf8, 0x1e, 0xcb, 0xcd, 0x65, 0x23, 0xc6, 0xd2, 0xb4, 0x05, + 0x86, 0xc0, 0x7d, 0xdc, 0x45, 0x8f, 0xc3, 0xe1, 0xc0, 0x58, 0x61, 0xc2, 0xb1, 0x16, 0x2d, 0x9b, + 0x49, 0x1f, 0x85, 0x71, 0x7b, 0xaf, 0x95, 0x10, 0x45, 0x46, 0xb4, 0xf7, 0x9a, 0xc9, 0x1e, 0x83, + 0x09, 0x7b, 0xc7, 0x6e, 0xa5, 0x3b, 0x15, 0xa6, 0x43, 0xf6, 0x8e, 0xdd, 0x4c, 0xf8, 0x2e, 0xba, + 0xe1, 0x76, 0xb0, 0xa6, 0x7a, 0xb8, 0x9a, 0xbb, 0x23, 0x8c, 0x1e, 0xea, 0x40, 0x33, 0x90, 0xd5, + 0xb4, 0x0a, 0x36, 0xd5, 0x2d, 0x03, 0x57, 0x54, 0x07, 0x9b, 0xaa, 0x9b, 0x9b, 0x0e, 0x23, 0x8f, + 0x68, 0x5a, 0x99, 0xf6, 0xce, 0xd2, 0x4e, 0x74, 0x0a, 0xc6, 0xac, 0xad, 0x67, 0x34, 0xe6, 0x92, + 0x15, 0xdb, 0xc1, 0xdb, 0xfa, 0x6e, 0xee, 0x6e, 0x6a, 0xdf, 0x51, 0xd2, 0x41, 0x1d, 0x72, 0x8d, + 0x82, 0xd1, 0x7d, 0x90, 0xd5, 0xdc, 0x1d, 0xd5, 0xb1, 0x69, 0x4e, 0x76, 0x6d, 0x55, 0xc3, 0xb9, + 0x77, 0x31, 0x54, 0x06, 0x5f, 0x11, 0x60, 0x12, 0x12, 0xee, 0x75, 0x7d, 0xdb, 0x13, 0x1c, 0xef, + 0x65, 0x21, 0x41, 0x61, 0x9c, 0xdb, 0x49, 0xc8, 0x12, 0x53, 0x44, 0x06, 0x3e, 0x49, 0xd1, 0x46, + 0xec, 0x1d, 0x3b, 0x3c, 0xee, 0x5d, 0x30, 0x4c, 0x30, 0x83, 0x41, 0xef, 0x63, 0x05, 0x99, 0xbd, + 0x13, 0x1a, 0xf1, 0x0c, 0x4c, 0x12, 0xa4, 0x3a, 0xf6, 0xd4, 0xaa, 0xea, 0xa9, 0x21, 0xec, 0x07, + 0x28, 0x36, 0xb1, 0xfb, 0x32, 0xef, 0x8c, 0xc8, 0xe9, 0x34, 0xb6, 0xf6, 0x7c, 0xcf, 0x7a, 0x90, + 0xc9, 0x49, 0x60, 0xc2, 0xb7, 0xde, 0xb4, 0xa2, 0x5b, 0x2e, 0xc2, 0x50, 0xd8, 0xf1, 0x51, 0x1a, + 0x98, 0xeb, 0x67, 0x25, 0x52, 0x05, 0xcd, 0xad, 0xce, 0x93, 0xfa, 0xe5, 0x03, 0xe5, 0x6c, 0x8c, + 0xd4, 0x51, 0x4b, 0x8b, 0x1b, 0xe5, 0x8a, 0xb2, 0xb9, 0xb2, 0xb1, 0xb8, 0x5c, 0xce, 0xc6, 0x43, + 0x05, 0xfb, 0xa5, 0x44, 0xea, 0x9e, 0xec, 0xbd, 0xf2, 0x2b, 0x31, 0x18, 0x89, 0xee, 0xc0, 0xd0, + 0xbb, 0xe1, 0x0e, 0x71, 0x5c, 0xe2, 0x62, 0xaf, 0x72, 0x5d, 0x77, 0x68, 0x44, 0xd6, 0x55, 0xb6, + 0x3a, 0xfa, 0x3e, 0x31, 0xc1, 0xb1, 0xd6, 0xb1, 0xf7, 0x94, 0xee, 0x90, 0x78, 0xab, 0xab, 0x1e, + 0x5a, 0x82, 0x69, 0xd3, 0xaa, 0xb8, 0x9e, 0x6a, 0x56, 0x55, 0xa7, 0x5a, 0x09, 0x0e, 0xaa, 0x2a, + 0xaa, 0xa6, 0x61, 0xd7, 0xb5, 0xd8, 0x4a, 0xe8, 0x73, 0x39, 0x66, 0x5a, 0xeb, 0x1c, 0x39, 0x58, + 0x22, 0x66, 0x39, 0x6a, 0x93, 0xff, 0xc6, 0x3b, 0xf9, 0xef, 0x51, 0x48, 0xd7, 0x55, 0xbb, 0x82, + 0x4d, 0xcf, 0xd9, 0xa3, 0x75, 0x77, 0x4a, 0x49, 0xd5, 0x55, 0xbb, 0x4c, 0xda, 0x6f, 0xc9, 0xf6, + 0xe7, 0x52, 0x22, 0x95, 0xca, 0xa6, 0x2f, 0x25, 0x52, 0xe9, 0x2c, 0xc8, 0xaf, 0xc6, 0x61, 0x28, + 0x5c, 0x87, 0x93, 0x6d, 0x8d, 0x46, 0x97, 0x2c, 0x89, 0x26, 0xb5, 0xbb, 0xf6, 0xad, 0xda, 0x0b, + 0x73, 0x64, 0x2d, 0x2b, 0x0e, 0xb0, 0xea, 0x58, 0x61, 0x94, 0xa4, 0x8e, 0x20, 0xce, 0x86, 0x59, + 0x35, 0x92, 0x52, 0x78, 0x0b, 0x2d, 0xc0, 0xc0, 0x33, 0x2e, 0xe5, 0x3d, 0x40, 0x79, 0xdf, 0xbd, + 0x3f, 0xef, 0x4b, 0xeb, 0x94, 0x79, 0xfa, 0xd2, 0x7a, 0x65, 0x65, 0x55, 0x59, 0x9e, 0x5d, 0x52, + 0x38, 0x39, 0x3a, 0x02, 0x09, 0x43, 0xbd, 0xb1, 0x17, 0x5d, 0xf5, 0x28, 0xa8, 0xd7, 0x49, 0x38, + 0x02, 0x89, 0xeb, 0x58, 0xbd, 0x1a, 0x5d, 0x6b, 0x28, 0xe8, 0x4d, 0x0c, 0x86, 0x19, 0x48, 0x52, + 0x7b, 0x21, 0x00, 0x6e, 0xb1, 0xec, 0x21, 0x94, 0x82, 0xc4, 0xdc, 0xaa, 0x42, 0x02, 0x22, 0x0b, + 0x43, 0x0c, 0x5a, 0x59, 0x5b, 0x2c, 0xcf, 0x95, 0xb3, 0x31, 0xf9, 0x51, 0x18, 0x60, 0x46, 0x20, + 0xc1, 0xe2, 0x9b, 0x21, 0x7b, 0x88, 0x37, 0x39, 0x0f, 0x49, 0xf4, 0x6e, 0x2e, 0x97, 0xca, 0x4a, + 0x36, 0x16, 0x9d, 0xea, 0x44, 0x36, 0x29, 0xbb, 0x30, 0x14, 0x2e, 0xc4, 0xdf, 0x9a, 0x4d, 0xf6, + 0xd7, 0x24, 0xc8, 0x84, 0x0a, 0x6b, 0x52, 0x11, 0xa9, 0x86, 0x61, 0x5d, 0xaf, 0xa8, 0x86, 0xae, + 0xba, 0xdc, 0x35, 0x80, 0x82, 0x66, 0x09, 0xa4, 0xd7, 0xa9, 0x7b, 0x8b, 0x42, 0x24, 0x99, 0x1d, + 0x90, 0x3f, 0x2f, 0x41, 0xb6, 0xb9, 0xb2, 0x6d, 0x12, 0x53, 0xfa, 0x41, 0x8a, 0x29, 0x7f, 0x4e, + 0x82, 0x91, 0x68, 0x39, 0xdb, 0x24, 0xde, 0x9d, 0x3f, 0x50, 0xf1, 0xfe, 0x20, 0x06, 0xc3, 0x91, + 0x22, 0xb6, 0x57, 0xe9, 0x9e, 0x85, 0x31, 0xbd, 0x8a, 0xeb, 0xb6, 0xe5, 0x61, 0x53, 0xdb, 0xab, + 0x18, 0xf8, 0x1a, 0x36, 0x72, 0x32, 0x4d, 0x1a, 0x33, 0xfb, 0x97, 0xc9, 0x85, 0xc5, 0x80, 0x6e, + 0x89, 0x90, 0x15, 0xc7, 0x17, 0xe7, 0xcb, 0xcb, 0x6b, 0xab, 0x1b, 0xe5, 0x95, 0xb9, 0xf7, 0x57, + 0x36, 0x57, 0x2e, 0xaf, 0xac, 0x3e, 0xb5, 0xa2, 0x64, 0xf5, 0x26, 0xb4, 0x37, 0x31, 0xec, 0xd7, + 0x20, 0xdb, 0x2c, 0x14, 0xba, 0x03, 0xda, 0x89, 0x95, 0x3d, 0x84, 0xc6, 0x61, 0x74, 0x65, 0xb5, + 0xb2, 0xbe, 0x38, 0x5f, 0xae, 0x94, 0x2f, 0x5c, 0x28, 0xcf, 0x6d, 0xac, 0xb3, 0x83, 0x0f, 0x1f, + 0x7b, 0x23, 0x12, 0xe0, 0xf2, 0x67, 0xe3, 0x30, 0xde, 0x46, 0x12, 0x34, 0xcb, 0xb7, 0x2c, 0x6c, + 0x17, 0xf5, 0x60, 0x2f, 0xd2, 0x17, 0x48, 0xcd, 0xb0, 0xa6, 0x3a, 0x1e, 0xdf, 0xe1, 0xdc, 0x07, + 0xc4, 0x4a, 0xa6, 0xa7, 0x6f, 0xeb, 0xd8, 0xe1, 0xe7, 0x44, 0x6c, 0x1f, 0x33, 0x1a, 0xc0, 0xd9, + 0x51, 0xd1, 0x03, 0x80, 0x6c, 0xcb, 0xd5, 0x3d, 0xfd, 0x1a, 0xae, 0xe8, 0xa6, 0x38, 0x54, 0x22, + 0xfb, 0x9a, 0x84, 0x92, 0x15, 0x3d, 0x8b, 0xa6, 0xe7, 0x63, 0x9b, 0xb8, 0xa6, 0x36, 0x61, 0x93, + 0x64, 0x1e, 0x57, 0xb2, 0xa2, 0xc7, 0xc7, 0xbe, 0x13, 0x86, 0xaa, 0x56, 0x83, 0x14, 0x7b, 0x0c, + 0x8f, 0xac, 0x1d, 0x92, 0x92, 0x61, 0x30, 0x1f, 0x85, 0x97, 0xf1, 0xc1, 0x69, 0xd6, 0x90, 0x92, + 0x61, 0x30, 0x86, 0x72, 0x2f, 0x8c, 0xaa, 0xb5, 0x9a, 0x43, 0x98, 0x0b, 0x46, 0x6c, 0x63, 0x32, + 0xe2, 0x83, 0x29, 0x62, 0xfe, 0x12, 0xa4, 0x84, 0x1d, 0xc8, 0x52, 0x4d, 0x2c, 0x51, 0xb1, 0xd9, + 0x6e, 0x3b, 0x76, 0x32, 0xad, 0xa4, 0x4c, 0xd1, 0x79, 0x27, 0x0c, 0xe9, 0x6e, 0x25, 0x38, 0x9c, + 0x8f, 0x9d, 0x88, 0x9d, 0x4c, 0x29, 0x19, 0xdd, 0xf5, 0x0f, 0x36, 0xe5, 0x2f, 0xc7, 0x60, 0x24, + 0xfa, 0x70, 0x01, 0xcd, 0x43, 0xca, 0xb0, 0x34, 0x95, 0xba, 0x16, 0x7b, 0xb2, 0x75, 0xb2, 0xcb, + 0xf3, 0x88, 0xc2, 0x12, 0xc7, 0x57, 0x7c, 0xca, 0xfc, 0xbf, 0x92, 0x20, 0x25, 0xc0, 0x68, 0x12, + 0x12, 0xb6, 0xea, 0xed, 0x50, 0x76, 0xc9, 0x52, 0x2c, 0x2b, 0x29, 0xb4, 0x4d, 0xe0, 0xae, 0xad, + 0x9a, 0xd4, 0x05, 0x38, 0x9c, 0xb4, 0xc9, 0xbc, 0x1a, 0x58, 0xad, 0xd2, 0x5d, 0x8f, 0x55, 0xaf, + 0x63, 0xd3, 0x73, 0xc5, 0xbc, 0x72, 0xf8, 0x1c, 0x07, 0xa3, 0xfb, 0x61, 0xcc, 0x73, 0x54, 0xdd, + 0x88, 0xe0, 0x26, 0x28, 0x6e, 0x56, 0x74, 0xf8, 0xc8, 0x45, 0x38, 0x22, 0xf8, 0x56, 0xb1, 0xa7, + 0x6a, 0x3b, 0xb8, 0x1a, 0x10, 0x0d, 0xd0, 0xd3, 0x8d, 0x3b, 0x38, 0xc2, 0x3c, 0xef, 0x17, 0xb4, + 0xf2, 0x2b, 0x12, 0x8c, 0x89, 0x7d, 0x5a, 0xd5, 0x37, 0xd6, 0x32, 0x80, 0x6a, 0x9a, 0x96, 0x17, + 0x36, 0x57, 0xab, 0x2b, 0xb7, 0xd0, 0x15, 0x66, 0x7d, 0x22, 0x25, 0xc4, 0x20, 0x5f, 0x07, 0x08, + 0x7a, 0x3a, 0x9a, 0x6d, 0x1a, 0x32, 0xfc, 0xc9, 0x11, 0x7d, 0xfc, 0xc8, 0x76, 0xf6, 0xc0, 0x40, + 0x64, 0x43, 0x87, 0x26, 0x20, 0xb9, 0x85, 0x6b, 0xba, 0xc9, 0xcf, 0x83, 0x59, 0x43, 0x9c, 0xbf, + 0x24, 0xfc, 0xf3, 0x97, 0xd2, 0xa7, 0x24, 0x18, 0xd7, 0xac, 0x7a, 0xb3, 0xbc, 0xa5, 0x6c, 0xd3, + 0xf1, 0x82, 0x7b, 0x51, 0xfa, 0xc0, 0x7b, 0x6b, 0xba, 0xb7, 0xd3, 0xd8, 0x2a, 0x68, 0x56, 0x7d, + 0xa6, 0x66, 0x19, 0xaa, 0x59, 0x0b, 0x9e, 0x9f, 0xd2, 0x1f, 0xda, 0x83, 0x35, 0x6c, 0x3e, 0x58, + 0xb3, 0x42, 0x4f, 0x53, 0xcf, 0x07, 0x3f, 0xff, 0xaf, 0x24, 0x7d, 0x31, 0x16, 0x5f, 0x58, 0x2b, + 0x7d, 0x25, 0x96, 0x5f, 0x60, 0xc3, 0xad, 0x09, 0xf3, 0x28, 0x78, 0xdb, 0xc0, 0x1a, 0x51, 0x19, + 0xbe, 0x77, 0x3f, 0x4c, 0xd4, 0xac, 0x9a, 0x45, 0x39, 0xce, 0x90, 0x5f, 0xfc, 0x89, 0x6c, 0xda, + 0x87, 0xe6, 0xbb, 0x3e, 0xbe, 0x2d, 0xae, 0xc0, 0x38, 0x47, 0xae, 0xd0, 0x47, 0x42, 0x6c, 0x63, + 0x83, 0xf6, 0x3d, 0x56, 0xcb, 0xfd, 0xf2, 0x77, 0xe8, 0x82, 0xae, 0x8c, 0x71, 0x52, 0xd2, 0xc7, + 0xf6, 0x3e, 0x45, 0x05, 0x0e, 0x47, 0xf8, 0xb1, 0xb0, 0xc5, 0x4e, 0x17, 0x8e, 0xbf, 0xc9, 0x39, + 0x8e, 0x87, 0x38, 0xae, 0x73, 0xd2, 0xe2, 0x1c, 0x0c, 0xf7, 0xc3, 0xeb, 0xb7, 0x38, 0xaf, 0x21, + 0x1c, 0x66, 0xb2, 0x00, 0xa3, 0x94, 0x89, 0xd6, 0x70, 0x3d, 0xab, 0x4e, 0x73, 0xe2, 0xfe, 0x6c, + 0x7e, 0xfb, 0x3b, 0x2c, 0x8e, 0x46, 0x08, 0xd9, 0x9c, 0x4f, 0x55, 0x2c, 0x02, 0x7d, 0x0a, 0x56, + 0xc5, 0x9a, 0xd1, 0x85, 0xc3, 0x37, 0xb8, 0x20, 0x3e, 0x7e, 0xf1, 0x0a, 0x4c, 0x90, 0xdf, 0x34, + 0x65, 0x85, 0x25, 0xe9, 0x7e, 0x06, 0x97, 0x7b, 0xe5, 0xa3, 0x2c, 0x54, 0xc7, 0x7d, 0x06, 0x21, + 0x99, 0x42, 0xb3, 0x58, 0xc3, 0x9e, 0x87, 0x1d, 0xb7, 0xa2, 0x1a, 0xed, 0xc4, 0x0b, 0x1d, 0x62, + 0xe4, 0x3e, 0xf3, 0xfd, 0xe8, 0x2c, 0x2e, 0x30, 0xca, 0x59, 0xc3, 0x28, 0x6e, 0xc2, 0x1d, 0x6d, + 0xbc, 0xa2, 0x07, 0x9e, 0x9f, 0xe5, 0x3c, 0x27, 0x5a, 0x3c, 0x83, 0xb0, 0x5d, 0x03, 0x01, 0xf7, + 0xe7, 0xb2, 0x07, 0x9e, 0x3f, 0xc7, 0x79, 0x22, 0x4e, 0x2b, 0xa6, 0x94, 0x70, 0xbc, 0x04, 0x63, + 0xd7, 0xb0, 0xb3, 0x65, 0xb9, 0xfc, 0xe0, 0xa8, 0x07, 0x76, 0x9f, 0xe3, 0xec, 0x46, 0x39, 0x21, + 0x3d, 0x49, 0x22, 0xbc, 0x1e, 0x87, 0xd4, 0xb6, 0xaa, 0xe1, 0x1e, 0x58, 0xbc, 0xc8, 0x59, 0x0c, + 0x12, 0x7c, 0x42, 0x3a, 0x0b, 0x43, 0x35, 0x8b, 0xaf, 0x5a, 0xdd, 0xc9, 0x3f, 0xcf, 0xc9, 0x33, + 0x82, 0x86, 0xb3, 0xb0, 0x2d, 0xbb, 0x61, 0x90, 0x25, 0xad, 0x3b, 0x8b, 0xbf, 0x2a, 0x58, 0x08, + 0x1a, 0xce, 0xa2, 0x0f, 0xb3, 0xbe, 0x24, 0x58, 0xb8, 0x21, 0x7b, 0x3e, 0x01, 0x19, 0xcb, 0x34, + 0xf6, 0x2c, 0xb3, 0x17, 0x21, 0xbe, 0xc0, 0x39, 0x00, 0x27, 0x21, 0x0c, 0xce, 0x43, 0xba, 0xd7, + 0x89, 0xf8, 0xeb, 0xdf, 0x17, 0xe1, 0x21, 0x66, 0x60, 0x01, 0x46, 0x45, 0x82, 0xd2, 0x2d, 0xb3, + 0x07, 0x16, 0x7f, 0x83, 0xb3, 0x18, 0x09, 0x91, 0x71, 0x35, 0x3c, 0xec, 0x7a, 0x35, 0xdc, 0x0b, + 0x93, 0x2f, 0x0b, 0x35, 0x38, 0x09, 0x37, 0xe5, 0x16, 0x36, 0xb5, 0x9d, 0xde, 0x38, 0xfc, 0xbc, + 0x30, 0xa5, 0xa0, 0x21, 0x2c, 0xe6, 0x60, 0xb8, 0xae, 0x3a, 0xee, 0x8e, 0x6a, 0xf4, 0x34, 0x1d, + 0x7f, 0x93, 0xf3, 0x18, 0xf2, 0x89, 0xb8, 0x45, 0x1a, 0x66, 0x3f, 0x6c, 0xbe, 0x22, 0x2c, 0x12, + 0x22, 0xe3, 0xa1, 0xe7, 0x7a, 0xf4, 0x94, 0xad, 0x1f, 0x6e, 0xbf, 0x20, 0x42, 0x8f, 0xd1, 0x2e, + 0x87, 0x39, 0x9e, 0x87, 0xb4, 0xab, 0xdf, 0xe8, 0x89, 0xcd, 0xdf, 0x12, 0x33, 0x4d, 0x09, 0x08, + 0xf1, 0xfb, 0xe1, 0x48, 0xdb, 0x65, 0xa2, 0x07, 0x66, 0x7f, 0x9b, 0x33, 0x9b, 0x6c, 0xb3, 0x54, + 0xf0, 0x94, 0xd0, 0x2f, 0xcb, 0xbf, 0x23, 0x52, 0x02, 0x6e, 0xe2, 0xb5, 0x46, 0xf6, 0x11, 0xae, + 0xba, 0xdd, 0x9f, 0xd5, 0x7e, 0x51, 0x58, 0x8d, 0xd1, 0x46, 0xac, 0xb6, 0x01, 0x93, 0x9c, 0x63, + 0x7f, 0xf3, 0xfa, 0x4b, 0x22, 0xb1, 0x32, 0xea, 0xcd, 0xe8, 0xec, 0x7e, 0x10, 0xf2, 0xbe, 0x39, + 0x45, 0xc1, 0xea, 0x56, 0xea, 0xaa, 0xdd, 0x03, 0xe7, 0x5f, 0xe6, 0x9c, 0x45, 0xc6, 0xf7, 0x2b, + 0x5e, 0x77, 0x59, 0xb5, 0x09, 0xf3, 0xa7, 0x21, 0x27, 0x98, 0x37, 0x4c, 0x07, 0x6b, 0x56, 0xcd, + 0xd4, 0x6f, 0xe0, 0x6a, 0x0f, 0xac, 0xff, 0x6e, 0xd3, 0x54, 0x6d, 0x86, 0xc8, 0x09, 0xe7, 0x45, + 0xc8, 0xfa, 0xb5, 0x4a, 0x45, 0xaf, 0xdb, 0x96, 0xe3, 0x75, 0xe1, 0xf8, 0x55, 0x31, 0x53, 0x3e, + 0xdd, 0x22, 0x25, 0x2b, 0x96, 0x61, 0x84, 0x36, 0x7b, 0x75, 0xc9, 0x5f, 0xe1, 0x8c, 0x86, 0x03, + 0x2a, 0x9e, 0x38, 0x34, 0xab, 0x6e, 0xab, 0x4e, 0x2f, 0xf9, 0xef, 0xef, 0x89, 0xc4, 0xc1, 0x49, + 0x78, 0xe2, 0xf0, 0xf6, 0x6c, 0x4c, 0x56, 0xfb, 0x1e, 0x38, 0xfc, 0xaa, 0x48, 0x1c, 0x82, 0x86, + 0xb3, 0x10, 0x05, 0x43, 0x0f, 0x2c, 0xfe, 0xbe, 0x60, 0x21, 0x68, 0x08, 0x8b, 0x27, 0x83, 0x85, + 0xd6, 0xc1, 0x35, 0xdd, 0xf5, 0x1c, 0x56, 0x26, 0xef, 0xcf, 0xea, 0x1f, 0x7c, 0x3f, 0x5a, 0x84, + 0x29, 0x21, 0x52, 0x92, 0x89, 0xf8, 0xb1, 0x2b, 0xdd, 0x45, 0x75, 0x17, 0xec, 0xd7, 0x44, 0x26, + 0x0a, 0x91, 0x11, 0xd9, 0x42, 0x15, 0x22, 0x31, 0xbb, 0x46, 0xf6, 0x0e, 0x3d, 0xb0, 0xfb, 0x87, + 0x4d, 0xc2, 0xad, 0x0b, 0x5a, 0xc2, 0x33, 0x54, 0xff, 0x34, 0xcc, 0xab, 0x78, 0xaf, 0x27, 0xef, + 0xfc, 0xf5, 0xa6, 0xfa, 0x67, 0x93, 0x51, 0xb2, 0x1c, 0x32, 0xda, 0x54, 0x4f, 0xa1, 0x6e, 0xf7, + 0x87, 0x72, 0x3f, 0xf6, 0x1a, 0xd7, 0x37, 0x5a, 0x4e, 0x15, 0x97, 0x88, 0x93, 0x47, 0x8b, 0x9e, + 0xee, 0xcc, 0x3e, 0xfa, 0x9a, 0xef, 0xe7, 0x91, 0x9a, 0xa7, 0x78, 0x01, 0x86, 0x23, 0x05, 0x4f, + 0x77, 0x56, 0x1f, 0xe3, 0xac, 0x86, 0xc2, 0xf5, 0x4e, 0xf1, 0x51, 0x48, 0x90, 0xe2, 0xa5, 0x3b, + 0xf9, 0xc7, 0x39, 0x39, 0x45, 0x2f, 0xbe, 0x07, 0x52, 0xa2, 0x68, 0xe9, 0x4e, 0xfa, 0x09, 0x4e, + 0xea, 0x93, 0x10, 0x72, 0x51, 0xb0, 0x74, 0x27, 0xff, 0xf3, 0x82, 0x5c, 0x90, 0x10, 0xf2, 0xde, + 0x4d, 0xf8, 0xb5, 0xbf, 0x90, 0xe0, 0x8b, 0x8e, 0xb0, 0xdd, 0x79, 0x18, 0xe4, 0x95, 0x4a, 0x77, + 0xea, 0x4f, 0xf2, 0xc1, 0x05, 0x45, 0xf1, 0x31, 0x48, 0xf6, 0x68, 0xf0, 0x9f, 0xe4, 0xa4, 0x0c, + 0xbf, 0x38, 0x07, 0x99, 0x50, 0x75, 0xd2, 0x9d, 0xfc, 0x2f, 0x71, 0xf2, 0x30, 0x15, 0x11, 0x9d, + 0x57, 0x27, 0xdd, 0x19, 0x7c, 0x4a, 0x88, 0xce, 0x29, 0x88, 0xd9, 0x44, 0x61, 0xd2, 0x9d, 0xfa, + 0xd3, 0xc2, 0xea, 0x82, 0xa4, 0xf8, 0x04, 0xa4, 0xfd, 0xc5, 0xa6, 0x3b, 0xfd, 0x4f, 0x71, 0xfa, + 0x80, 0x86, 0x58, 0x20, 0xb4, 0xd8, 0x75, 0x67, 0xf1, 0xd3, 0xc2, 0x02, 0x21, 0x2a, 0x12, 0x46, + 0xcd, 0x05, 0x4c, 0x77, 0x4e, 0x3f, 0x23, 0xc2, 0xa8, 0xa9, 0x7e, 0x21, 0xb3, 0x49, 0x73, 0x7e, + 0x77, 0x16, 0x3f, 0x2b, 0x66, 0x93, 0xe2, 0x13, 0x31, 0x9a, 0x2b, 0x82, 0xee, 0x3c, 0xfe, 0x8a, + 0x10, 0xa3, 0xa9, 0x20, 0x28, 0xae, 0x01, 0x6a, 0xad, 0x06, 0xba, 0xf3, 0x7b, 0x81, 0xf3, 0x1b, + 0x6b, 0x29, 0x06, 0x8a, 0x4f, 0xc1, 0x64, 0xfb, 0x4a, 0xa0, 0x3b, 0xd7, 0xcf, 0xbc, 0xd6, 0xb4, + 0x77, 0x0b, 0x17, 0x02, 0xc5, 0x8d, 0x60, 0x49, 0x09, 0x57, 0x01, 0xdd, 0xd9, 0x7e, 0xf6, 0xb5, + 0x68, 0xe2, 0x0e, 0x17, 0x01, 0xc5, 0x59, 0x80, 0x60, 0x01, 0xee, 0xce, 0xeb, 0x73, 0x9c, 0x57, + 0x88, 0x88, 0x84, 0x06, 0x5f, 0x7f, 0xbb, 0xd3, 0xbf, 0x28, 0x42, 0x83, 0x53, 0x90, 0xd0, 0x10, + 0x4b, 0x6f, 0x77, 0xea, 0xcf, 0x8b, 0xd0, 0x10, 0x24, 0xc4, 0xb3, 0x43, 0xab, 0x5b, 0x77, 0x0e, + 0x5f, 0x10, 0x9e, 0x1d, 0xa2, 0x2a, 0xae, 0xc0, 0x58, 0xcb, 0x82, 0xd8, 0x9d, 0xd5, 0x17, 0x39, + 0xab, 0x6c, 0xf3, 0x7a, 0x18, 0x5e, 0xbc, 0xf8, 0x62, 0xd8, 0x9d, 0xdb, 0x97, 0x9a, 0x16, 0x2f, + 0xbe, 0x16, 0x16, 0xcf, 0x43, 0xca, 0x6c, 0x18, 0x06, 0x09, 0x1e, 0xb4, 0xff, 0x9d, 0xbf, 0xdc, + 0x1f, 0xbe, 0xce, 0xad, 0x23, 0x08, 0x8a, 0x8f, 0x42, 0x12, 0xd7, 0xb7, 0x70, 0xb5, 0x1b, 0xe5, + 0xf7, 0x5e, 0x17, 0x09, 0x93, 0x60, 0x17, 0x9f, 0x00, 0x60, 0x47, 0x23, 0xf4, 0xf1, 0x60, 0x17, + 0xda, 0xff, 0xfa, 0x3a, 0xbf, 0x8d, 0x13, 0x90, 0x04, 0x0c, 0xd8, 0xdd, 0x9e, 0xfd, 0x19, 0x7c, + 0x3f, 0xca, 0x80, 0xce, 0xc8, 0xe3, 0x30, 0xf8, 0x8c, 0x6b, 0x99, 0x9e, 0x5a, 0xeb, 0x46, 0xfd, + 0xdf, 0x38, 0xb5, 0xc0, 0x27, 0x06, 0xab, 0x5b, 0x0e, 0xf6, 0xd4, 0x9a, 0xdb, 0x8d, 0xf6, 0xbf, + 0x73, 0x5a, 0x9f, 0x80, 0x10, 0x6b, 0xaa, 0xeb, 0xf5, 0xa2, 0xf7, 0x1f, 0x09, 0x62, 0x41, 0x40, + 0x84, 0x26, 0xbf, 0xaf, 0xe2, 0xbd, 0x6e, 0xb4, 0x7f, 0x2c, 0x84, 0xe6, 0xf8, 0xc5, 0xf7, 0x40, + 0x9a, 0xfc, 0x64, 0x57, 0xec, 0xba, 0x10, 0xff, 0x0f, 0x4e, 0x1c, 0x50, 0x90, 0x91, 0x5d, 0xaf, + 0xea, 0xe9, 0xdd, 0x8d, 0x7d, 0x8b, 0xcf, 0xb4, 0xc0, 0x2f, 0xce, 0x42, 0xc6, 0xf5, 0xaa, 0xd5, + 0x06, 0xaf, 0x4f, 0xbb, 0x90, 0xff, 0xcf, 0xd7, 0xfd, 0x23, 0x0b, 0x9f, 0x86, 0xcc, 0xf6, 0xf5, + 0xab, 0x9e, 0x6d, 0xd1, 0x47, 0x20, 0xdd, 0x38, 0xbc, 0xc6, 0x39, 0x84, 0x48, 0x8a, 0x73, 0x30, + 0x44, 0x74, 0x71, 0xb0, 0x8d, 0xe9, 0xf3, 0xaa, 0x2e, 0x2c, 0xfe, 0x17, 0x37, 0x40, 0x84, 0xa8, + 0xf4, 0xa3, 0xdf, 0x78, 0x75, 0x4a, 0x7a, 0xf9, 0xd5, 0x29, 0xe9, 0x0f, 0x5e, 0x9d, 0x92, 0x3e, + 0xfd, 0xed, 0xa9, 0x43, 0x2f, 0x7f, 0x7b, 0xea, 0xd0, 0xef, 0x7d, 0x7b, 0xea, 0x50, 0xfb, 0x63, + 0x63, 0x58, 0xb0, 0x16, 0x2c, 0x76, 0x60, 0xfc, 0x01, 0x39, 0x72, 0x5c, 0x5c, 0xb3, 0x82, 0xd3, + 0x5a, 0x7f, 0x93, 0x03, 0x1f, 0x8b, 0xc3, 0x94, 0x66, 0xb9, 0x75, 0xcb, 0x9d, 0xd9, 0x52, 0x5d, + 0x3c, 0x73, 0xed, 0xe1, 0x2d, 0xec, 0xa9, 0x0f, 0xcf, 0x68, 0x96, 0x6e, 0xf2, 0x63, 0xdf, 0x71, + 0xd6, 0x5f, 0x20, 0xfd, 0x05, 0xde, 0x9f, 0x6f, 0x7b, 0x42, 0x2c, 0x2f, 0x40, 0x62, 0xce, 0xd2, + 0x4d, 0x34, 0x01, 0xc9, 0x2a, 0x36, 0xad, 0x3a, 0xbf, 0x01, 0xc6, 0x1a, 0xe8, 0x2e, 0x18, 0x50, + 0xeb, 0x56, 0xc3, 0xf4, 0xd8, 0x71, 0x79, 0x29, 0xf3, 0x8d, 0x9b, 0xd3, 0x87, 0x7e, 0xff, 0xe6, + 0x74, 0x7c, 0xd1, 0xf4, 0x14, 0xde, 0x55, 0x4c, 0x7c, 0xf7, 0xa5, 0x69, 0x49, 0xbe, 0x04, 0x83, + 0xf3, 0x58, 0x3b, 0x08, 0xaf, 0x79, 0xac, 0x35, 0xf1, 0xba, 0x0f, 0x52, 0x8b, 0xa6, 0xc7, 0xee, + 0xe8, 0x1d, 0x87, 0xb8, 0x6e, 0xb2, 0x5b, 0x1f, 0x4d, 0xe3, 0x13, 0x38, 0x41, 0x9d, 0xc7, 0x9a, + 0x8f, 0x5a, 0xc5, 0x5a, 0x33, 0x2a, 0x61, 0x4f, 0xe0, 0xa5, 0xf9, 0xdf, 0xfb, 0x4f, 0x53, 0x87, + 0x9e, 0x7b, 0x75, 0xea, 0x50, 0xa7, 0xf9, 0x89, 0x98, 0x9f, 0x9b, 0x98, 0xfd, 0x79, 0xd0, 0xad, + 0x5e, 0x9d, 0x21, 0xa1, 0xe5, 0x6e, 0x0d, 0x50, 0xbb, 0x3d, 0x02, 0x9f, 0x8e, 0xc1, 0x74, 0xf3, + 0x91, 0x3a, 0xf1, 0x63, 0xd7, 0x53, 0xeb, 0x76, 0xa7, 0x17, 0xa2, 0xce, 0x43, 0x7a, 0x43, 0xe0, + 0xa0, 0x1c, 0x0c, 0xba, 0x58, 0xb3, 0xcc, 0xaa, 0x4b, 0x45, 0x8e, 0x2b, 0xa2, 0x49, 0x0c, 0x68, + 0xaa, 0xa6, 0xe5, 0xf2, 0xfb, 0x9a, 0xac, 0x51, 0xfa, 0xcb, 0x52, 0x7f, 0x8e, 0x35, 0xe2, 0x0f, + 0x45, 0xcd, 0xb3, 0x26, 0x7d, 0xe0, 0xfe, 0xfd, 0x9e, 0x46, 0x50, 0xf5, 0x02, 0x15, 0x42, 0x8f, + 0x1e, 0xa6, 0x9a, 0x1f, 0x3d, 0x3c, 0x85, 0x0d, 0xe3, 0xb2, 0x69, 0x5d, 0x37, 0x37, 0x22, 0x26, + 0xf9, 0x5d, 0x09, 0x4e, 0xd0, 0x8b, 0xe8, 0x4e, 0x5d, 0x37, 0xbd, 0x19, 0x43, 0xdf, 0x72, 0x67, + 0xb6, 0x74, 0xcf, 0x65, 0x96, 0xe3, 0x36, 0x99, 0x08, 0x30, 0x0a, 0x04, 0xa3, 0x40, 0x30, 0xe4, + 0x33, 0x90, 0x2a, 0xe9, 0xde, 0xac, 0xe3, 0xa8, 0x7b, 0x08, 0x41, 0x82, 0xc0, 0xb8, 0x51, 0xe8, + 0x6f, 0x62, 0x11, 0x6c, 0xe0, 0xba, 0x4b, 0x1f, 0x7a, 0x25, 0x14, 0xd6, 0x28, 0x6d, 0x76, 0x9c, + 0xc9, 0xf3, 0x21, 0x4d, 0x43, 0x22, 0x85, 0x7e, 0xb2, 0x48, 0x68, 0x27, 0xae, 0xaf, 0xcf, 0x57, + 0x12, 0x70, 0x3c, 0x84, 0xa0, 0x39, 0x7b, 0xb6, 0x47, 0x43, 0xd2, 0xda, 0xe6, 0xca, 0x8c, 0x85, + 0x94, 0x61, 0xdd, 0x1d, 0xc2, 0x6c, 0x1b, 0x92, 0x6b, 0x84, 0x8e, 0x28, 0xe2, 0x59, 0x9e, 0x6a, + 0x70, 0xed, 0x58, 0x83, 0x40, 0xd9, 0x65, 0xfc, 0x18, 0x83, 0xea, 0xe2, 0x1e, 0xbe, 0x81, 0xd5, + 0x6d, 0x76, 0xf9, 0x31, 0x4e, 0x9f, 0x7d, 0xa6, 0x08, 0x80, 0xde, 0x73, 0x9c, 0x80, 0xa4, 0xda, + 0x60, 0x8f, 0xed, 0xe2, 0x27, 0x87, 0x14, 0xd6, 0x90, 0x2f, 0xc3, 0x20, 0x7f, 0x54, 0x80, 0xb2, + 0x10, 0xbf, 0x8a, 0xf7, 0xe8, 0x38, 0x43, 0x0a, 0xf9, 0x89, 0x0a, 0x90, 0xa4, 0xc2, 0xf3, 0x5b, + 0xdd, 0xb9, 0x42, 0x8b, 0xf4, 0x05, 0x2a, 0xa4, 0xc2, 0xd0, 0xe4, 0x4b, 0x90, 0x9a, 0xb7, 0xea, + 0xba, 0x69, 0x45, 0xb9, 0xa5, 0x19, 0x37, 0x2a, 0xb3, 0xdd, 0xe0, 0xe1, 0xac, 0xb0, 0x06, 0x9a, + 0x84, 0x01, 0x76, 0x19, 0x96, 0x3f, 0x7a, 0xe4, 0x2d, 0x79, 0x0e, 0x06, 0x29, 0xef, 0x55, 0x9b, + 0xcc, 0xaf, 0x7f, 0x11, 0x29, 0xcd, 0xdf, 0x78, 0xe0, 0xec, 0x63, 0x81, 0xb0, 0x08, 0x12, 0x55, + 0xd5, 0x53, 0xb9, 0xde, 0xf4, 0xb7, 0xfc, 0x5e, 0x48, 0x71, 0x26, 0x2e, 0x3a, 0x0d, 0x71, 0xcb, + 0x76, 0xf9, 0xc3, 0xc3, 0x7c, 0x27, 0x55, 0x56, 0xed, 0x52, 0x82, 0x24, 0x02, 0x85, 0x20, 0x97, + 0x94, 0x8e, 0xfe, 0x72, 0xae, 0x7f, 0x7f, 0x61, 0xc3, 0xf8, 0xce, 0xf2, 0x85, 0x18, 0x4c, 0x85, + 0x7a, 0xaf, 0x61, 0x87, 0xd4, 0xcb, 0x11, 0xd7, 0x47, 0x21, 0x21, 0x79, 0x7f, 0x07, 0x77, 0x79, + 0x0f, 0xc4, 0x67, 0x6d, 0x1b, 0xe5, 0x21, 0xc5, 0x1e, 0x12, 0x5a, 0xcc, 0x5f, 0x12, 0x8a, 0xdf, + 0x26, 0x7d, 0xae, 0xb5, 0xed, 0x5d, 0x57, 0x1d, 0xff, 0x35, 0x10, 0xd1, 0x96, 0x1f, 0x87, 0xf4, + 0x9c, 0x65, 0xba, 0xd8, 0x74, 0x1b, 0x34, 0x74, 0xb6, 0x0c, 0x4b, 0xbb, 0xca, 0x39, 0xb0, 0x06, + 0x31, 0xb8, 0x6a, 0xdb, 0x94, 0x32, 0xa1, 0x90, 0x9f, 0x2c, 0xf5, 0x96, 0xd6, 0x3b, 0x9a, 0xe8, + 0xf1, 0xfe, 0x4d, 0xc4, 0x95, 0xf4, 0x6d, 0xf4, 0xeb, 0x47, 0xe0, 0x58, 0x98, 0x94, 0x65, 0x9c, + 0x90, 0x85, 0xb2, 0x21, 0x0b, 0x51, 0x78, 0x7b, 0xfb, 0xe4, 0xbb, 0x65, 0xde, 0x7c, 0xd7, 0x3c, + 0x94, 0xdf, 0x3f, 0xb2, 0xf3, 0x5d, 0xe6, 0x52, 0x7e, 0x1c, 0x86, 0xd7, 0x54, 0xc7, 0x5b, 0xc7, + 0xde, 0x45, 0xac, 0x56, 0xb1, 0x13, 0x0d, 0xec, 0x61, 0x11, 0xd8, 0x08, 0x12, 0x34, 0x7a, 0x99, + 0x63, 0xd3, 0xdf, 0xf2, 0x0e, 0x24, 0xe8, 0x45, 0x03, 0x3f, 0xe8, 0x39, 0x05, 0x0b, 0x7a, 0x32, + 0x5d, 0x7b, 0x1e, 0x76, 0x39, 0x09, 0x6b, 0xa0, 0x33, 0x22, 0x74, 0xe3, 0xfb, 0x87, 0x2e, 0xf7, + 0x76, 0x1e, 0xc0, 0x06, 0x0c, 0x96, 0xc8, 0x6c, 0x2f, 0xce, 0xfb, 0x82, 0x48, 0x81, 0x20, 0x68, + 0x19, 0x46, 0x6d, 0xd5, 0xf1, 0xe8, 0x0d, 0xcb, 0x1d, 0xaa, 0x05, 0xcf, 0x0c, 0xd3, 0x85, 0xe6, + 0x79, 0x28, 0x44, 0x94, 0xe5, 0xa3, 0x0c, 0xdb, 0x61, 0xa0, 0xfc, 0x9f, 0x13, 0x30, 0xc0, 0x8d, + 0xf1, 0x1e, 0x18, 0xe4, 0x46, 0xa3, 0x03, 0x66, 0x4e, 0x1f, 0x2f, 0xb4, 0xfa, 0x7e, 0xc1, 0xf7, + 0x51, 0xce, 0x4f, 0xd0, 0xa0, 0x7b, 0x20, 0xa5, 0xed, 0xa8, 0xba, 0x59, 0xd1, 0xab, 0xa2, 0x58, + 0x78, 0xf5, 0xe6, 0xf4, 0xe0, 0x1c, 0x81, 0x2d, 0xce, 0x2b, 0x83, 0xb4, 0x73, 0xb1, 0x4a, 0x92, + 0xcd, 0x0e, 0xd6, 0x6b, 0x3b, 0x2c, 0xd9, 0xc4, 0x15, 0xde, 0x42, 0xe7, 0x20, 0x41, 0x1c, 0x82, + 0x5f, 0xc0, 0xcf, 0xb7, 0x14, 0x71, 0xfe, 0xc2, 0x58, 0x4a, 0x91, 0x81, 0x3f, 0xfd, 0xad, 0x69, + 0x49, 0xa1, 0x14, 0x68, 0x0e, 0x86, 0x0d, 0xd5, 0xf5, 0x2a, 0x34, 0x48, 0xc8, 0xf0, 0x49, 0xca, + 0xe2, 0x48, 0xab, 0x41, 0xb8, 0x61, 0xb9, 0xe8, 0x19, 0x42, 0xc5, 0x40, 0x55, 0x74, 0x12, 0xb2, + 0x94, 0x89, 0x66, 0xd5, 0xeb, 0xba, 0xc7, 0xd2, 0xf7, 0x00, 0xb5, 0xfb, 0x08, 0x81, 0xcf, 0x51, + 0x30, 0x4d, 0xe2, 0x47, 0x21, 0x4d, 0x6f, 0xfc, 0x52, 0x14, 0x76, 0xbb, 0x25, 0x45, 0x00, 0xb4, + 0xf3, 0x5e, 0x18, 0xbd, 0xa6, 0x1a, 0x7a, 0x55, 0xf5, 0x2c, 0xc7, 0x65, 0x28, 0x29, 0xc6, 0x25, + 0x00, 0x53, 0xc4, 0x87, 0x60, 0xc2, 0xc4, 0xbb, 0xf4, 0xbe, 0x4d, 0x04, 0x3b, 0x4d, 0xb1, 0x11, + 0xe9, 0xbb, 0x12, 0xa5, 0x78, 0x17, 0x8c, 0x68, 0xc2, 0xf8, 0x0c, 0x17, 0x28, 0xee, 0xb0, 0x0f, + 0xa5, 0x68, 0x47, 0x20, 0xa5, 0xda, 0x36, 0x43, 0xc8, 0x50, 0x84, 0x41, 0xd5, 0xb6, 0x69, 0xd7, + 0x29, 0x18, 0xa3, 0x3a, 0x3a, 0xd8, 0x6d, 0x18, 0x1e, 0x67, 0x32, 0x44, 0x71, 0x46, 0x49, 0x87, + 0xc2, 0xe0, 0x14, 0xf7, 0x2e, 0x18, 0xc6, 0xd7, 0xf4, 0x2a, 0x36, 0x35, 0xcc, 0xf0, 0x86, 0x29, + 0xde, 0x90, 0x00, 0x52, 0xa4, 0xfb, 0x20, 0x6b, 0x3b, 0x96, 0x6d, 0xb9, 0xd8, 0xa9, 0xa8, 0xd5, + 0xaa, 0x83, 0x5d, 0x37, 0x37, 0xc2, 0xf8, 0x09, 0xf8, 0x2c, 0x03, 0xcb, 0x0f, 0x40, 0x62, 0x5e, + 0xf5, 0x54, 0x92, 0xc3, 0xbc, 0x5d, 0xb6, 0x04, 0x0c, 0x29, 0xe4, 0x67, 0xdb, 0x70, 0xfb, 0x6e, + 0x0c, 0x12, 0x57, 0x2c, 0x0f, 0xa3, 0x47, 0x42, 0xeb, 0xce, 0x48, 0x3b, 0x1f, 0x5f, 0xd7, 0x6b, + 0x26, 0xae, 0x2e, 0xbb, 0xb5, 0xd0, 0xab, 0x78, 0x81, 0x8b, 0xc5, 0x22, 0x2e, 0x36, 0x01, 0x49, + 0xc7, 0x6a, 0x98, 0x55, 0x71, 0x59, 0x84, 0x36, 0x50, 0x19, 0x52, 0xbe, 0xe7, 0x24, 0xba, 0x79, + 0xce, 0x28, 0xf1, 0x1c, 0xe2, 0xd7, 0x1c, 0xa0, 0x0c, 0x6e, 0x71, 0x07, 0x2a, 0x41, 0xda, 0x4f, + 0x68, 0xdc, 0x03, 0x7b, 0x73, 0xe2, 0x80, 0x0c, 0xdd, 0x0f, 0x63, 0xbe, 0x3f, 0xf8, 0x06, 0x65, + 0x5e, 0x98, 0xf5, 0x3b, 0xb8, 0x45, 0x23, 0xae, 0xc6, 0x5f, 0x0b, 0x1c, 0xa4, 0x7a, 0x05, 0xae, + 0xc6, 0x5e, 0x0d, 0x3c, 0x06, 0x69, 0x57, 0xaf, 0x99, 0xaa, 0xd7, 0x70, 0x30, 0xf7, 0xc6, 0x00, + 0x20, 0xff, 0x54, 0x0c, 0x06, 0x98, 0x77, 0x87, 0xec, 0x26, 0xb5, 0xb7, 0x5b, 0xac, 0x93, 0xdd, + 0xe2, 0x07, 0xb7, 0xdb, 0x2c, 0x80, 0x2f, 0x8c, 0xcb, 0x5f, 0xeb, 0x3a, 0xda, 0xca, 0x88, 0x89, + 0xb8, 0xae, 0xd7, 0x78, 0xf0, 0x86, 0x88, 0x7c, 0x0f, 0x4a, 0x86, 0xf2, 0xe4, 0x79, 0x48, 0x6f, + 0xe9, 0x5e, 0x45, 0x25, 0xd5, 0x29, 0x35, 0x61, 0xe6, 0xf4, 0x54, 0xa1, 0x5d, 0x19, 0x5b, 0x10, + 0x35, 0xac, 0x92, 0xda, 0xe2, 0xbf, 0xe4, 0xff, 0x28, 0x91, 0xc5, 0x98, 0x0f, 0x88, 0x66, 0x61, + 0x58, 0x28, 0x5a, 0xd9, 0x36, 0xd4, 0x1a, 0x77, 0xc6, 0xe3, 0x1d, 0xb5, 0xbd, 0x60, 0xa8, 0x35, + 0x25, 0xc3, 0x15, 0x24, 0x8d, 0xf6, 0x13, 0x1b, 0xeb, 0x30, 0xb1, 0x11, 0x4f, 0x8a, 0x1f, 0xcc, + 0x93, 0x22, 0x73, 0x9e, 0x68, 0x9e, 0xf3, 0xaf, 0xc6, 0x68, 0x51, 0x66, 0x5b, 0xae, 0x6a, 0xbc, + 0x15, 0x21, 0x76, 0x14, 0xd2, 0xb6, 0x65, 0x54, 0x58, 0x0f, 0xbb, 0x95, 0x95, 0xb2, 0x2d, 0x43, + 0x69, 0xf1, 0xa3, 0xe4, 0x6d, 0x8a, 0xbf, 0x81, 0xdb, 0x60, 0xb5, 0xc1, 0x66, 0xab, 0x39, 0x30, + 0xc4, 0x4c, 0xc1, 0x17, 0xcc, 0x87, 0x88, 0x0d, 0xe8, 0x0a, 0x2c, 0xb5, 0x2e, 0xf0, 0x4c, 0x6c, + 0x86, 0xa9, 0x70, 0x3c, 0x42, 0xc1, 0xd6, 0x97, 0x76, 0xd5, 0x7c, 0xd8, 0xcf, 0x15, 0x8e, 0x27, + 0xff, 0x53, 0x09, 0xd2, 0x54, 0xd5, 0x65, 0xec, 0xa9, 0x11, 0x53, 0x49, 0x07, 0x37, 0xd5, 0x71, + 0x00, 0xc6, 0xc6, 0xd5, 0x6f, 0x60, 0x3e, 0x81, 0x69, 0x0a, 0x59, 0xd7, 0x6f, 0x60, 0x74, 0xd6, + 0xd7, 0x2b, 0xbe, 0xbf, 0x5e, 0x3c, 0x14, 0x85, 0x76, 0x77, 0xc0, 0x20, 0xfd, 0x2a, 0xc1, 0x2e, + 0xbb, 0x96, 0x18, 0xa7, 0xef, 0x2c, 0x6e, 0xec, 0xba, 0xf2, 0x33, 0x30, 0xb8, 0xb1, 0xcb, 0xb6, + 0x52, 0x47, 0x21, 0xed, 0x58, 0x16, 0x5f, 0x5f, 0x59, 0x5d, 0x93, 0x22, 0x00, 0xba, 0x9c, 0x88, + 0xed, 0x43, 0x2c, 0xd8, 0x3e, 0x04, 0xfb, 0x9f, 0x78, 0x4f, 0xfb, 0x9f, 0x53, 0xff, 0x4e, 0x82, + 0x4c, 0x28, 0x0c, 0xd1, 0xc3, 0x70, 0xb8, 0xb4, 0xb4, 0x3a, 0x77, 0xb9, 0xb2, 0x38, 0x5f, 0xb9, + 0xb0, 0x34, 0xbb, 0x10, 0x5c, 0xef, 0xcd, 0x4f, 0x3e, 0xff, 0xe2, 0x09, 0x14, 0xc2, 0xdd, 0x34, + 0xaf, 0x92, 0xfd, 0x31, 0x9a, 0x81, 0x89, 0x28, 0xc9, 0x6c, 0x69, 0xbd, 0xbc, 0xb2, 0x91, 0x95, + 0xf2, 0x87, 0x9f, 0x7f, 0xf1, 0xc4, 0x58, 0x88, 0x62, 0x76, 0xcb, 0xc5, 0xa6, 0xd7, 0x4a, 0x30, + 0xb7, 0xba, 0xbc, 0xbc, 0xb8, 0x91, 0x8d, 0xb5, 0x10, 0xf0, 0x44, 0x7b, 0x1f, 0x8c, 0x45, 0x09, + 0x56, 0x16, 0x97, 0xb2, 0xf1, 0x3c, 0x7a, 0xfe, 0xc5, 0x13, 0x23, 0x21, 0xec, 0x15, 0xdd, 0xc8, + 0xa7, 0x7e, 0xe2, 0x4b, 0x53, 0x87, 0x7e, 0xfe, 0xaf, 0x4d, 0x49, 0x44, 0xb3, 0xe1, 0x48, 0x28, + 0xa2, 0x07, 0xe0, 0x8e, 0xf5, 0xc5, 0x85, 0x95, 0xf2, 0x7c, 0x65, 0x79, 0x7d, 0xa1, 0xc2, 0xde, + 0x6b, 0xf6, 0xb5, 0x1b, 0x7d, 0xfe, 0xc5, 0x13, 0x19, 0xae, 0x52, 0x27, 0xec, 0x35, 0xa5, 0x7c, + 0x65, 0x75, 0xa3, 0x9c, 0x95, 0x18, 0xf6, 0x9a, 0x83, 0xaf, 0x59, 0x1e, 0xfb, 0x6c, 0xc9, 0x43, + 0x70, 0xa4, 0x0d, 0xb6, 0xaf, 0xd8, 0xd8, 0xf3, 0x2f, 0x9e, 0x18, 0x5e, 0x73, 0x30, 0x73, 0x53, + 0x4a, 0x51, 0x80, 0x5c, 0x2b, 0xc5, 0xea, 0xda, 0xea, 0xfa, 0xec, 0x52, 0xf6, 0x44, 0x3e, 0xfb, + 0xfc, 0x8b, 0x27, 0x86, 0x44, 0xce, 0x21, 0xf8, 0x81, 0x66, 0xa5, 0x27, 0x3b, 0xee, 0x5f, 0x1e, + 0xeb, 0x7f, 0xff, 0x12, 0x3d, 0xf1, 0xf9, 0x8b, 0x31, 0x98, 0x6a, 0xb9, 0x44, 0xc9, 0x8f, 0x1e, + 0x3b, 0x1d, 0xf8, 0x14, 0x21, 0x35, 0x2f, 0x4e, 0x34, 0xfb, 0x3d, 0xef, 0xf9, 0xd9, 0x3e, 0xcf, + 0x7b, 0x86, 0xc5, 0x48, 0xe2, 0xb8, 0xe7, 0x54, 0xf7, 0xe3, 0x1e, 0x21, 0xff, 0x01, 0x4e, 0x7b, + 0x3e, 0xfe, 0x30, 0xdc, 0xcd, 0x0f, 0xc9, 0x5c, 0x4f, 0xbd, 0xaa, 0x9b, 0x35, 0xff, 0x28, 0x92, + 0xb7, 0xb9, 0x51, 0x26, 0xf9, 0x69, 0xa4, 0x80, 0xee, 0x7b, 0x20, 0x99, 0xdf, 0x77, 0x83, 0xd8, + 0x7d, 0xe3, 0xd7, 0x65, 0x86, 0xf2, 0x5d, 0x8e, 0x4e, 0xe5, 0x4f, 0x4a, 0x30, 0x72, 0x51, 0x77, + 0x3d, 0xcb, 0xd1, 0x35, 0xd5, 0xa0, 0xb7, 0x95, 0xcf, 0xf6, 0x9a, 0x9b, 0x9b, 0x72, 0xd8, 0x13, + 0x30, 0x70, 0x4d, 0x35, 0x5c, 0xec, 0xf1, 0xcb, 0xfa, 0x77, 0x16, 0xda, 0x1b, 0xa2, 0xe0, 0x17, + 0xe7, 0x82, 0x01, 0x23, 0x93, 0x7f, 0x31, 0x06, 0xa3, 0x34, 0xca, 0x5d, 0xf6, 0x39, 0x0d, 0xb2, + 0x11, 0x2c, 0x41, 0xc2, 0x51, 0x3d, 0x7e, 0x78, 0x52, 0x2a, 0xf0, 0x43, 0xce, 0x7b, 0xba, 0x1f, + 0x5c, 0x16, 0xe6, 0xb1, 0xa6, 0x50, 0x5a, 0xf4, 0x23, 0x90, 0xaa, 0xab, 0xbb, 0x15, 0xca, 0x87, + 0x6d, 0xaf, 0x66, 0xfb, 0xe3, 0x73, 0xeb, 0xe6, 0xf4, 0xe8, 0x9e, 0x5a, 0x37, 0x8a, 0xb2, 0xe0, + 0x23, 0x2b, 0x83, 0x75, 0x75, 0x97, 0x88, 0x88, 0x6c, 0x18, 0x25, 0x50, 0x6d, 0x47, 0x35, 0x6b, + 0x98, 0x0d, 0x42, 0x8f, 0x82, 0x4a, 0x17, 0xfb, 0x1e, 0x64, 0x32, 0x18, 0x24, 0xc4, 0x4e, 0x56, + 0x86, 0xeb, 0xea, 0xee, 0x1c, 0x05, 0x90, 0x11, 0x8b, 0xa9, 0x17, 0x5e, 0x9a, 0x3e, 0x44, 0x0f, + 0x8e, 0x5f, 0x91, 0x00, 0x02, 0x8b, 0xa1, 0x1f, 0x81, 0xac, 0xe6, 0xb7, 0x28, 0xad, 0xcb, 0xe7, + 0xf0, 0xde, 0x4e, 0x73, 0xd1, 0x64, 0x6f, 0xb6, 0xb6, 0xbf, 0x7c, 0x73, 0x5a, 0x52, 0x46, 0xb5, + 0xa6, 0xa9, 0xf8, 0x20, 0x64, 0x1a, 0x76, 0x55, 0xf5, 0x70, 0x85, 0x6e, 0x36, 0x63, 0x5d, 0xeb, + 0x84, 0x29, 0xc2, 0xeb, 0xd6, 0xcd, 0x69, 0xc4, 0xd4, 0x0a, 0x11, 0xcb, 0xb4, 0x7a, 0x00, 0x06, + 0x21, 0x04, 0x21, 0x9d, 0x7e, 0x47, 0x82, 0xcc, 0x7c, 0xe8, 0xd6, 0x40, 0x0e, 0x06, 0xeb, 0x96, + 0xa9, 0x5f, 0xe5, 0xfe, 0x98, 0x56, 0x44, 0x13, 0xe5, 0x21, 0xc5, 0x5e, 0xe0, 0xf0, 0xf6, 0xc4, + 0x91, 0x90, 0x68, 0x13, 0xaa, 0xeb, 0x78, 0xcb, 0xd5, 0xc5, 0x6c, 0x28, 0xa2, 0x89, 0x2e, 0x40, + 0xd6, 0xc5, 0x5a, 0xc3, 0xd1, 0xbd, 0xbd, 0x8a, 0x66, 0x99, 0x9e, 0xaa, 0x79, 0xec, 0x55, 0x80, + 0xd2, 0xd1, 0x5b, 0x37, 0xa7, 0xef, 0x60, 0xb2, 0x36, 0x63, 0xc8, 0xca, 0xa8, 0x00, 0xcd, 0x31, + 0x08, 0x19, 0xa1, 0x8a, 0x3d, 0x55, 0x37, 0x5c, 0x5a, 0x7a, 0xa5, 0x15, 0xd1, 0x0c, 0xe9, 0xf2, + 0x8f, 0x07, 0x21, 0xed, 0x7b, 0x3b, 0xba, 0x0e, 0x59, 0xcb, 0xc6, 0x4e, 0xa4, 0x90, 0xa5, 0xeb, + 0x78, 0x69, 0x29, 0x18, 0xb9, 0x19, 0x43, 0xfe, 0xff, 0x37, 0xa7, 0x1f, 0xec, 0xc1, 0x83, 0xae, + 0xa8, 0x06, 0x2f, 0x82, 0x95, 0x51, 0xc1, 0x43, 0x54, 0xc5, 0x17, 0x88, 0x5f, 0x88, 0xed, 0xaf, + 0xdd, 0xd8, 0x12, 0x47, 0x8f, 0x11, 0x95, 0x9b, 0x31, 0x64, 0xe2, 0x01, 0x1c, 0xb4, 0x46, 0x21, + 0xa4, 0x72, 0x7d, 0x46, 0xd5, 0x0d, 0xf1, 0x56, 0x9b, 0xc2, 0x5b, 0x68, 0x11, 0x06, 0x5c, 0x4f, + 0xf5, 0x1a, 0xac, 0x78, 0x49, 0x96, 0x1e, 0xee, 0x51, 0xe6, 0x92, 0x65, 0x56, 0xd7, 0x29, 0xa1, + 0xc2, 0x19, 0xa0, 0x0b, 0x30, 0xe0, 0x59, 0x57, 0xb1, 0xc9, 0x8d, 0xda, 0x57, 0xc4, 0xd3, 0x87, + 0x34, 0x8c, 0x1a, 0x79, 0x90, 0xad, 0x62, 0x03, 0xd7, 0xa8, 0x29, 0xdd, 0x1d, 0x95, 0x6c, 0x90, + 0xe8, 0x97, 0x65, 0x4a, 0x8b, 0x7d, 0x87, 0x25, 0x37, 0x50, 0x33, 0x3f, 0x59, 0x19, 0xf5, 0x41, + 0xeb, 0x14, 0x82, 0x2e, 0x47, 0x2e, 0xbc, 0xf0, 0xcf, 0x2f, 0xdd, 0xd5, 0x29, 0xf6, 0x42, 0x5e, + 0x2e, 0x8e, 0x55, 0xc2, 0xd7, 0x65, 0x2e, 0x40, 0xb6, 0x61, 0x6e, 0x59, 0x26, 0x7d, 0x13, 0x85, + 0xef, 0x18, 0xc8, 0x16, 0x34, 0x1e, 0x9e, 0xb5, 0x66, 0x0c, 0x59, 0x19, 0xf5, 0x41, 0x17, 0xd9, + 0xbe, 0xa2, 0x0a, 0x23, 0x01, 0x16, 0x0d, 0xdd, 0x74, 0xd7, 0xd0, 0xbd, 0x93, 0x87, 0xee, 0xe1, + 0xe6, 0x51, 0x82, 0xe8, 0x1d, 0xf6, 0x81, 0x84, 0x0c, 0x5d, 0x04, 0x08, 0x12, 0x06, 0x3d, 0x5e, + 0xc9, 0x9c, 0x96, 0xbb, 0x67, 0x1d, 0xb1, 0x25, 0x0d, 0x68, 0xd1, 0x87, 0x61, 0xbc, 0xae, 0x9b, + 0x15, 0x17, 0x1b, 0xdb, 0x15, 0x6e, 0x60, 0xc2, 0x92, 0x7e, 0x49, 0xa0, 0xb4, 0xd4, 0x9f, 0x3f, + 0xdc, 0xba, 0x39, 0x9d, 0xe7, 0x49, 0xb5, 0x95, 0xa5, 0xac, 0x8c, 0xd5, 0x75, 0x73, 0x1d, 0x1b, + 0xdb, 0xf3, 0x3e, 0xac, 0x38, 0xf4, 0x13, 0x2f, 0x4d, 0x1f, 0xf2, 0x03, 0x58, 0x87, 0xa1, 0x20, + 0xb0, 0xb0, 0x8b, 0x56, 0x21, 0xad, 0x8a, 0x06, 0x3b, 0x88, 0xe9, 0xd9, 0xd9, 0x43, 0x01, 0x1a, + 0xf0, 0x60, 0xb9, 0xe2, 0xb9, 0xff, 0x70, 0x42, 0x92, 0x9f, 0x8f, 0xc1, 0xc0, 0xfc, 0x95, 0x35, + 0x55, 0x77, 0xd0, 0x0d, 0x18, 0x0b, 0x9c, 0x2d, 0x9a, 0x29, 0x96, 0x6f, 0xdd, 0x9c, 0xce, 0x35, + 0xfb, 0x63, 0x9f, 0xa9, 0x62, 0x56, 0xd3, 0x84, 0x24, 0x41, 0x90, 0x88, 0x5c, 0x71, 0xa3, 0xe3, + 0x76, 0x3b, 0x3c, 0x76, 0x0b, 0xca, 0x01, 0xd2, 0x54, 0xcb, 0xee, 0x3d, 0x94, 0x38, 0xcb, 0x30, + 0xc8, 0x6c, 0xe1, 0xa2, 0x22, 0x24, 0x6d, 0xf2, 0x83, 0x3f, 0xfa, 0x98, 0xea, 0x18, 0x4d, 0x14, + 0xdf, 0x3f, 0x10, 0x26, 0x24, 0xf2, 0x17, 0xe3, 0x00, 0xf3, 0x57, 0xae, 0x6c, 0x38, 0xba, 0x6d, + 0x60, 0xef, 0x07, 0x6a, 0xd7, 0x8f, 0x4b, 0x70, 0x38, 0xb0, 0x9a, 0xeb, 0x68, 0x4d, 0xc6, 0x7d, + 0xf2, 0xd6, 0xcd, 0xe9, 0x63, 0xcd, 0xc6, 0x0d, 0xa1, 0x1d, 0xc0, 0xc0, 0xe3, 0x3e, 0xa3, 0x75, + 0x47, 0x6b, 0x2f, 0x47, 0xd5, 0xf5, 0x7c, 0x39, 0xe2, 0x9d, 0xe5, 0x08, 0xa1, 0xbd, 0x21, 0x39, + 0xe6, 0x5d, 0xaf, 0x75, 0xae, 0xd7, 0x21, 0x13, 0xcc, 0x91, 0x8b, 0xe6, 0x21, 0xe5, 0xf1, 0xdf, + 0x7c, 0xca, 0xe5, 0xce, 0x53, 0x2e, 0xc8, 0xf8, 0xb4, 0xfb, 0x94, 0xf2, 0xbf, 0x8d, 0x01, 0x04, + 0x51, 0xfd, 0x67, 0x35, 0xa2, 0xc8, 0x72, 0xca, 0x17, 0xbf, 0xf8, 0x81, 0x0a, 0x68, 0x4e, 0x1d, + 0x9a, 0xad, 0x3f, 0x8c, 0xc1, 0xf8, 0xa6, 0xc8, 0xfc, 0xef, 0x58, 0x18, 0xad, 0xc1, 0x20, 0x36, + 0x3d, 0x47, 0xa7, 0x26, 0x26, 0xde, 0xfa, 0x50, 0x27, 0x6f, 0x6d, 0x63, 0x35, 0xfa, 0xb1, 0x0c, + 0xf1, 0x34, 0x88, 0xb3, 0x09, 0xd9, 0xfa, 0x53, 0x71, 0xc8, 0x75, 0xa2, 0x42, 0x73, 0x30, 0xaa, + 0x39, 0x98, 0x02, 0x2a, 0xe1, 0xa3, 0xe7, 0x52, 0x3e, 0xd8, 0x49, 0x34, 0x21, 0xc8, 0xca, 0x88, + 0x80, 0xf0, 0xda, 0xa0, 0x06, 0xa4, 0xcc, 0x27, 0x21, 0x43, 0xb0, 0x7a, 0xac, 0xeb, 0x65, 0x5e, + 0x1c, 0x88, 0x41, 0xa2, 0x0c, 0x58, 0x75, 0x30, 0x12, 0x40, 0x69, 0x79, 0xf0, 0x2c, 0x8c, 0xea, + 0xa6, 0xee, 0xe9, 0xaa, 0x51, 0xd9, 0x52, 0x0d, 0xd5, 0xd4, 0x0e, 0xb2, 0x4b, 0x62, 0x0b, 0x3a, + 0x1f, 0xb6, 0x89, 0x9d, 0xac, 0x8c, 0x70, 0x48, 0x89, 0x01, 0xd0, 0x45, 0x18, 0x14, 0x43, 0x25, + 0x0e, 0x54, 0x4b, 0x0a, 0xf2, 0xd0, 0x8c, 0xfc, 0x64, 0x1c, 0xc6, 0x14, 0x5c, 0x7d, 0x67, 0x2a, + 0xfa, 0x9b, 0x8a, 0x65, 0x00, 0x96, 0x48, 0xc8, 0x4a, 0x72, 0x80, 0xd9, 0x20, 0xa9, 0x28, 0xcd, + 0x38, 0xcc, 0xbb, 0x5e, 0x68, 0x3e, 0xfe, 0x28, 0x0e, 0x43, 0xe1, 0xf9, 0x78, 0x67, 0x89, 0xff, + 0xe1, 0x59, 0xe2, 0xd1, 0x62, 0x90, 0x1a, 0x13, 0xfc, 0xa3, 0x87, 0x1d, 0x52, 0x63, 0x4b, 0x48, + 0x75, 0xce, 0x89, 0xff, 0x3b, 0x06, 0x03, 0x6b, 0xaa, 0xa3, 0xd6, 0x5d, 0xa4, 0xb5, 0x6c, 0x6c, + 0xc4, 0xc1, 0x7e, 0xcb, 0xd7, 0x6a, 0xf9, 0xa1, 0x58, 0x97, 0x7d, 0xcd, 0x0b, 0x6d, 0xf6, 0x35, + 0xef, 0x83, 0x91, 0xba, 0xba, 0x1b, 0x7a, 0xd6, 0x4c, 0x27, 0x73, 0xb8, 0x74, 0x24, 0xe0, 0x12, + 0xed, 0x67, 0xc7, 0x35, 0xc1, 0x03, 0x68, 0xf4, 0x18, 0x64, 0x08, 0x46, 0xb0, 0x4a, 0x10, 0xf2, + 0xc9, 0xe0, 0x5c, 0x24, 0xd4, 0x29, 0x2b, 0x50, 0x57, 0x77, 0xcb, 0xac, 0x81, 0x96, 0x00, 0xed, + 0xf8, 0x47, 0x73, 0x95, 0xc0, 0x94, 0x84, 0xfe, 0xf8, 0xad, 0x9b, 0xd3, 0x47, 0x18, 0x7d, 0x2b, + 0x8e, 0xac, 0x8c, 0x05, 0x40, 0xc1, 0xed, 0x0c, 0x00, 0xd1, 0xab, 0xc2, 0xae, 0x2a, 0xb2, 0xdd, + 0xf5, 0xe1, 0x5b, 0x37, 0xa7, 0xc7, 0x18, 0x97, 0xa0, 0x4f, 0x56, 0xd2, 0xa4, 0x31, 0x4f, 0x7e, + 0x87, 0x0c, 0xff, 0x25, 0x09, 0x50, 0xb0, 0x06, 0x29, 0xd8, 0xb5, 0x2d, 0xd3, 0xa5, 0xfb, 0xbe, + 0xd0, 0x26, 0x4d, 0xda, 0x7f, 0xdf, 0x17, 0xd0, 0x8b, 0x7d, 0x5f, 0x28, 0x74, 0x1f, 0x0f, 0xf2, + 0x75, 0x8c, 0xcf, 0x63, 0x9b, 0x7b, 0x9d, 0x85, 0x39, 0x4b, 0x17, 0xd4, 0x6d, 0x12, 0xf4, 0xbf, + 0x90, 0xe0, 0x48, 0x8b, 0x37, 0xf9, 0xc2, 0xfe, 0x39, 0x40, 0x4e, 0xa8, 0x93, 0x7f, 0xbc, 0x8a, + 0x09, 0xdd, 0xb7, 0x73, 0x8e, 0x39, 0x2d, 0x0b, 0xc1, 0xed, 0x5b, 0x72, 0xd8, 0xc5, 0xd0, 0x7f, + 0x22, 0xc1, 0x44, 0x78, 0x78, 0x5f, 0x91, 0x15, 0x18, 0x0a, 0x8f, 0xce, 0x55, 0xb8, 0xbb, 0x17, + 0x15, 0xb8, 0xf4, 0x11, 0x7a, 0xf4, 0x64, 0x10, 0xaa, 0xec, 0xf0, 0xf6, 0xe1, 0x9e, 0xad, 0x21, + 0x64, 0x6a, 0x0e, 0x59, 0xa6, 0xc1, 0x9f, 0x48, 0x90, 0x58, 0xb3, 0x2c, 0x03, 0x59, 0x30, 0x66, + 0x5a, 0x5e, 0x85, 0x78, 0x16, 0xae, 0x56, 0xf8, 0x19, 0x0f, 0x3b, 0xd5, 0x9d, 0xeb, 0xcf, 0x48, + 0xdf, 0xbb, 0x39, 0xdd, 0xca, 0x4a, 0x19, 0x35, 0x2d, 0xaf, 0x44, 0x21, 0x1b, 0xec, 0x04, 0xe8, + 0xc3, 0x30, 0x1c, 0x1d, 0x8c, 0x9d, 0x78, 0x3d, 0xd5, 0xf7, 0x60, 0x51, 0x36, 0xb7, 0x6e, 0x4e, + 0x4f, 0x04, 0x11, 0xe3, 0x83, 0x65, 0x65, 0x68, 0x2b, 0x34, 0x7a, 0x31, 0x45, 0xb4, 0xff, 0xe3, + 0x97, 0xa6, 0xa5, 0xd2, 0x85, 0x8e, 0x4f, 0x68, 0x1e, 0xd8, 0x57, 0x84, 0x5d, 0xff, 0x31, 0x43, + 0xf4, 0xb1, 0xcc, 0x0b, 0xe3, 0x30, 0xdd, 0xe1, 0x39, 0x84, 0xb7, 0x7b, 0xa0, 0x47, 0x10, 0x5d, + 0x9e, 0x11, 0xe4, 0x7b, 0x7a, 0xec, 0x21, 0xbf, 0x9e, 0x00, 0xb4, 0xec, 0xd6, 0xe6, 0x48, 0x55, + 0x83, 0x83, 0x43, 0xcf, 0xa6, 0x23, 0x31, 0xe9, 0x0d, 0x1d, 0x89, 0x2d, 0x47, 0x0e, 0x99, 0x62, + 0xfd, 0x1d, 0x6d, 0xf7, 0x7c, 0xd2, 0x14, 0x7f, 0x4b, 0x4e, 0x9a, 0xda, 0x97, 0x2a, 0x89, 0x1f, + 0xe0, 0x8e, 0x29, 0xf9, 0xd6, 0xec, 0x98, 0x26, 0x61, 0x80, 0x9f, 0x41, 0xb3, 0x4f, 0x7d, 0xf3, + 0x16, 0x7a, 0x54, 0x7c, 0x21, 0x79, 0xb0, 0xb7, 0xec, 0xcf, 0xb0, 0x79, 0x9e, 0xf9, 0x5a, 0x1c, + 0xb2, 0xcb, 0x6e, 0xad, 0x5c, 0xd5, 0xbd, 0x37, 0xc9, 0xf7, 0xec, 0xce, 0x9b, 0xcc, 0xb9, 0x5b, + 0x37, 0xa7, 0x47, 0x98, 0xc9, 0x6e, 0xa7, 0xa1, 0xea, 0x30, 0xda, 0xf4, 0x38, 0x87, 0xbb, 0xe6, + 0xfc, 0x41, 0x9e, 0x2a, 0x35, 0xb1, 0x92, 0xe9, 0xbe, 0x20, 0x14, 0x20, 0x68, 0xb7, 0x7d, 0x34, + 0xb0, 0x85, 0xec, 0xe2, 0x9b, 0x79, 0xe6, 0xca, 0xa6, 0xf0, 0xeb, 0x31, 0xc8, 0x2c, 0xbb, 0x62, + 0x9f, 0x8b, 0xff, 0xcc, 0x9e, 0x28, 0x3c, 0xe6, 0xbf, 0x38, 0x12, 0xef, 0x2d, 0x10, 0xa2, 0x2f, + 0x93, 0x7c, 0x2b, 0x4e, 0xf3, 0x70, 0x09, 0xd7, 0x74, 0xd3, 0x5f, 0xac, 0xf1, 0x3b, 0x1b, 0xa3, + 0x1f, 0xa2, 0x8d, 0x51, 0x30, 0xc3, 0x89, 0x83, 0xcc, 0xf0, 0x6f, 0xc5, 0x60, 0x78, 0xd9, 0xad, + 0x6d, 0x9a, 0xd5, 0x77, 0x42, 0xe5, 0x8d, 0x84, 0xca, 0x6d, 0x2f, 0xcd, 0xbe, 0x1e, 0x83, 0x53, + 0xe1, 0x5a, 0xea, 0xd9, 0x06, 0x76, 0xf6, 0xfc, 0x72, 0xc9, 0x56, 0x6b, 0xba, 0x19, 0xbe, 0x3d, + 0x73, 0x24, 0x2c, 0x2c, 0xc5, 0x15, 0x22, 0xcb, 0x26, 0x64, 0xd6, 0xd4, 0x1a, 0x56, 0xf0, 0xb3, + 0x0d, 0xec, 0x7a, 0x6d, 0xde, 0x6d, 0x99, 0x84, 0x01, 0x6b, 0x7b, 0x9b, 0x5d, 0xb6, 0x90, 0x4e, + 0x26, 0x14, 0xde, 0x42, 0x13, 0x90, 0x34, 0xf4, 0xba, 0xce, 0x0c, 0x92, 0x50, 0x58, 0x03, 0x4d, + 0x43, 0x46, 0x23, 0x7a, 0x57, 0xd8, 0x95, 0xfd, 0x84, 0xf8, 0x76, 0x47, 0xc3, 0xf4, 0x36, 0x08, + 0x44, 0x7e, 0x02, 0x86, 0xd8, 0x78, 0x7c, 0x7f, 0x71, 0x04, 0x52, 0xf4, 0x8a, 0x75, 0x30, 0xea, + 0x20, 0x69, 0x5f, 0x66, 0xef, 0xc1, 0x30, 0x2e, 0x6c, 0x60, 0xd6, 0x28, 0x95, 0x3a, 0x9a, 0xf2, + 0x64, 0xf7, 0x49, 0x66, 0x86, 0xf2, 0xcd, 0xf8, 0x9b, 0x49, 0x38, 0xcc, 0xaf, 0xb5, 0xa8, 0xb6, + 0x3e, 0xb3, 0xe3, 0x79, 0xe2, 0x05, 0x33, 0xe0, 0x1b, 0x7b, 0xd5, 0xd6, 0xe5, 0x3d, 0x48, 0x5c, + 0xf4, 0x3c, 0x1b, 0x9d, 0x82, 0xa4, 0xd3, 0x30, 0xb0, 0x78, 0x58, 0x30, 0x51, 0x08, 0x70, 0x0a, + 0x04, 0x41, 0x69, 0x18, 0x58, 0x61, 0x28, 0xa8, 0x0c, 0xd3, 0xdb, 0x0d, 0xc3, 0xd8, 0xab, 0x54, + 0x31, 0xfd, 0x77, 0x4a, 0xfe, 0x7f, 0x2e, 0xc0, 0xbb, 0xb6, 0x6a, 0xfa, 0x45, 0x65, 0x4a, 0x39, + 0x46, 0xd1, 0xe6, 0x29, 0x96, 0xf8, 0xaf, 0x05, 0x65, 0x81, 0x23, 0xff, 0x7e, 0x0c, 0x52, 0x82, + 0x35, 0x7d, 0x31, 0x05, 0x1b, 0x58, 0xf3, 0x2c, 0x71, 0x41, 0xc1, 0x6f, 0x23, 0x04, 0xf1, 0x1a, + 0x9f, 0xa2, 0xf4, 0xc5, 0x43, 0x0a, 0x69, 0x10, 0x98, 0xff, 0xba, 0x10, 0x81, 0xd9, 0x0d, 0x32, + 0x6b, 0x09, 0xdb, 0x12, 0x27, 0x63, 0x17, 0x0f, 0x29, 0xb4, 0x85, 0x72, 0x30, 0x40, 0xa2, 0xcd, + 0x63, 0xdf, 0x94, 0x24, 0x70, 0xde, 0x46, 0x93, 0x90, 0xb4, 0x55, 0x4f, 0x63, 0xd7, 0xec, 0x49, + 0x07, 0x6b, 0x92, 0x78, 0x60, 0xef, 0xf2, 0x36, 0xff, 0xaf, 0x12, 0x62, 0x0c, 0xf6, 0xd1, 0x34, + 0x22, 0xf7, 0x9a, 0xea, 0x79, 0xd8, 0x31, 0x09, 0x43, 0x86, 0x4e, 0xdf, 0x41, 0xb3, 0xaa, 0x7b, + 0xfc, 0xff, 0xa7, 0xd0, 0xdf, 0xfc, 0x3f, 0x3b, 0x50, 0x7f, 0xa8, 0xd0, 0x4e, 0xf6, 0x6f, 0xa3, + 0x86, 0x04, 0xb0, 0x44, 0x90, 0xca, 0x30, 0xae, 0x56, 0xab, 0x3a, 0xf1, 0x6a, 0xd5, 0xa8, 0x6c, + 0xe9, 0xf4, 0xe0, 0xc4, 0xa5, 0xff, 0x14, 0xac, 0xd3, 0x5c, 0xa0, 0x80, 0xa0, 0xc4, 0xf1, 0x4b, + 0x69, 0x18, 0xb4, 0x99, 0x50, 0xf2, 0x79, 0x18, 0x6b, 0x91, 0x94, 0xc8, 0x77, 0x55, 0x37, 0xab, + 0xe2, 0x1d, 0x2a, 0xf2, 0x9b, 0xc0, 0xe8, 0x87, 0x0f, 0xd9, 0xd5, 0x0f, 0xfa, 0xbb, 0xf4, 0xe3, + 0x9d, 0xef, 0x90, 0x8d, 0x84, 0xee, 0x90, 0xa9, 0xb6, 0x5e, 0x4a, 0x53, 0xfe, 0xfc, 0xea, 0xd8, + 0x2c, 0xef, 0x60, 0xd7, 0xc6, 0x0a, 0x96, 0x53, 0x9b, 0xa9, 0x61, 0x53, 0xec, 0x94, 0x48, 0x97, + 0x6a, 0xeb, 0x2e, 0x75, 0xc7, 0xe0, 0x43, 0x8c, 0xee, 0xf9, 0xd0, 0x6f, 0x7a, 0xa3, 0x2c, 0xb1, + 0x30, 0xbb, 0xb6, 0xe8, 0xfb, 0xf1, 0x6f, 0xc4, 0xe0, 0x58, 0xc8, 0x8f, 0x43, 0xc8, 0xad, 0xee, + 0x9c, 0x6f, 0xef, 0xf1, 0x3d, 0x7c, 0xc6, 0xf0, 0x32, 0x24, 0x08, 0x3e, 0xea, 0xf2, 0x7f, 0x17, + 0x72, 0xbf, 0xf4, 0xcf, 0xff, 0x91, 0x4c, 0x9d, 0xa2, 0xfd, 0xac, 0x50, 0x26, 0xa5, 0x4f, 0xf4, + 0x6e, 0xbf, 0x6c, 0xf0, 0x0d, 0x4a, 0xf7, 0xf6, 0x99, 0xb1, 0xd9, 0x86, 0x9f, 0x3f, 0x0f, 0x72, + 0x87, 0xed, 0x27, 0xcb, 0x98, 0xfb, 0x6f, 0x78, 0xfb, 0x48, 0xc7, 0x9d, 0xee, 0xe7, 0xed, 0x37, + 0x83, 0x3d, 0x6e, 0x8d, 0x77, 0x61, 0xf2, 0x49, 0x32, 0x76, 0x70, 0x28, 0x28, 0x12, 0xfb, 0xa4, + 0x7f, 0x73, 0x46, 0xe2, 0xff, 0x93, 0x4d, 0x5c, 0x83, 0x81, 0x40, 0x3e, 0xbe, 0xd1, 0xbd, 0xa7, + 0xd0, 0x71, 0xbd, 0x28, 0x84, 0x16, 0x0b, 0x25, 0x44, 0x29, 0xff, 0x82, 0x04, 0x77, 0xb4, 0x0c, + 0xcd, 0x73, 0xfc, 0x02, 0x40, 0xe8, 0x54, 0x53, 0xea, 0xef, 0xce, 0x5e, 0x88, 0x94, 0x30, 0x6a, + 0x11, 0xf6, 0xde, 0xae, 0xc2, 0x32, 0x29, 0x22, 0xd2, 0x3e, 0x0b, 0x87, 0xa3, 0xc2, 0x0a, 0x33, + 0x3d, 0x0d, 0x23, 0xd1, 0x02, 0x82, 0x17, 0x37, 0x07, 0xb8, 0x7b, 0x31, 0x1c, 0x29, 0x22, 0xe4, + 0x4a, 0xf3, 0xd4, 0xf8, 0xe6, 0x29, 0x43, 0xda, 0x47, 0xe5, 0x5b, 0xc7, 0x9e, 0xad, 0x13, 0x50, + 0xca, 0x5f, 0x97, 0xe0, 0x44, 0x74, 0x84, 0x60, 0xe3, 0xe3, 0xbe, 0xe9, 0xfa, 0xdd, 0x36, 0x47, + 0xfa, 0xae, 0x04, 0x77, 0xee, 0xa3, 0x06, 0xb7, 0xd9, 0x0d, 0x98, 0x08, 0x9d, 0xae, 0x8a, 0x85, + 0x42, 0x38, 0xd7, 0xa9, 0xee, 0xc7, 0xc2, 0xfe, 0x61, 0xe2, 0x51, 0x62, 0xc7, 0xaf, 0x7c, 0x6b, + 0x7a, 0xbc, 0xb5, 0xcf, 0x55, 0xc6, 0x5b, 0x4f, 0x44, 0x6f, 0xa3, 0x17, 0xfe, 0xae, 0x04, 0xf7, + 0x45, 0x55, 0x6d, 0xf3, 0x0c, 0xf6, 0x6d, 0x34, 0x75, 0xff, 0x5e, 0x82, 0x53, 0xbd, 0xe8, 0xc3, + 0xe7, 0x70, 0x0b, 0xc6, 0x83, 0xc7, 0x22, 0xcd, 0x53, 0x78, 0x7f, 0x1f, 0x0f, 0xb7, 0x79, 0x2c, + 0x20, 0x9f, 0xdb, 0x9b, 0x30, 0x57, 0xff, 0x52, 0xe2, 0xf1, 0x1b, 0x76, 0x13, 0x7f, 0x62, 0xa2, + 0x1b, 0x9e, 0x3e, 0x27, 0x26, 0xb4, 0xe9, 0x19, 0x8e, 0x6c, 0x7a, 0xda, 0x4c, 0x79, 0xec, 0x36, + 0x65, 0xa3, 0x6b, 0x3c, 0x5b, 0xb7, 0x79, 0xce, 0xf2, 0x41, 0x18, 0x6f, 0x13, 0x5a, 0x3c, 0x31, + 0xf5, 0x11, 0x59, 0x0a, 0x6a, 0x0d, 0x1e, 0xf9, 0xdf, 0x48, 0x30, 0x4d, 0x07, 0x6e, 0x33, 0x8d, + 0x6f, 0x67, 0x7b, 0xd6, 0x79, 0xee, 0x6d, 0xab, 0x16, 0x37, 0xec, 0x22, 0x0c, 0x30, 0x0f, 0xe5, + 0xb6, 0x3c, 0x80, 0x8b, 0x73, 0x06, 0x41, 0xae, 0x9f, 0x17, 0xfa, 0xb5, 0x4f, 0x18, 0x6f, 0x92, + 0x1d, 0x6f, 0x57, 0xc2, 0x78, 0x45, 0xe4, 0xfa, 0xf6, 0x6a, 0x70, 0xbb, 0x69, 0xb7, 0x2d, 0xd7, + 0x33, 0x23, 0xbe, 0x45, 0x49, 0xdd, 0xd7, 0xa9, 0x4b, 0x52, 0xff, 0x21, 0x9f, 0x23, 0x3f, 0xa9, + 0x77, 0xd1, 0xe7, 0xed, 0x98, 0xd4, 0xff, 0x24, 0x06, 0x47, 0xa8, 0x6e, 0xe1, 0x67, 0x8d, 0x6f, + 0xc1, 0xdc, 0x54, 0x00, 0xb9, 0x8e, 0x56, 0xb9, 0x5d, 0xb9, 0x28, 0xeb, 0x3a, 0xda, 0x95, 0xc8, + 0x8a, 0x5e, 0x01, 0x54, 0x75, 0xbd, 0xe6, 0x01, 0xe2, 0x07, 0x1e, 0xa0, 0xea, 0x7a, 0x57, 0xf6, + 0x29, 0x19, 0x12, 0x07, 0xf6, 0xae, 0x97, 0x25, 0xc8, 0xb7, 0x9b, 0x01, 0xee, 0x4d, 0x3a, 0x4c, + 0x46, 0x1e, 0xa3, 0x37, 0x3b, 0xd4, 0x03, 0xbd, 0x3c, 0x3c, 0x6e, 0x0a, 0xff, 0xc3, 0x0e, 0x7e, + 0x53, 0x13, 0xc0, 0x3f, 0x13, 0x4b, 0x9c, 0x1f, 0x30, 0xad, 0xbb, 0xb1, 0x1f, 0xfe, 0xb0, 0xff, + 0x95, 0x96, 0x15, 0xe6, 0x6d, 0xb1, 0xb1, 0xfb, 0xa6, 0x04, 0x53, 0x1d, 0xc4, 0x7e, 0x3b, 0x97, + 0x17, 0x3b, 0x1d, 0x5d, 0xea, 0x76, 0xef, 0x22, 0xcf, 0xf0, 0x78, 0x8c, 0xbe, 0xaa, 0x17, 0x3a, + 0x45, 0x68, 0xf7, 0xf1, 0x01, 0xf9, 0xfd, 0x70, 0xb4, 0x2d, 0x15, 0x97, 0xad, 0x08, 0x89, 0x1d, + 0xdd, 0xf5, 0xb8, 0x58, 0xf7, 0x74, 0x12, 0xab, 0x89, 0x9a, 0xd2, 0xc8, 0x08, 0xb2, 0x94, 0xf5, + 0x9a, 0x65, 0x19, 0x5c, 0x0c, 0xf9, 0x32, 0x8c, 0x85, 0x60, 0x7c, 0x90, 0xb3, 0x90, 0xb0, 0x2d, + 0xfe, 0x3d, 0x9f, 0xcc, 0xe9, 0x63, 0x9d, 0x06, 0x21, 0x34, 0x5c, 0x6d, 0x8a, 0x2f, 0x4f, 0x00, + 0x62, 0xcc, 0xe8, 0x5d, 0x2f, 0x31, 0xc4, 0x3a, 0x8c, 0x47, 0xa0, 0x7c, 0x90, 0x77, 0xc3, 0x80, + 0x4d, 0x21, 0x7c, 0x98, 0x8e, 0x2f, 0x09, 0x30, 0x3a, 0x51, 0xb6, 0x31, 0x9a, 0xd3, 0xdf, 0x3b, + 0x0c, 0x49, 0xca, 0x15, 0x7d, 0x46, 0x02, 0x08, 0xdd, 0xdc, 0x2a, 0x74, 0x62, 0xd3, 0xfe, 0x34, + 0x27, 0x3f, 0xd3, 0x33, 0x3e, 0xaf, 0xbb, 0x4f, 0xfd, 0xf8, 0xbf, 0xfe, 0xce, 0xcf, 0xc4, 0xee, + 0x46, 0xf2, 0x4c, 0x87, 0x73, 0xa4, 0x50, 0x30, 0x7e, 0x59, 0x0a, 0xbf, 0x4b, 0xf6, 0x60, 0x6f, + 0x43, 0x09, 0xc9, 0x0a, 0xbd, 0xa2, 0x73, 0xc1, 0xce, 0x53, 0xc1, 0x1e, 0x45, 0x8f, 0x74, 0x17, + 0x6c, 0xe6, 0x43, 0xd1, 0xe8, 0xfa, 0x08, 0xfa, 0xa6, 0x04, 0x13, 0xed, 0x8e, 0x09, 0xd0, 0xb9, + 0xde, 0xa4, 0x68, 0x2d, 0xc8, 0xf2, 0x8f, 0x1f, 0x80, 0x92, 0xab, 0xb2, 0x40, 0x55, 0x99, 0x45, + 0x4f, 0x1c, 0x40, 0x95, 0x99, 0xd0, 0xea, 0x87, 0xfe, 0x9f, 0x04, 0xc7, 0xf7, 0xdd, 0x42, 0xa3, + 0xd9, 0xde, 0xa4, 0xdc, 0xa7, 0xf2, 0xcc, 0x97, 0xde, 0x08, 0x0b, 0xae, 0xf1, 0x93, 0x54, 0xe3, + 0xcb, 0x68, 0xf1, 0x20, 0x1a, 0x07, 0x65, 0x62, 0x58, 0xf7, 0xdf, 0x96, 0x22, 0xaf, 0x53, 0xec, + 0xef, 0x4e, 0x2d, 0x7b, 0xc7, 0x2e, 0x81, 0xd1, 0xba, 0x25, 0x90, 0x9f, 0xa6, 0x2a, 0x28, 0x68, + 0xed, 0x0d, 0x4e, 0xda, 0xcc, 0x87, 0xa2, 0x8b, 0xca, 0x47, 0xd0, 0xff, 0x91, 0xda, 0xbf, 0xbf, + 0xf0, 0xd8, 0xbe, 0x22, 0x76, 0xde, 0x17, 0xe7, 0xcf, 0xf5, 0x4f, 0xc8, 0x95, 0xac, 0x53, 0x25, + 0x6b, 0x08, 0xdf, 0x6e, 0x25, 0xdb, 0x4e, 0x22, 0xfa, 0x1d, 0x09, 0x26, 0xda, 0xed, 0xe8, 0xba, + 0x84, 0xe5, 0x3e, 0x7b, 0xd9, 0x2e, 0x61, 0xb9, 0xdf, 0xf6, 0x51, 0x7e, 0x37, 0x55, 0xfe, 0x2c, + 0x3a, 0xd3, 0x49, 0xf9, 0x7d, 0x67, 0x91, 0xc4, 0xe2, 0xbe, 0x3b, 0x9f, 0x2e, 0xb1, 0xd8, 0xcb, + 0x2e, 0xb0, 0x4b, 0x2c, 0xf6, 0xb4, 0xf1, 0xea, 0x1e, 0x8b, 0xbe, 0x66, 0x3d, 0x4e, 0xa3, 0x8b, + 0x7e, 0x43, 0x82, 0xe1, 0x48, 0x5d, 0x8e, 0x1e, 0xde, 0x57, 0xd0, 0x76, 0xbb, 0xa8, 0xfc, 0xe9, + 0x7e, 0x48, 0xb8, 0x2e, 0x8b, 0x54, 0x97, 0x39, 0x34, 0x7b, 0x10, 0x5d, 0x9c, 0x88, 0xc4, 0x2f, + 0x4b, 0x30, 0xde, 0xa6, 0x84, 0xed, 0x12, 0x85, 0x9d, 0x4b, 0xf7, 0xfc, 0xb9, 0xfe, 0x09, 0xb9, + 0x56, 0x17, 0xa8, 0x56, 0xef, 0x43, 0xef, 0x3d, 0x88, 0x56, 0xa1, 0xf5, 0xf9, 0x66, 0x70, 0x3f, + 0x3a, 0x34, 0x0e, 0x3a, 0xdb, 0xa7, 0x60, 0x42, 0xa1, 0xc7, 0xfa, 0xa6, 0xe3, 0xfa, 0x3c, 0x45, + 0xf5, 0x79, 0x12, 0xad, 0xbe, 0x31, 0x7d, 0x5a, 0x97, 0xf5, 0xaf, 0xb6, 0x7e, 0x2a, 0x62, 0x7f, + 0x2f, 0x6a, 0x5b, 0xac, 0xe6, 0x1f, 0xe9, 0x8b, 0x86, 0x2b, 0x75, 0x8e, 0x2a, 0x75, 0x1a, 0x3d, + 0xd4, 0x49, 0xa9, 0xd0, 0x25, 0x78, 0xdd, 0xdc, 0xb6, 0x66, 0x3e, 0xc4, 0x4a, 0xe0, 0x8f, 0xa0, + 0x1f, 0x13, 0x17, 0x90, 0x4f, 0xee, 0x3b, 0x6e, 0xa8, 0x8e, 0xcd, 0xdf, 0xd7, 0x03, 0x26, 0x97, + 0xeb, 0x6e, 0x2a, 0xd7, 0x14, 0x3a, 0xd6, 0x49, 0x2e, 0x52, 0xcb, 0xa2, 0x4f, 0x4a, 0xfe, 0x3b, + 0x0b, 0xa7, 0xf6, 0xe7, 0x1d, 0x2e, 0x76, 0xf3, 0xf7, 0xf7, 0x84, 0xcb, 0x25, 0xb9, 0x87, 0x4a, + 0x72, 0x02, 0x4d, 0x75, 0x94, 0x84, 0x95, 0xbe, 0xb7, 0xfb, 0xce, 0xcb, 0x67, 0x53, 0x1d, 0x3f, + 0x8b, 0x52, 0xc3, 0x26, 0x76, 0x75, 0xf7, 0x40, 0x77, 0x92, 0x7b, 0x7b, 0xb0, 0xfa, 0xcd, 0x24, + 0x0c, 0x2d, 0xb0, 0x51, 0xd6, 0x3d, 0xd5, 0x7b, 0x83, 0x1b, 0x01, 0xe4, 0xf2, 0x0f, 0x19, 0xd2, + 0x2b, 0x2d, 0x15, 0xdb, 0xba, 0x8e, 0xc5, 0x5e, 0x71, 0xb1, 0xef, 0xcb, 0xc0, 0xfc, 0xfd, 0xfc, + 0x66, 0x7e, 0x32, 0xfb, 0x26, 0x22, 0xbd, 0x75, 0xb3, 0x46, 0x00, 0xe8, 0x63, 0x12, 0x1c, 0xa6, + 0x58, 0x41, 0xbc, 0x51, 0x4c, 0xf1, 0x3e, 0x61, 0x47, 0x8f, 0x59, 0x52, 0x43, 0xc7, 0x3f, 0x94, + 0x57, 0xe9, 0x6e, 0xfe, 0x7a, 0xcb, 0xb1, 0xd0, 0xe0, 0xcd, 0x6c, 0x65, 0x65, 0xdc, 0x68, 0xa1, + 0x74, 0x9b, 0x0e, 0x0d, 0x12, 0x07, 0x3f, 0x34, 0xb8, 0x04, 0x99, 0x50, 0xa6, 0xcf, 0x25, 0xbb, + 0xbc, 0xc2, 0xdb, 0x7c, 0xb2, 0x18, 0x26, 0x46, 0x9f, 0x90, 0xe0, 0x70, 0xdb, 0x45, 0x90, 0xfe, + 0x1f, 0xce, 0x3e, 0x4f, 0x2e, 0x9b, 0x8c, 0xd3, 0x96, 0xaf, 0xac, 0x4c, 0x34, 0xda, 0x55, 0x13, + 0x6b, 0x30, 0x1c, 0x59, 0xc0, 0x72, 0xe2, 0xbf, 0xe9, 0xf6, 0xfe, 0xc2, 0x45, 0x94, 0x01, 0xca, + 0x43, 0x0a, 0xef, 0xda, 0x96, 0xe3, 0xe1, 0x2a, 0xbd, 0xac, 0x93, 0x52, 0xfc, 0xb6, 0x7c, 0x1d, + 0x50, 0xeb, 0xe4, 0xa2, 0xcb, 0x30, 0x18, 0xbd, 0xda, 0x77, 0x80, 0x03, 0x0c, 0xc1, 0x01, 0x4d, + 0x40, 0x32, 0xf0, 0xef, 0xb8, 0xc2, 0x1a, 0xb7, 0x3b, 0x39, 0xfc, 0x69, 0x00, 0x00, 0x00, 0xff, + 0xff, 0x75, 0x0a, 0xea, 0x1f, 0x47, 0x91, 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r) diff --git a/x/upgrade/types/query.pb.go b/x/upgrade/types/query.pb.go index a233a2f88..bf1dc7fc7 100644 --- a/x/upgrade/types/query.pb.go +++ b/x/upgrade/types/query.pb.go @@ -6,8 +6,8 @@ package types import ( context "context" fmt "fmt" - proto "github.com/gogo/protobuf/proto" grpc1 "github.com/gogo/protobuf/grpc" + proto "github.com/gogo/protobuf/proto" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" diff --git a/x/upgrade/types/query.pb.gw.go b/x/upgrade/types/query.pb.gw.go index 004a27419..6d311b577 100644 --- a/x/upgrade/types/query.pb.gw.go +++ b/x/upgrade/types/query.pb.gw.go @@ -106,6 +106,7 @@ func local_request_Query_AppliedPlan_0(ctx context.Context, marshaler runtime.Ma // RegisterQueryHandlerServer registers the http handlers for service Query to "mux". // UnaryRPC :call QueryServer directly. // StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. +// Note that using this registration option will cause many gRPC library features (such as grpc.SendHeader, etc) to stop working. Consider using RegisterQueryHandlerFromEndpoint instead. func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, server QueryServer) error { mux.Handle("GET", pattern_Query_CurrentPlan_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {