From 617b822efa378a95d68ffbc9950cb90783be2356 Mon Sep 17 00:00:00 2001 From: Marko Date: Thu, 30 Jul 2020 16:53:02 +0200 Subject: [PATCH] types: add kv type (#6897) * add kv type * add changelog entry * fix build * replace sdkkv with kv * revert change * fix some tests * proto-gen * fix tests Co-authored-by: Aleksandr Bezobchuk Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> --- CHANGELOG.md | 1 + codec/unknownproto/unknown_fields_test.go | 14 +- proto/cosmos/kv/kv.proto | 10 + proto/ibc/transfer/genesis.proto | 12 +- simapp/utils.go | 4 +- simapp/utils_test.go | 15 +- store/cachekv/memiterator.go | 8 +- store/cachekv/store.go | 8 +- store/firstlast.go | 13 +- store/iavl/store.go | 8 +- store/rootmulti/internal/maps/maps.go | 2 +- store/types/store.go | 5 +- store/types/utils.go | 10 +- testutil/testdata/proto.pb.go | 205 ++- types/kv/kv.go | 36 + types/kv/kv.pb.go | 373 +++++ types/store.go | 7 +- types/tx/signing/signing.pb.go | 6 +- x/auth/simulation/decoder.go | 6 +- x/auth/simulation/decoder_test.go | 10 +- x/bank/simulation/decoder.go | 8 +- x/bank/simulation/decoder_test.go | 8 +- x/capability/simulation/decoder.go | 7 +- x/capability/simulation/decoder_test.go | 10 +- x/distribution/simulation/decoder.go | 7 +- x/distribution/simulation/decoder_test.go | 25 +- x/evidence/simulation/decoder.go | 8 +- x/evidence/simulation/decoder_test.go | 8 +- x/gov/simulation/decoder.go | 7 +- x/gov/simulation/decoder_test.go | 15 +- x/ibc-transfer/types/genesis.pb.go | 24 +- x/ibc/02-client/simulation/decoder.go | 5 +- x/ibc/02-client/simulation/decoder_test.go | 12 +- x/ibc/03-connection/simulation/decoder.go | 5 +- .../03-connection/simulation/decoder_test.go | 10 +- x/ibc/04-channel/simulation/decoder.go | 5 +- x/ibc/04-channel/simulation/decoder_test.go | 18 +- x/ibc/simulation/decoder.go | 7 +- x/ibc/simulation/decoder_test.go | 12 +- x/mint/simulation/decoder.go | 7 +- x/mint/simulation/decoder_test.go | 9 +- x/slashing/simulation/decoder.go | 6 +- x/slashing/simulation/decoder_test.go | 14 +- x/staking/simulation/decoder.go | 7 +- x/staking/simulation/decoder_test.go | 19 +- x/staking/types/staking.pb.go | 1226 ++++++++--------- 46 files changed, 1317 insertions(+), 925 deletions(-) create mode 100644 proto/cosmos/kv/kv.proto create mode 100644 types/kv/kv.go create mode 100644 types/kv/kv.pb.go diff --git a/CHANGELOG.md b/CHANGELOG.md index ee3952e90791..e0743d9b739d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -305,6 +305,7 @@ pagination. * (baseapp) [\#6053](https://github.com/cosmos/cosmos-sdk/pull/6053) Customizable panic recovery handling added for `app.runTx()` method (as proposed in the [ADR 22](https://github.com/cosmos/cosmos-sdk/blob/master/docs/architecture/adr-022-custom-panic-handling.md)). Adds ability for developers to register custom panic handlers extending standard ones. * (store) [\#6481](https://github.com/cosmos/cosmos-sdk/pull/6481) Move `SimpleProofsFromMap` from Tendermint into the SDK. * (store) [\#6719](https://github.com/cosmos/cosmos-sdk/6754) Add validity checks to stores for nil and empty keys. +* (types) \#6897 Add KV type from tendermint to `types` directory. ## [v0.39.0] - 2020-07-20 diff --git a/codec/unknownproto/unknown_fields_test.go b/codec/unknownproto/unknown_fields_test.go index 2fef6188f9ee..d09e25e75796 100644 --- a/codec/unknownproto/unknown_fields_test.go +++ b/codec/unknownproto/unknown_fields_test.go @@ -29,7 +29,7 @@ func TestRejectUnknownFieldsRepeated(t *testing.T) { F: &testdata.TestVersion2{ A: &testdata.TestVersion2{ B: &testdata.TestVersion2{ - H: []*testdata.TestVersion2{ + H: []*testdata.TestVersion1{ { X: 0x01, }, @@ -44,7 +44,7 @@ func TestRejectUnknownFieldsRepeated(t *testing.T) { F: &testdata.TestVersion2{ A: &testdata.TestVersion2{ B: &testdata.TestVersion2{ - H: []*testdata.TestVersion2{ + H: []*testdata.TestVersion1{ { X: 0x02, }, @@ -84,7 +84,7 @@ func TestRejectUnknownFieldsRepeated(t *testing.T) { F: &testdata.TestVersion2{ A: &testdata.TestVersion2{ B: &testdata.TestVersion2{ - H: []*testdata.TestVersion2{ + H: []*testdata.TestVersion1{ { X: 0x01, }, @@ -99,7 +99,7 @@ func TestRejectUnknownFieldsRepeated(t *testing.T) { F: &testdata.TestVersion2{ A: &testdata.TestVersion2{ B: &testdata.TestVersion2{ - H: []*testdata.TestVersion2{ + H: []*testdata.TestVersion1{ { X: 0x02, }, @@ -309,13 +309,13 @@ func TestRejectUnknownFieldsNested(t *testing.T) { Sum: &testdata.TestVersion2_E{ E: 100, }, - H: []*testdata.TestVersion2{ + H: []*testdata.TestVersion1{ {X: 999}, {X: -55}, { X: 102, - Sum: &testdata.TestVersion2_F{ - F: &testdata.TestVersion2{ + Sum: &testdata.TestVersion1_F{ + F: &testdata.TestVersion1{ X: 4, }, }, diff --git a/proto/cosmos/kv/kv.proto b/proto/cosmos/kv/kv.proto new file mode 100644 index 000000000000..f16b05dd6947 --- /dev/null +++ b/proto/cosmos/kv/kv.proto @@ -0,0 +1,10 @@ +syntax = "proto3"; +package cosmos.kv; + +option go_package = "github.com/cosmos/cosmos-sdk/types/kv"; + +// Key-Value Pair +message Pair { + bytes key = 1; + bytes value = 2; +} diff --git a/proto/ibc/transfer/genesis.proto b/proto/ibc/transfer/genesis.proto index b8e7b665d18e..bfd78744ad1a 100644 --- a/proto/ibc/transfer/genesis.proto +++ b/proto/ibc/transfer/genesis.proto @@ -4,14 +4,12 @@ package ibc.transfer; option go_package = "github.com/cosmos/cosmos-sdk/x/ibc-transfer/types"; import "gogoproto/gogo.proto"; -import "cosmos/cosmos.proto"; -import "ibc/transfer/transfer.proto"; // GenesisState is currently only used to ensure that the InitGenesis gets run // by the module manager -message GenesisState{ - string port_id = 1 [ - (gogoproto.customname) = "PortID", - (gogoproto.moretags) = "yaml:\"port_id\"" - ]; +message GenesisState { + string port_id = 1 [ + (gogoproto.customname) = "PortID", + (gogoproto.moretags) = "yaml:\"port_id\"" + ]; } diff --git a/simapp/utils.go b/simapp/utils.go index 6ac89055dc8e..c5add056473c 100644 --- a/simapp/utils.go +++ b/simapp/utils.go @@ -5,13 +5,13 @@ import ( "fmt" "io/ioutil" - tmkv "github.com/tendermint/tendermint/libs/kv" "github.com/tendermint/tendermint/libs/log" dbm "github.com/tendermint/tm-db" "github.com/cosmos/cosmos-sdk/codec" "github.com/cosmos/cosmos-sdk/simapp/helpers" sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/types/kv" "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" ) @@ -109,7 +109,7 @@ func PrintStats(db dbm.DB) { // GetSimulationLog unmarshals the KVPair's Value to the corresponding type based on the // each's module store key and the prefix bytes of the KVPair's key. -func GetSimulationLog(storeName string, sdr sdk.StoreDecoderRegistry, kvAs, kvBs []tmkv.Pair) (log string) { +func GetSimulationLog(storeName string, sdr sdk.StoreDecoderRegistry, kvAs, kvBs []kv.Pair) (log string) { for i := 0; i < len(kvAs); i++ { if len(kvAs[i].Value) == 0 && len(kvBs[i].Value) == 0 { // skip if the value doesn't have any bytes diff --git a/simapp/utils_test.go b/simapp/utils_test.go index 2218e296f7f8..56dbada97931 100644 --- a/simapp/utils_test.go +++ b/simapp/utils_test.go @@ -4,12 +4,11 @@ import ( "fmt" "testing" - "github.com/cosmos/cosmos-sdk/std" - "github.com/stretchr/testify/require" - tmkv "github.com/tendermint/tendermint/libs/kv" + "github.com/cosmos/cosmos-sdk/std" sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/types/kv" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" ) @@ -17,26 +16,26 @@ func TestGetSimulationLog(t *testing.T) { cdc := std.MakeCodec(ModuleBasics) decoders := make(sdk.StoreDecoderRegistry) - decoders[authtypes.StoreKey] = func(kvAs, kvBs tmkv.Pair) string { return "10" } + decoders[authtypes.StoreKey] = func(kvAs, kvBs kv.Pair) string { return "10" } tests := []struct { store string - kvPairs []tmkv.Pair + kvPairs []kv.Pair expectedLog string }{ { "Empty", - []tmkv.Pair{{}}, + []kv.Pair{{}}, "", }, { authtypes.StoreKey, - []tmkv.Pair{{Key: authtypes.GlobalAccountNumberKey, Value: cdc.MustMarshalBinaryBare(uint64(10))}}, + []kv.Pair{{Key: authtypes.GlobalAccountNumberKey, Value: cdc.MustMarshalBinaryBare(uint64(10))}}, "10", }, { "OtherStore", - []tmkv.Pair{{Key: []byte("key"), Value: []byte("value")}}, + []kv.Pair{{Key: []byte("key"), Value: []byte("value")}}, fmt.Sprintf("store A %X => %X\nstore B %X => %X\n", []byte("key"), []byte("value"), []byte("key"), []byte("value")), }, } diff --git a/store/cachekv/memiterator.go b/store/cachekv/memiterator.go index 60ec36868193..de03f298b8c8 100644 --- a/store/cachekv/memiterator.go +++ b/store/cachekv/memiterator.go @@ -4,7 +4,7 @@ import ( "container/list" "errors" - tmkv "github.com/tendermint/tendermint/libs/kv" + "github.com/cosmos/cosmos-sdk/types/kv" dbm "github.com/tendermint/tm-db" ) @@ -13,17 +13,17 @@ import ( // Implements Iterator. type memIterator struct { start, end []byte - items []*tmkv.Pair + items []*kv.Pair ascending bool } func newMemIterator(start, end []byte, items *list.List, ascending bool) *memIterator { - itemsInDomain := make([]*tmkv.Pair, 0) + itemsInDomain := make([]*kv.Pair, 0) var entered bool for e := items.Front(); e != nil; e = e.Next() { - item := e.Value.(*tmkv.Pair) + item := e.Value.(*kv.Pair) if !dbm.IsKeyInDomain(item.Key, start, end) { if entered { break diff --git a/store/cachekv/store.go b/store/cachekv/store.go index 4b519b7a70b9..dd8f95215b54 100644 --- a/store/cachekv/store.go +++ b/store/cachekv/store.go @@ -8,12 +8,12 @@ import ( "sync" "time" - tmkv "github.com/tendermint/tendermint/libs/kv" dbm "github.com/tendermint/tm-db" "github.com/cosmos/cosmos-sdk/store/tracekv" "github.com/cosmos/cosmos-sdk/store/types" "github.com/cosmos/cosmos-sdk/telemetry" + "github.com/cosmos/cosmos-sdk/types/kv" ) // If value is nil but deleted is false, it means the parent doesn't have the @@ -181,13 +181,13 @@ func (store *Store) iterator(start, end []byte, ascending bool) types.Iterator { // Constructs a slice of dirty items, to use w/ memIterator. func (store *Store) dirtyItems(start, end []byte) { - unsorted := make([]*tmkv.Pair, 0) + unsorted := make([]*kv.Pair, 0) for key := range store.unsortedCache { cacheValue := store.cache[key] if dbm.IsKeyInDomain([]byte(key), start, end) { - unsorted = append(unsorted, &tmkv.Pair{Key: []byte(key), Value: cacheValue.value}) + unsorted = append(unsorted, &kv.Pair{Key: []byte(key), Value: cacheValue.value}) delete(store.unsortedCache, key) } @@ -199,7 +199,7 @@ func (store *Store) dirtyItems(start, end []byte) { for e := store.sortedCache.Front(); e != nil && len(unsorted) != 0; { uitem := unsorted[0] - sitem := e.Value.(*tmkv.Pair) + sitem := e.Value.(*kv.Pair) comp := bytes.Compare(uitem.Key, sitem.Key) switch comp { diff --git a/store/firstlast.go b/store/firstlast.go index 0aab0a53ab9c..307f932fb0c8 100644 --- a/store/firstlast.go +++ b/store/firstlast.go @@ -3,28 +3,27 @@ package store import ( "bytes" - tmkv "github.com/tendermint/tendermint/libs/kv" - sdk "github.com/cosmos/cosmos-sdk/types" + sdkkv "github.com/cosmos/cosmos-sdk/types/kv" ) // Gets the first item. -func First(st KVStore, start, end []byte) (kv tmkv.Pair, ok bool) { +func First(st KVStore, start, end []byte) (kv sdkkv.Pair, ok bool) { iter := st.Iterator(start, end) if !iter.Valid() { return kv, false } defer iter.Close() - return tmkv.Pair{Key: iter.Key(), Value: iter.Value()}, true + return sdkkv.Pair{Key: iter.Key(), Value: iter.Value()}, true } // Gets the last item. `end` is exclusive. -func Last(st KVStore, start, end []byte) (kv tmkv.Pair, ok bool) { +func Last(st KVStore, start, end []byte) (kv sdkkv.Pair, ok bool) { iter := st.ReverseIterator(end, start) if !iter.Valid() { if v := st.Get(start); v != nil { - return tmkv.Pair{Key: sdk.CopyBytes(start), Value: sdk.CopyBytes(v)}, true + return sdkkv.Pair{Key: sdk.CopyBytes(start), Value: sdk.CopyBytes(v)}, true } return kv, false } @@ -38,5 +37,5 @@ func Last(st KVStore, start, end []byte) (kv tmkv.Pair, ok bool) { } } - return tmkv.Pair{Key: iter.Key(), Value: iter.Value()}, true + return sdkkv.Pair{Key: iter.Key(), Value: iter.Value()}, true } diff --git a/store/iavl/store.go b/store/iavl/store.go index cf3ecb681192..f31a33ea0d6c 100644 --- a/store/iavl/store.go +++ b/store/iavl/store.go @@ -11,7 +11,6 @@ import ( "github.com/tendermint/iavl" abci "github.com/tendermint/tendermint/abci/types" "github.com/tendermint/tendermint/crypto/merkle" - tmkv "github.com/tendermint/tendermint/libs/kv" dbm "github.com/tendermint/tm-db" "github.com/cosmos/cosmos-sdk/store/cachekv" @@ -20,6 +19,7 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" + "github.com/cosmos/cosmos-sdk/types/kv" ) const ( @@ -333,7 +333,7 @@ type iavlIterator struct { tree *iavl.ImmutableTree // Channel to push iteration values. - iterCh chan tmkv.Pair + iterCh chan kv.Pair // Close this to release goroutine. quitCh chan struct{} @@ -359,7 +359,7 @@ func newIAVLIterator(tree *iavl.ImmutableTree, start, end []byte, ascending bool start: sdk.CopyBytes(start), end: sdk.CopyBytes(end), ascending: ascending, - iterCh: make(chan tmkv.Pair), // Set capacity > 0? + iterCh: make(chan kv.Pair), // Set capacity > 0? quitCh: make(chan struct{}), initCh: make(chan struct{}), } @@ -376,7 +376,7 @@ func (iter *iavlIterator) iterateRoutine() { select { case <-iter.quitCh: return true // done with iteration. - case iter.iterCh <- tmkv.Pair{Key: key, Value: value}: + case iter.iterCh <- kv.Pair{Key: key, Value: value}: return false // yay. } }, diff --git a/store/rootmulti/internal/maps/maps.go b/store/rootmulti/internal/maps/maps.go index feb52bafb9fb..eb29cc816e4f 100644 --- a/store/rootmulti/internal/maps/maps.go +++ b/store/rootmulti/internal/maps/maps.go @@ -5,9 +5,9 @@ import ( "github.com/tendermint/tendermint/crypto/merkle" "github.com/tendermint/tendermint/crypto/tmhash" - "github.com/tendermint/tendermint/libs/kv" "github.com/cosmos/cosmos-sdk/store/types" + "github.com/cosmos/cosmos-sdk/types/kv" ) // merkleMap defines a merkle-ized tree from a map. Leave values are treated as diff --git a/store/types/store.go b/store/types/store.go index fd4e33596e8d..25a30591909b 100644 --- a/store/types/store.go +++ b/store/types/store.go @@ -5,8 +5,9 @@ import ( "io" abci "github.com/tendermint/tendermint/abci/types" - tmkv "github.com/tendermint/tendermint/libs/kv" dbm "github.com/tendermint/tm-db" + + "github.com/cosmos/cosmos-sdk/types/kv" ) type Store interface { @@ -381,7 +382,7 @@ func (key *MemoryStoreKey) String() string { //---------------------------------------- // key-value result for iterator queries -type KVPair tmkv.Pair +type KVPair kv.Pair //---------------------------------------- diff --git a/store/types/utils.go b/store/types/utils.go index 1c836281ea88..22c8ca0761f9 100644 --- a/store/types/utils.go +++ b/store/types/utils.go @@ -3,7 +3,7 @@ package types import ( "bytes" - tmkv "github.com/tendermint/tendermint/libs/kv" + "github.com/cosmos/cosmos-sdk/types/kv" ) // Iterator over all the keys with a certain prefix in ascending order @@ -18,7 +18,7 @@ func KVStoreReversePrefixIterator(kvs KVStore, prefix []byte) Iterator { // DiffKVStores compares two KVstores and returns all the key/value pairs // that differ from one another. It also skips value comparison for a set of provided prefixes. -func DiffKVStores(a KVStore, b KVStore, prefixesToSkip [][]byte) (kvAs, kvBs []tmkv.Pair) { +func DiffKVStores(a KVStore, b KVStore, prefixesToSkip [][]byte) (kvAs, kvBs []kv.Pair) { iterA := a.Iterator(nil, nil) defer iterA.Close() @@ -32,15 +32,15 @@ func DiffKVStores(a KVStore, b KVStore, prefixesToSkip [][]byte) (kvAs, kvBs []t return kvAs, kvBs } - var kvA, kvB tmkv.Pair + var kvA, kvB kv.Pair if iterA.Valid() { - kvA = tmkv.Pair{Key: iterA.Key(), Value: iterA.Value()} + kvA = kv.Pair{Key: iterA.Key(), Value: iterA.Value()} iterA.Next() } if iterB.Valid() { - kvB = tmkv.Pair{Key: iterB.Key(), Value: iterB.Value()} + kvB = kv.Pair{Key: iterB.Key(), Value: iterB.Value()} iterB.Next() } diff --git a/testutil/testdata/proto.pb.go b/testutil/testdata/proto.pb.go index 5c69d0bd7d4c..0edda11fcf47 100644 --- a/testutil/testdata/proto.pb.go +++ b/testutil/testdata/proto.pb.go @@ -1608,7 +1608,7 @@ type TestVersion2 struct { // *TestVersion2_F Sum isTestVersion2_Sum `protobuf_oneof:"sum"` G *types.Any `protobuf:"bytes,8,opt,name=g,proto3" json:"g,omitempty"` - H []*TestVersion2 `protobuf:"bytes,9,rep,name=h,proto3" json:"h,omitempty"` + H []*TestVersion1 `protobuf:"bytes,9,rep,name=h,proto3" json:"h,omitempty"` // google.protobuf.Timestamp i = 10; // google.protobuf.Timestamp j = 11; // [(gogoproto.stdtime) = true]; *Customer1 `protobuf:"bytes,12,opt,name=k,proto3,embedded=k" json:"k,omitempty"` @@ -1727,7 +1727,7 @@ func (m *TestVersion2) GetG() *types.Any { return nil } -func (m *TestVersion2) GetH() []*TestVersion2 { +func (m *TestVersion2) GetH() []*TestVersion1 { if m != nil { return m.H } @@ -3150,112 +3150,111 @@ func init() { func init() { proto.RegisterFile("proto.proto", fileDescriptor_2fcc84b9998d60d8) } var fileDescriptor_2fcc84b9998d60d8 = []byte{ - // 1669 bytes of a gzipped FileDescriptorProto + // 1664 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x58, 0xcf, 0x6f, 0x23, 0x49, 0x15, 0x4e, 0xb9, 0xed, 0xc4, 0x7e, 0x31, 0x8e, 0x29, 0xc2, 0xd2, 0xe3, 0x65, 0x33, 0xa1, 0x35, 0xec, 0x98, 0xd5, 0x8e, 0x43, 0xda, 0x5e, 0x09, 0xcd, 0x01, 0xad, 0x9d, 0x49, 0x36, 0x23, 0x66, 0xb2, 0xa8, 0x67, 0x35, 0xa0, 0xbd, 0x44, 0xe5, 0xee, 0x72, 0xbb, 0x94, 0x76, 0x55, 0xe8, 0x6a, 0xcf, 0x8c, 0x39, 0xc2, 0x81, 0x2b, 0x17, 0xc4, 0x99, 0x23, 0x27, 0xb4, 0x7f, 0x05, 0x7b, 0x41, 0x9a, 0x0b, 0x12, 0x12, 0xd2, 0x08, 0xcd, 0x5c, 0xf9, 0x0b, 0x40, 0x08, 0x54, 0xdd, 0xd5, 0x3f, - 0x92, 0xb1, 0xb3, 0x4e, 0x76, 0xd9, 0x55, 0xa4, 0xbd, 0xd8, 0x55, 0xaf, 0xbf, 0xfa, 0xea, 0xd5, - 0xf7, 0xea, 0xbd, 0xae, 0x2e, 0x58, 0x3f, 0x0d, 0x45, 0x24, 0x3a, 0xf1, 0x2f, 0xae, 0x46, 0x54, - 0x46, 0x1e, 0x89, 0x48, 0x6b, 0xd3, 0x17, 0xbe, 0x88, 0x8d, 0x3b, 0xaa, 0x95, 0x3c, 0x6f, 0xdd, - 0xf0, 0x85, 0xf0, 0x03, 0xba, 0x13, 0xf7, 0x86, 0xd3, 0xd1, 0x0e, 0xe1, 0xb3, 0xe4, 0x91, 0x75, - 0x07, 0x8c, 0x7b, 0xc2, 0xc7, 0x18, 0xca, 0x92, 0xfd, 0x92, 0x9a, 0x68, 0x1b, 0xb5, 0x6b, 0x4e, - 0xdc, 0x56, 0x36, 0x4e, 0x26, 0xd4, 0x2c, 0x25, 0x36, 0xd5, 0xb6, 0xde, 0x03, 0x63, 0x8f, 0x44, - 0xd8, 0x84, 0xb5, 0x89, 0xe0, 0xec, 0x84, 0x86, 0x7a, 0x44, 0xda, 0xc5, 0x9b, 0x50, 0x09, 0xd8, - 0x13, 0x2a, 0xe3, 0x51, 0x15, 0x27, 0xe9, 0x58, 0x1f, 0x40, 0xed, 0x90, 0xc8, 0x3e, 0x67, 0x13, - 0x12, 0xe0, 0x77, 0x61, 0x95, 0xc4, 0xad, 0x78, 0xec, 0xba, 0xbd, 0xd9, 0x49, 0xdc, 0xeb, 0xa4, - 0xee, 0x75, 0xfa, 0x7c, 0xe6, 0x68, 0x0c, 0xae, 0x03, 0x7a, 0x16, 0x93, 0x19, 0x0e, 0x7a, 0x66, - 0xed, 0x41, 0xfd, 0x90, 0xc8, 0x9c, 0xab, 0x0b, 0x30, 0x26, 0xf2, 0x78, 0x09, 0xbe, 0xda, 0x38, - 0x1d, 0x64, 0x3d, 0x84, 0x8d, 0x84, 0x24, 0xe7, 0xb9, 0x0b, 0x0d, 0xc5, 0xb3, 0x24, 0x57, 0x7d, - 0x5c, 0x18, 0x6b, 0xdd, 0x86, 0xf5, 0x7d, 0x77, 0x2c, 0x1c, 0xfa, 0x8b, 0x29, 0x95, 0x89, 0x36, - 0x54, 0x4a, 0xe2, 0xd3, 0x4c, 0x9b, 0xa4, 0x6b, 0xb5, 0xa1, 0x9e, 0x00, 0xe5, 0xa9, 0xe0, 0x92, - 0x5e, 0x80, 0xfc, 0x3e, 0x6c, 0x3c, 0x22, 0xb3, 0x43, 0x1a, 0x04, 0x19, 0x6d, 0x1a, 0x0d, 0x54, - 0x88, 0x46, 0x07, 0x9a, 0x39, 0x4c, 0x93, 0xb6, 0xa0, 0xea, 0x87, 0x94, 0x46, 0x8c, 0xfb, 0x1a, - 0x9b, 0xf5, 0xad, 0x7d, 0x68, 0x7c, 0x44, 0x65, 0xa4, 0x96, 0xa0, 0x59, 0xbb, 0x00, 0x84, 0xcf, - 0x96, 0xd2, 0x8f, 0xf0, 0x99, 0x5e, 0xf0, 0x3e, 0x6c, 0x64, 0x34, 0x7a, 0x56, 0x7b, 0x4e, 0x1c, - 0xbe, 0xd5, 0x49, 0xb7, 0x65, 0x27, 0x13, 0xab, 0x18, 0x86, 0xc7, 0xb0, 0xa6, 0x68, 0x1e, 0x4a, - 0x1f, 0xff, 0x04, 0xd6, 0x24, 0xf3, 0x39, 0x0d, 0xa5, 0x89, 0xb6, 0x8d, 0x76, 0x7d, 0xb0, 0xfb, - 0xaf, 0x17, 0x37, 0xef, 0xf8, 0x2c, 0x1a, 0x4f, 0x87, 0x1d, 0x57, 0x4c, 0x76, 0x5c, 0x21, 0x27, - 0x42, 0xea, 0xbf, 0x3b, 0xd2, 0x3b, 0xd9, 0x89, 0x66, 0xa7, 0x54, 0x76, 0xfa, 0xae, 0xdb, 0xf7, - 0xbc, 0x90, 0x4a, 0xe9, 0xa4, 0x0c, 0xd6, 0x10, 0xbe, 0x39, 0x20, 0xde, 0xc3, 0x69, 0x10, 0xb1, - 0x47, 0xcc, 0xe7, 0x24, 0x9a, 0x86, 0x14, 0x6f, 0x01, 0xc8, 0xb4, 0xa3, 0x27, 0x71, 0x0a, 0x16, - 0x7c, 0x1b, 0x36, 0x26, 0x24, 0x60, 0x2e, 0x13, 0x53, 0x79, 0x3c, 0x62, 0x34, 0xf0, 0xcc, 0xca, - 0x36, 0x6a, 0xd7, 0x9d, 0x46, 0x66, 0x3e, 0x50, 0xd6, 0xbb, 0xe5, 0xe7, 0x7f, 0xb8, 0x89, 0xac, - 0x08, 0x6a, 0x7b, 0x53, 0x19, 0x89, 0x09, 0x0d, 0x77, 0x71, 0x03, 0x4a, 0xcc, 0x8b, 0x17, 0x5d, - 0x71, 0x4a, 0xcc, 0x9b, 0x97, 0x38, 0xf8, 0x07, 0xd0, 0x94, 0xd3, 0xa1, 0x74, 0x43, 0x76, 0x1a, - 0x31, 0xc1, 0x8f, 0x47, 0x94, 0x9a, 0xc6, 0x36, 0x6a, 0x97, 0x9c, 0x8d, 0xa2, 0xfd, 0x80, 0xc6, - 0xdb, 0xe2, 0x94, 0xcc, 0x26, 0x94, 0x47, 0xe6, 0x5a, 0xb2, 0x2d, 0x74, 0xd7, 0xfa, 0xa4, 0x94, - 0x4f, 0x6b, 0xbf, 0x36, 0x6d, 0x0b, 0xaa, 0x8c, 0x7b, 0x53, 0x19, 0x85, 0x33, 0x9d, 0x7d, 0x59, - 0x3f, 0x73, 0xc9, 0x28, 0xb8, 0xb4, 0x09, 0x95, 0x11, 0x7d, 0x4a, 0x43, 0xb3, 0x1c, 0xfb, 0x91, - 0x74, 0xf0, 0x9b, 0x50, 0x0d, 0xa9, 0xa4, 0xe1, 0x13, 0xea, 0x99, 0xbf, 0xaf, 0xc6, 0x79, 0x97, - 0x19, 0xf0, 0xbb, 0x50, 0x76, 0x59, 0x34, 0x33, 0x57, 0xb7, 0x51, 0xbb, 0x61, 0x9b, 0x79, 0x80, - 0x33, 0xaf, 0x3a, 0x7b, 0x2c, 0x9a, 0x39, 0x31, 0x0a, 0xdf, 0x85, 0x6f, 0x4c, 0x98, 0x74, 0x69, - 0x10, 0x10, 0x4e, 0xc5, 0x54, 0x9a, 0x70, 0xc1, 0xfe, 0x3a, 0x0b, 0xb5, 0x3e, 0x80, 0xb2, 0x62, - 0xc2, 0x55, 0x28, 0x3f, 0x20, 0x42, 0x36, 0x57, 0x70, 0x03, 0xe0, 0x81, 0x90, 0x7d, 0xee, 0xd3, - 0x80, 0xca, 0x26, 0xc2, 0x75, 0xa8, 0xfe, 0x94, 0x04, 0xa2, 0x1f, 0x44, 0xa2, 0x59, 0xc2, 0x00, - 0xab, 0x0f, 0x85, 0x74, 0xc5, 0xd3, 0xa6, 0x81, 0xd7, 0x61, 0xed, 0x88, 0xb0, 0x50, 0x0c, 0x59, - 0xb3, 0x6c, 0x75, 0xa0, 0x7a, 0x44, 0x65, 0x44, 0xbd, 0x5e, 0x7f, 0x99, 0x40, 0x59, 0x7f, 0x45, - 0xe9, 0x80, 0xee, 0x52, 0x03, 0xb0, 0x05, 0x25, 0xd2, 0x33, 0xcb, 0xdb, 0x46, 0x7b, 0xdd, 0xc6, - 0xb9, 0x22, 0xe9, 0xa4, 0x4e, 0x89, 0xf4, 0x70, 0x17, 0x2a, 0x8c, 0x7b, 0xf4, 0x99, 0x59, 0x89, - 0x61, 0x6f, 0x9d, 0x87, 0x75, 0xfb, 0x9d, 0xfb, 0xea, 0xf9, 0x3e, 0x8f, 0xc2, 0x99, 0x93, 0x60, - 0x5b, 0x0f, 0x00, 0x72, 0x23, 0x6e, 0x82, 0x71, 0x42, 0x67, 0xb1, 0x2f, 0x86, 0xa3, 0x9a, 0xb8, - 0x0d, 0x95, 0x27, 0x24, 0x98, 0x26, 0xde, 0xcc, 0x9f, 0x3b, 0x01, 0xdc, 0x2d, 0xfd, 0x08, 0x59, - 0x1f, 0xa7, 0xcb, 0xb2, 0x97, 0x5b, 0xd6, 0x3b, 0xb0, 0xca, 0x63, 0x7c, 0xbc, 0x67, 0xe6, 0xd0, - 0x77, 0xfb, 0x8e, 0x46, 0x58, 0x07, 0x29, 0xf7, 0xee, 0xeb, 0xdc, 0x39, 0xcf, 0x02, 0x37, 0xed, - 0x9c, 0xe7, 0xfd, 0x2c, 0x56, 0x83, 0xd7, 0x78, 0x9a, 0x60, 0xa8, 0x42, 0x99, 0x6c, 0x6c, 0xd5, - 0x9c, 0xb7, 0xa7, 0x2d, 0x2f, 0x0b, 0xde, 0x15, 0x19, 0x54, 0x38, 0x87, 0x8b, 0xc3, 0x39, 0x70, - 0x4a, 0xc3, 0x9e, 0xc5, 0x33, 0x2d, 0xe7, 0xce, 0xa2, 0x72, 0x5b, 0xcd, 0x82, 0x1c, 0xd5, 0x5c, - 0x42, 0xc9, 0x41, 0xaa, 0x80, 0xca, 0xc9, 0x50, 0x4c, 0x23, 0x1a, 0xe7, 0x64, 0xcd, 0x49, 0x3a, - 0xd6, 0xcf, 0x33, 0x7d, 0x07, 0x57, 0xd0, 0x37, 0x67, 0xd7, 0x0a, 0x18, 0x99, 0x02, 0xd6, 0xaf, - 0x0a, 0x15, 0xa5, 0xbb, 0xd4, 0xbe, 0x68, 0x40, 0x49, 0x8e, 0x74, 0xe9, 0x2a, 0xc9, 0x11, 0xfe, - 0x2e, 0xd4, 0xe4, 0x34, 0x74, 0xc7, 0x24, 0xf4, 0xa9, 0xae, 0x24, 0xb9, 0x01, 0x6f, 0xc3, 0xba, - 0x47, 0x65, 0xc4, 0x38, 0x51, 0xd5, 0x2d, 0x2e, 0xa9, 0x35, 0xa7, 0x68, 0xc2, 0x6f, 0x43, 0xc3, - 0x0d, 0xa9, 0xc7, 0xa2, 0x63, 0x97, 0x84, 0xde, 0x31, 0x17, 0x49, 0xd1, 0x3b, 0x5c, 0x71, 0xea, - 0x89, 0x7d, 0x8f, 0x84, 0xde, 0x91, 0xc0, 0x6f, 0x41, 0xcd, 0x1d, 0xab, 0xb7, 0x96, 0x82, 0x54, - 0x35, 0xa4, 0x9a, 0x98, 0x8e, 0x04, 0xde, 0x81, 0xaa, 0x08, 0x99, 0xcf, 0x38, 0x09, 0xcc, 0xda, - 0xf9, 0xd7, 0x4f, 0x56, 0xaa, 0x9d, 0x0c, 0x34, 0xa8, 0x65, 0x55, 0xd6, 0xfa, 0x67, 0x09, 0xea, - 0xea, 0x4d, 0xf4, 0x98, 0x86, 0x92, 0x09, 0xbe, 0x9b, 0x9c, 0x39, 0x90, 0x3e, 0x73, 0xe0, 0x5b, - 0x80, 0x88, 0x16, 0xf7, 0x8d, 0x9c, 0xb3, 0x38, 0xc0, 0x41, 0x44, 0xa1, 0x86, 0x3a, 0xc0, 0x0b, - 0x51, 0x43, 0x85, 0x72, 0xf5, 0xe6, 0x5a, 0x88, 0x72, 0xf1, 0x3b, 0x80, 0x3c, 0x5d, 0x2a, 0x16, - 0xa0, 0x06, 0xe5, 0x4f, 0x5f, 0xdc, 0x5c, 0x71, 0x90, 0x87, 0x1b, 0x80, 0x68, 0x5c, 0x8f, 0x2b, - 0x87, 0x2b, 0x0e, 0xa2, 0xf8, 0x6d, 0x40, 0xa3, 0x58, 0xc2, 0x85, 0x63, 0x15, 0x6e, 0x84, 0x2d, - 0x40, 0x7e, 0xac, 0xe3, 0xa2, 0x82, 0x8c, 0x7c, 0xe5, 0xed, 0xd8, 0xac, 0x5d, 0xec, 0xed, 0x18, - 0xdf, 0x06, 0x74, 0x62, 0xd6, 0x17, 0x6a, 0x3e, 0x28, 0x3f, 0x7f, 0x71, 0x13, 0x39, 0xe8, 0x64, - 0x50, 0x01, 0x43, 0x4e, 0x27, 0xd6, 0xaf, 0x8d, 0x33, 0x72, 0xdb, 0x97, 0x95, 0xdb, 0x5e, 0x4a, - 0x6e, 0x7b, 0x29, 0xb9, 0x6d, 0x25, 0xf7, 0xad, 0xcf, 0x92, 0xdb, 0xbe, 0x92, 0xd0, 0xf6, 0x17, - 0x28, 0xb4, 0x7d, 0x19, 0xa1, 0xf1, 0x9b, 0x50, 0xe3, 0xf4, 0xa9, 0x3e, 0xc6, 0xdc, 0xd8, 0x46, - 0xed, 0xb2, 0x53, 0xe5, 0xf4, 0x69, 0x7c, 0x80, 0x49, 0xa3, 0xf0, 0xbb, 0xb3, 0x51, 0xe8, 0x5e, - 0x36, 0x0a, 0xdd, 0xa5, 0xa2, 0xd0, 0x5d, 0x2a, 0x0a, 0xdd, 0xa5, 0xa2, 0xd0, 0xbd, 0x52, 0x14, - 0xba, 0x5f, 0xd5, 0x76, 0xc7, 0x77, 0x00, 0x73, 0xc1, 0x8f, 0xdd, 0x90, 0x45, 0xcc, 0x25, 0x81, - 0x0e, 0xc7, 0x6f, 0xe2, 0xda, 0xe5, 0x34, 0xb9, 0xe0, 0x7b, 0xfa, 0xc9, 0x99, 0xb8, 0xfc, 0xbb, - 0x04, 0xad, 0xa2, 0xfb, 0x0f, 0x04, 0xa7, 0x1f, 0x72, 0xfa, 0xe1, 0xe8, 0xb1, 0x7a, 0x95, 0x5f, - 0xd3, 0x28, 0x5d, 0x1b, 0xf5, 0xff, 0xb3, 0x0a, 0xdf, 0x39, 0xaf, 0xfe, 0x51, 0xfc, 0xb6, 0xf2, - 0xaf, 0x89, 0xf4, 0xbb, 0x79, 0x42, 0x7c, 0x6f, 0x3e, 0xaa, 0xb0, 0xa6, 0x6b, 0x92, 0x1b, 0xf8, - 0x7d, 0x58, 0x65, 0x9c, 0xd3, 0x70, 0xd7, 0x6c, 0xc4, 0xe4, 0xed, 0xcf, 0x5c, 0x59, 0xe7, 0x7e, - 0x8c, 0x77, 0xf4, 0xb8, 0x8c, 0xc1, 0x36, 0x37, 0x2e, 0xc5, 0x60, 0x6b, 0x06, 0xbb, 0xf5, 0x47, - 0x04, 0xab, 0x09, 0x69, 0xe1, 0x9c, 0x64, 0x2c, 0x3c, 0x27, 0xdd, 0x57, 0x47, 0x7e, 0x4e, 0x43, - 0x1d, 0xfd, 0xee, 0xb2, 0x1e, 0x27, 0x7f, 0xf1, 0x8f, 0x93, 0x30, 0xb4, 0x7e, 0xa8, 0x3e, 0x04, - 0x52, 0x63, 0x61, 0xf2, 0x5a, 0x3a, 0x79, 0xfc, 0x4d, 0xa6, 0x27, 0x57, 0xed, 0xd6, 0x9f, 0x52, - 0x5f, 0xed, 0xd7, 0xe0, 0x26, 0xac, 0xb9, 0x62, 0xca, 0xd3, 0x8f, 0xc4, 0x9a, 0x93, 0x76, 0xaf, - 0xea, 0xb1, 0xfd, 0x45, 0x78, 0x9c, 0xe6, 0xdf, 0x7f, 0xcf, 0xe6, 0x5f, 0xef, 0xeb, 0xfc, 0xbb, - 0x46, 0xf9, 0xd7, 0xfb, 0xdc, 0xf9, 0xd7, 0xfb, 0x92, 0xf3, 0xaf, 0xf7, 0xb9, 0xf2, 0xcf, 0x58, - 0x98, 0x7f, 0x9f, 0xfc, 0xdf, 0xf2, 0xaf, 0xb7, 0x54, 0xfe, 0xd9, 0x17, 0xe6, 0xdf, 0x66, 0xf1, - 0xe2, 0xc0, 0xd0, 0x97, 0x04, 0x69, 0x06, 0xfe, 0x05, 0x25, 0x97, 0x84, 0x7a, 0xbe, 0x83, 0x7b, - 0x57, 0xfb, 0x1c, 0xfa, 0xca, 0x3f, 0x4b, 0xd2, 0xf5, 0xfc, 0x1d, 0x9d, 0x39, 0x4f, 0x1d, 0xdc, - 0xdb, 0xfd, 0x19, 0x8b, 0xc6, 0xfb, 0xcf, 0xa2, 0x90, 0xf4, 0xf9, 0xec, 0x4b, 0x5d, 0xdb, 0xad, - 0x7c, 0x6d, 0x05, 0x5c, 0x9f, 0xcf, 0x32, 0x8f, 0x2e, 0xbd, 0xba, 0x8f, 0xa0, 0x5e, 0x1c, 0x8f, - 0xdb, 0x6a, 0x01, 0x17, 0x5c, 0xe3, 0xa6, 0x15, 0x80, 0xa8, 0x85, 0x27, 0x95, 0xd1, 0x50, 0x15, - 0xb0, 0x9e, 0x54, 0xc0, 0xb8, 0xe7, 0xda, 0x7f, 0x46, 0xb0, 0xae, 0x26, 0x7c, 0x44, 0xc3, 0x27, - 0xcc, 0xa5, 0xf8, 0x3d, 0x28, 0xef, 0xbb, 0x63, 0x81, 0xbf, 0x9d, 0xfb, 0x53, 0xb8, 0xf1, 0x6e, - 0xbd, 0x71, 0xde, 0xac, 0x2f, 0x85, 0xfb, 0x50, 0x4d, 0xaf, 0xa7, 0xf1, 0x8d, 0x1c, 0x73, 0xee, - 0x66, 0xbb, 0xd5, 0x9a, 0xf7, 0x48, 0x53, 0xfc, 0x38, 0xb9, 0x23, 0x56, 0x91, 0x32, 0xcf, 0x8a, - 0x91, 0x5f, 0x62, 0xb7, 0x6e, 0xcc, 0x79, 0x92, 0x8c, 0x1f, 0x1c, 0x7e, 0xfa, 0x72, 0x0b, 0x3d, - 0x7f, 0xb9, 0x85, 0xfe, 0xf1, 0x72, 0x0b, 0xfd, 0xf6, 0xd5, 0xd6, 0xca, 0xf3, 0x57, 0x5b, 0x2b, - 0x7f, 0x7b, 0xb5, 0xb5, 0xf2, 0x71, 0xe7, 0xe2, 0xdb, 0x65, 0x2a, 0xa3, 0x69, 0xc4, 0x82, 0x9d, - 0x94, 0x79, 0xb8, 0x1a, 0xcb, 0xd8, 0xfd, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x7d, 0x45, 0xa4, - 0xce, 0x79, 0x19, 0x00, 0x00, + 0x92, 0xb1, 0xb3, 0x4e, 0x16, 0x76, 0x14, 0x89, 0x8b, 0x5d, 0xf5, 0xfa, 0xab, 0xaf, 0x5e, 0x7d, + 0xaf, 0xde, 0xeb, 0xea, 0x82, 0xf5, 0xd3, 0x50, 0x44, 0xa2, 0x13, 0xff, 0xe2, 0x6a, 0x44, 0x65, + 0xe4, 0x91, 0x88, 0xb4, 0x36, 0x7d, 0xe1, 0x8b, 0xd8, 0xb8, 0xa3, 0x5a, 0xc9, 0xf3, 0xd6, 0x0d, + 0x5f, 0x08, 0x3f, 0xa0, 0x3b, 0x71, 0x6f, 0x38, 0x1d, 0xed, 0x10, 0x3e, 0x4b, 0x1e, 0x59, 0x77, + 0xc0, 0xb8, 0x27, 0x7c, 0x8c, 0xa1, 0x2c, 0xd9, 0xcf, 0xa9, 0x89, 0xb6, 0x51, 0xbb, 0xe6, 0xc4, + 0x6d, 0x65, 0xe3, 0x64, 0x42, 0xcd, 0x52, 0x62, 0x53, 0x6d, 0xeb, 0x03, 0x30, 0xf6, 0x48, 0x84, + 0x4d, 0x58, 0x9b, 0x08, 0xce, 0x4e, 0x68, 0xa8, 0x47, 0xa4, 0x5d, 0xbc, 0x09, 0x95, 0x80, 0x3d, + 0xa1, 0x32, 0x1e, 0x55, 0x71, 0x92, 0x8e, 0xf5, 0x11, 0xd4, 0x0e, 0x89, 0xec, 0x73, 0x36, 0x21, + 0x01, 0x7e, 0x1f, 0x56, 0x49, 0xdc, 0x8a, 0xc7, 0xae, 0xdb, 0x9b, 0x9d, 0xc4, 0xbd, 0x4e, 0xea, + 0x5e, 0xa7, 0xcf, 0x67, 0x8e, 0xc6, 0xe0, 0x3a, 0xa0, 0x67, 0x31, 0x99, 0xe1, 0xa0, 0x67, 0xd6, + 0x1e, 0xd4, 0x0f, 0x89, 0xcc, 0xb9, 0xba, 0x00, 0x63, 0x22, 0x8f, 0x97, 0xe0, 0xab, 0x8d, 0xd3, + 0x41, 0xd6, 0x43, 0xd8, 0x48, 0x48, 0x72, 0x9e, 0xbb, 0xd0, 0x50, 0x3c, 0x4b, 0x72, 0xd5, 0xc7, + 0x85, 0xb1, 0xd6, 0x6d, 0x58, 0xdf, 0x77, 0xc7, 0xc2, 0xa1, 0x3f, 0x9b, 0x52, 0x99, 0x68, 0x43, + 0xa5, 0x24, 0x3e, 0xcd, 0xb4, 0x49, 0xba, 0x56, 0x1b, 0xea, 0x09, 0x50, 0x9e, 0x0a, 0x2e, 0xe9, + 0x05, 0xc8, 0xef, 0xc2, 0xc6, 0x23, 0x32, 0x3b, 0xa4, 0x41, 0x90, 0xd1, 0xa6, 0xd1, 0x40, 0x85, + 0x68, 0x74, 0xa0, 0x99, 0xc3, 0x34, 0x69, 0x0b, 0xaa, 0x7e, 0x48, 0x69, 0xc4, 0xb8, 0xaf, 0xb1, + 0x59, 0xdf, 0xda, 0x87, 0xc6, 0x27, 0x54, 0x46, 0x6a, 0x09, 0x9a, 0xb5, 0x0b, 0x40, 0xf8, 0x6c, + 0x29, 0xfd, 0x08, 0x9f, 0xe9, 0x05, 0xef, 0xc3, 0x46, 0x46, 0xa3, 0x67, 0xb5, 0xe7, 0xc4, 0xe1, + 0x1b, 0x9d, 0x74, 0x5b, 0x76, 0x32, 0xb1, 0x8a, 0x61, 0x78, 0x0c, 0x6b, 0x8a, 0xe6, 0xa1, 0xf4, + 0xf1, 0x8f, 0x60, 0x4d, 0x32, 0x9f, 0xd3, 0x50, 0x9a, 0x68, 0xdb, 0x68, 0xd7, 0x07, 0xbb, 0xff, + 0x78, 0x71, 0xf3, 0x8e, 0xcf, 0xa2, 0xf1, 0x74, 0xd8, 0x71, 0xc5, 0x64, 0xc7, 0x15, 0x72, 0x22, + 0xa4, 0xfe, 0xbb, 0x23, 0xbd, 0x93, 0x9d, 0x68, 0x76, 0x4a, 0x65, 0xa7, 0xef, 0xba, 0x7d, 0xcf, + 0x0b, 0xa9, 0x94, 0x4e, 0xca, 0x60, 0x0d, 0xe1, 0xeb, 0x03, 0xe2, 0x3d, 0x9c, 0x06, 0x11, 0x7b, + 0xc4, 0x7c, 0x4e, 0xa2, 0x69, 0x48, 0xf1, 0x16, 0x80, 0x4c, 0x3b, 0x7a, 0x12, 0xa7, 0x60, 0xc1, + 0xb7, 0x61, 0x63, 0x42, 0x02, 0xe6, 0x32, 0x31, 0x95, 0xc7, 0x23, 0x46, 0x03, 0xcf, 0xac, 0x6c, + 0xa3, 0x76, 0xdd, 0x69, 0x64, 0xe6, 0x03, 0x65, 0xbd, 0x5b, 0x7e, 0xfe, 0xbb, 0x9b, 0xc8, 0x8a, + 0xa0, 0xb6, 0x37, 0x95, 0x91, 0x98, 0xd0, 0x70, 0x17, 0x37, 0xa0, 0xc4, 0xbc, 0x78, 0xd1, 0x15, + 0xa7, 0xc4, 0xbc, 0x79, 0x89, 0x83, 0xbf, 0x07, 0x4d, 0x39, 0x1d, 0x4a, 0x37, 0x64, 0xa7, 0x11, + 0x13, 0xfc, 0x78, 0x44, 0xa9, 0x69, 0x6c, 0xa3, 0x76, 0xc9, 0xd9, 0x28, 0xda, 0x0f, 0x68, 0xbc, + 0x2d, 0x4e, 0xc9, 0x6c, 0x42, 0x79, 0x64, 0xae, 0x25, 0xdb, 0x42, 0x77, 0xad, 0xcf, 0x4a, 0xf9, + 0xb4, 0xf6, 0x6b, 0xd3, 0xb6, 0xa0, 0xca, 0xb8, 0x37, 0x95, 0x51, 0x38, 0xd3, 0xd9, 0x97, 0xf5, + 0x33, 0x97, 0x8c, 0x82, 0x4b, 0x9b, 0x50, 0x19, 0xd1, 0xa7, 0x34, 0x34, 0xcb, 0xb1, 0x1f, 0x49, + 0x07, 0xbf, 0x0d, 0xd5, 0x90, 0x4a, 0x1a, 0x3e, 0xa1, 0x9e, 0xf9, 0xdb, 0x6a, 0x9c, 0x77, 0x99, + 0x01, 0xbf, 0x0f, 0x65, 0x97, 0x45, 0x33, 0x73, 0x75, 0x1b, 0xb5, 0x1b, 0xb6, 0x99, 0x07, 0x38, + 0xf3, 0xaa, 0xb3, 0xc7, 0xa2, 0x99, 0x13, 0xa3, 0xf0, 0x5d, 0xf8, 0xda, 0x84, 0x49, 0x97, 0x06, + 0x01, 0xe1, 0x54, 0x4c, 0xa5, 0x09, 0x17, 0xec, 0xaf, 0xb3, 0x50, 0xeb, 0x23, 0x28, 0x2b, 0x26, + 0x5c, 0x85, 0xf2, 0x03, 0x22, 0x64, 0x73, 0x05, 0x37, 0x00, 0x1e, 0x08, 0xd9, 0xe7, 0x3e, 0x0d, + 0xa8, 0x6c, 0x22, 0x5c, 0x87, 0xea, 0x8f, 0x49, 0x20, 0xfa, 0x41, 0x24, 0x9a, 0x25, 0x0c, 0xb0, + 0xfa, 0x50, 0x48, 0x57, 0x3c, 0x6d, 0x1a, 0x78, 0x1d, 0xd6, 0x8e, 0x08, 0x0b, 0xc5, 0x90, 0x35, + 0xcb, 0x56, 0x07, 0xaa, 0x47, 0x54, 0x46, 0xd4, 0xeb, 0xf5, 0x97, 0x09, 0x94, 0xf5, 0x67, 0x94, + 0x0e, 0xe8, 0x2e, 0x35, 0x00, 0x5b, 0x50, 0x22, 0x3d, 0xb3, 0xbc, 0x6d, 0xb4, 0xd7, 0x6d, 0x9c, + 0x2b, 0x92, 0x4e, 0xea, 0x94, 0x48, 0x0f, 0x77, 0xa1, 0xc2, 0xb8, 0x47, 0x9f, 0x99, 0x95, 0x18, + 0xf6, 0xce, 0x79, 0x58, 0xb7, 0xdf, 0xb9, 0xaf, 0x9e, 0xef, 0xf3, 0x28, 0x9c, 0x39, 0x09, 0xb6, + 0xf5, 0x00, 0x20, 0x37, 0xe2, 0x26, 0x18, 0x27, 0x74, 0x16, 0xfb, 0x62, 0x38, 0xaa, 0x89, 0xdb, + 0x50, 0x79, 0x42, 0x82, 0x69, 0xe2, 0xcd, 0xfc, 0xb9, 0x13, 0xc0, 0xdd, 0xd2, 0x0f, 0x90, 0xf5, + 0x69, 0xba, 0x2c, 0x7b, 0xb9, 0x65, 0xbd, 0x07, 0xab, 0x3c, 0xc6, 0xc7, 0x7b, 0x66, 0x0e, 0x7d, + 0xb7, 0xef, 0x68, 0x84, 0x75, 0x90, 0x72, 0xef, 0xbe, 0xce, 0x9d, 0xf3, 0x2c, 0x70, 0xd3, 0xce, + 0x79, 0x3e, 0xcc, 0x62, 0x35, 0x78, 0x8d, 0xa7, 0x09, 0x86, 0x2a, 0x94, 0xc9, 0xc6, 0x56, 0xcd, + 0x79, 0x7b, 0xda, 0xf2, 0xb2, 0xe0, 0x5d, 0x91, 0x41, 0x85, 0x73, 0xb8, 0x38, 0x9c, 0x03, 0xa7, + 0x34, 0xec, 0x59, 0x3c, 0xd3, 0x72, 0xee, 0x2c, 0x2a, 0xb7, 0xd5, 0x2c, 0xc8, 0x51, 0xcd, 0x25, + 0x94, 0x1c, 0xa4, 0x0a, 0xa8, 0x9c, 0x0c, 0xc5, 0x34, 0xa2, 0x71, 0x4e, 0xd6, 0x9c, 0xa4, 0x63, + 0xfd, 0x34, 0xd3, 0x77, 0x70, 0x05, 0x7d, 0x73, 0x76, 0xad, 0x80, 0x91, 0x29, 0x60, 0xfd, 0xa2, + 0x50, 0x51, 0xba, 0x4b, 0xed, 0x8b, 0x06, 0x94, 0xe4, 0x48, 0x97, 0xae, 0x92, 0x1c, 0xe1, 0x6f, + 0x43, 0x4d, 0x4e, 0x43, 0x77, 0x4c, 0x42, 0x9f, 0xea, 0x4a, 0x92, 0x1b, 0xf0, 0x36, 0xac, 0x7b, + 0x54, 0x46, 0x8c, 0x13, 0x55, 0xdd, 0xe2, 0x92, 0x5a, 0x73, 0x8a, 0x26, 0xfc, 0x2e, 0x34, 0xdc, + 0x90, 0x7a, 0x2c, 0x3a, 0x76, 0x49, 0xe8, 0x1d, 0x73, 0x91, 0x14, 0xbd, 0xc3, 0x15, 0xa7, 0x9e, + 0xd8, 0xf7, 0x48, 0xe8, 0x1d, 0x09, 0xfc, 0x0e, 0xd4, 0xdc, 0xb1, 0x7a, 0x6b, 0x29, 0x48, 0x55, + 0x43, 0xaa, 0x89, 0xe9, 0x48, 0xe0, 0x1d, 0xa8, 0x8a, 0x90, 0xf9, 0x8c, 0x93, 0xc0, 0xac, 0x9d, + 0x7f, 0xfd, 0x64, 0xa5, 0xda, 0xc9, 0x40, 0x83, 0x5a, 0x56, 0x65, 0xad, 0xbf, 0x97, 0xa0, 0xae, + 0xde, 0x44, 0x8f, 0x69, 0x28, 0x99, 0xe0, 0xbb, 0xc9, 0x99, 0x03, 0xe9, 0x33, 0x07, 0xbe, 0x05, + 0x88, 0x68, 0x71, 0xdf, 0xca, 0x39, 0x8b, 0x03, 0x1c, 0x44, 0x14, 0x6a, 0xa8, 0x03, 0xbc, 0x10, + 0x35, 0x54, 0x28, 0x57, 0x6f, 0xae, 0x85, 0x28, 0x17, 0xbf, 0x07, 0xc8, 0xd3, 0xa5, 0x62, 0x01, + 0x6a, 0x50, 0xfe, 0xfc, 0xc5, 0xcd, 0x15, 0x07, 0x79, 0xb8, 0x01, 0x88, 0xc6, 0xf5, 0xb8, 0x72, + 0xb8, 0xe2, 0x20, 0x8a, 0xdf, 0x05, 0x34, 0x8a, 0x25, 0x5c, 0x38, 0x56, 0xe1, 0x46, 0xd8, 0x02, + 0xe4, 0xc7, 0x3a, 0x2e, 0x2a, 0xc8, 0xc8, 0x57, 0xde, 0x8e, 0xcd, 0xda, 0xc5, 0xde, 0x8e, 0xf1, + 0x6d, 0x40, 0x27, 0x66, 0x7d, 0xa1, 0xe6, 0x83, 0xf2, 0xf3, 0x17, 0x37, 0x91, 0x83, 0x4e, 0x06, + 0x15, 0x30, 0xe4, 0x74, 0x62, 0xfd, 0xd2, 0x38, 0x23, 0xb7, 0x7d, 0x59, 0xb9, 0xed, 0xa5, 0xe4, + 0xb6, 0x97, 0x92, 0xdb, 0x56, 0x72, 0xdf, 0xfa, 0x22, 0xb9, 0xed, 0x2b, 0x09, 0x6d, 0xbf, 0x29, + 0xa1, 0xf1, 0xdb, 0x50, 0xe3, 0xf4, 0xa9, 0x3e, 0xc6, 0xdc, 0xd8, 0x46, 0xed, 0xb2, 0x53, 0xe5, + 0xf4, 0x69, 0x7c, 0x80, 0x49, 0xa3, 0xf0, 0x9b, 0xb3, 0x51, 0xe8, 0x5e, 0x36, 0x0a, 0xdd, 0xa5, + 0xa2, 0xd0, 0x5d, 0x2a, 0x0a, 0xdd, 0xa5, 0xa2, 0xd0, 0xbd, 0x52, 0x14, 0xba, 0x6f, 0x2c, 0x0a, + 0x77, 0x00, 0x73, 0xc1, 0x8f, 0xdd, 0x90, 0x45, 0xcc, 0x25, 0x81, 0x0e, 0xc7, 0xaf, 0xe2, 0xda, + 0xe5, 0x34, 0xb9, 0xe0, 0x7b, 0xfa, 0xc9, 0x99, 0xb8, 0xfc, 0xb3, 0x04, 0xad, 0xa2, 0xfb, 0x0f, + 0x04, 0xa7, 0x1f, 0x73, 0xfa, 0xf1, 0xe8, 0xb1, 0x7a, 0x95, 0x5f, 0xd3, 0x28, 0x5d, 0x1b, 0xf5, + 0xff, 0xb5, 0x0a, 0xdf, 0x3a, 0xaf, 0xfe, 0x51, 0xfc, 0xb6, 0xf2, 0xaf, 0x89, 0xf4, 0xbb, 0x79, + 0x42, 0x7c, 0x67, 0x3e, 0xaa, 0xb0, 0xa6, 0x6b, 0x92, 0x1b, 0xf8, 0x43, 0x58, 0x65, 0x9c, 0xd3, + 0x70, 0xd7, 0x6c, 0xc4, 0xe4, 0xed, 0x2f, 0x5c, 0x59, 0xe7, 0x7e, 0x8c, 0x77, 0xf4, 0xb8, 0x8c, + 0xc1, 0x36, 0x37, 0x2e, 0xc5, 0x60, 0x6b, 0x06, 0xbb, 0xf5, 0x7b, 0x04, 0xab, 0x09, 0x69, 0xe1, + 0x9c, 0x64, 0x2c, 0x3c, 0x27, 0xdd, 0x57, 0x47, 0x7e, 0x4e, 0x43, 0x1d, 0xfd, 0xee, 0xb2, 0x1e, + 0x27, 0x7f, 0xf1, 0x8f, 0x93, 0x30, 0xb4, 0xbe, 0xaf, 0x3e, 0x04, 0x52, 0x63, 0x61, 0xf2, 0x5a, + 0x3a, 0x79, 0xfc, 0x4d, 0xa6, 0x27, 0x57, 0xed, 0xd6, 0x1f, 0x52, 0x5f, 0xed, 0xd7, 0xe0, 0x26, + 0xac, 0xb9, 0x62, 0xca, 0xd3, 0x8f, 0xc4, 0x9a, 0x93, 0x76, 0xaf, 0xea, 0xb1, 0xfd, 0xdf, 0xf0, + 0x38, 0xcd, 0xbf, 0x7f, 0x9f, 0xcd, 0xbf, 0xde, 0xff, 0xf3, 0xef, 0x1a, 0xe5, 0x5f, 0xef, 0x4b, + 0xe7, 0x5f, 0xef, 0x2b, 0xce, 0xbf, 0xde, 0x97, 0xca, 0x3f, 0x63, 0x61, 0xfe, 0x7d, 0xf6, 0x3f, + 0xcb, 0xbf, 0xde, 0x52, 0xf9, 0x67, 0x5f, 0x98, 0x7f, 0x9b, 0xc5, 0x8b, 0x03, 0x43, 0x5f, 0x12, + 0xa4, 0x19, 0xf8, 0x27, 0x94, 0x5c, 0x12, 0xea, 0xf9, 0x0e, 0xee, 0x5d, 0xed, 0x73, 0xe8, 0x8d, + 0x7f, 0x96, 0xa4, 0xeb, 0xf9, 0x2b, 0x3a, 0x73, 0x9e, 0x3a, 0xb8, 0xb7, 0xfb, 0x13, 0x16, 0x8d, + 0xf7, 0x9f, 0x45, 0x21, 0xe9, 0xf3, 0xd9, 0x57, 0xba, 0xb6, 0x5b, 0xf9, 0xda, 0x0a, 0xb8, 0x3e, + 0x9f, 0x65, 0x1e, 0x5d, 0x7a, 0x75, 0x9f, 0x40, 0xbd, 0x38, 0x1e, 0xb7, 0xd5, 0x02, 0x2e, 0xb8, + 0xc6, 0x4d, 0x2b, 0x00, 0x51, 0x0b, 0x4f, 0x2a, 0xa3, 0xa1, 0x2a, 0x60, 0x3d, 0xa9, 0x80, 0x71, + 0xcf, 0xb5, 0xff, 0x88, 0x60, 0x5d, 0x4d, 0xf8, 0x88, 0x86, 0x4f, 0x98, 0x4b, 0xf1, 0x07, 0x50, + 0xde, 0x77, 0xc7, 0x02, 0x7f, 0x33, 0xf7, 0xa7, 0x70, 0xe3, 0xdd, 0x7a, 0xeb, 0xbc, 0x59, 0x5f, + 0x0a, 0xf7, 0xa1, 0x9a, 0x5e, 0x4f, 0xe3, 0x1b, 0x39, 0xe6, 0xdc, 0xcd, 0x76, 0xab, 0x35, 0xef, + 0x91, 0xa6, 0xf8, 0x61, 0x72, 0x47, 0xac, 0x22, 0x65, 0x9e, 0x15, 0x23, 0xbf, 0xc4, 0x6e, 0xdd, + 0x98, 0xf3, 0x24, 0x19, 0x3f, 0x38, 0xfc, 0xfc, 0xe5, 0x16, 0x7a, 0xfe, 0x72, 0x0b, 0xfd, 0xed, + 0xe5, 0x16, 0xfa, 0xf5, 0xab, 0xad, 0x95, 0xe7, 0xaf, 0xb6, 0x56, 0xfe, 0xf2, 0x6a, 0x6b, 0xe5, + 0xd3, 0xce, 0xc5, 0xb7, 0xcb, 0x54, 0x46, 0xd3, 0x88, 0x05, 0x3b, 0x29, 0xf3, 0x70, 0x35, 0x96, + 0xb1, 0xfb, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x62, 0xd0, 0xa8, 0x05, 0x79, 0x19, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -10935,7 +10934,7 @@ func (m *TestVersion2) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - m.H = append(m.H, &TestVersion2{}) + m.H = append(m.H, &TestVersion1{}) if err := m.H[len(m.H)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } diff --git a/types/kv/kv.go b/types/kv/kv.go new file mode 100644 index 000000000000..23cb7ec789f5 --- /dev/null +++ b/types/kv/kv.go @@ -0,0 +1,36 @@ +package kv + +import ( + "bytes" + "sort" +) + +//---------------------------------------- +// KVPair + +/* +Defined in types.proto +type Pair struct { + Key []byte + Value []byte +} +*/ + +type Pairs []Pair + +// Sorting +func (kvs Pairs) Len() int { return len(kvs) } +func (kvs Pairs) Less(i, j int) bool { + switch bytes.Compare(kvs[i].Key, kvs[j].Key) { + case -1: + return true + case 0: + return bytes.Compare(kvs[i].Value, kvs[j].Value) < 0 + case 1: + return false + default: + panic("invalid comparison result") + } +} +func (kvs Pairs) Swap(i, j int) { kvs[i], kvs[j] = kvs[j], kvs[i] } +func (kvs Pairs) Sort() { sort.Sort(kvs) } diff --git a/types/kv/kv.pb.go b/types/kv/kv.pb.go new file mode 100644 index 000000000000..1e15bdc68f85 --- /dev/null +++ b/types/kv/kv.pb.go @@ -0,0 +1,373 @@ +// Code generated by protoc-gen-gogo. DO NOT EDIT. +// source: cosmos/kv/kv.proto + +package kv + +import ( + fmt "fmt" + proto "github.com/gogo/protobuf/proto" + io "io" + math "math" + math_bits "math/bits" +) + +// Reference imports to suppress errors if they are not otherwise used. +var _ = proto.Marshal +var _ = fmt.Errorf +var _ = math.Inf + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the proto package it is being compiled against. +// A compilation error at this line likely means your copy of the +// proto package needs to be updated. +const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package + +// Key-Value Pair +type Pair struct { + Key []byte `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` + Value []byte `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` +} + +func (m *Pair) Reset() { *m = Pair{} } +func (m *Pair) String() string { return proto.CompactTextString(m) } +func (*Pair) ProtoMessage() {} +func (*Pair) Descriptor() ([]byte, []int) { + return fileDescriptor_23371bd43b515c6e, []int{0} +} +func (m *Pair) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *Pair) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_Pair.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 *Pair) XXX_Merge(src proto.Message) { + xxx_messageInfo_Pair.Merge(m, src) +} +func (m *Pair) XXX_Size() int { + return m.Size() +} +func (m *Pair) XXX_DiscardUnknown() { + xxx_messageInfo_Pair.DiscardUnknown(m) +} + +var xxx_messageInfo_Pair proto.InternalMessageInfo + +func (m *Pair) GetKey() []byte { + if m != nil { + return m.Key + } + return nil +} + +func (m *Pair) GetValue() []byte { + if m != nil { + return m.Value + } + return nil +} + +func init() { + proto.RegisterType((*Pair)(nil), "cosmos.kv.Pair") +} + +func init() { proto.RegisterFile("cosmos/kv/kv.proto", fileDescriptor_23371bd43b515c6e) } + +var fileDescriptor_23371bd43b515c6e = []byte{ + // 150 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4a, 0xce, 0x2f, 0xce, + 0xcd, 0x2f, 0xd6, 0xcf, 0x2e, 0xd3, 0xcf, 0x2e, 0xd3, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, + 0x84, 0x88, 0xe9, 0x65, 0x97, 0x29, 0xe9, 0x71, 0xb1, 0x04, 0x24, 0x66, 0x16, 0x09, 0x09, 0x70, + 0x31, 0x67, 0xa7, 0x56, 0x4a, 0x30, 0x2a, 0x30, 0x6a, 0xf0, 0x04, 0x81, 0x98, 0x42, 0x22, 0x5c, + 0xac, 0x65, 0x89, 0x39, 0xa5, 0xa9, 0x12, 0x4c, 0x60, 0x31, 0x08, 0xc7, 0xc9, 0xfe, 0xc4, 0x23, + 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, 0xe1, 0xc2, + 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0x54, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, + 0x92, 0xf3, 0x73, 0xf5, 0xa1, 0x76, 0x42, 0x28, 0xdd, 0xe2, 0x94, 0x6c, 0xfd, 0x92, 0xca, 0x82, + 0x54, 0x90, 0x23, 0x92, 0xd8, 0xc0, 0x4e, 0x30, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0xae, 0xee, + 0xa2, 0x4c, 0x98, 0x00, 0x00, 0x00, +} + +func (m *Pair) 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 *Pair) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *Pair) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Value) > 0 { + i -= len(m.Value) + copy(dAtA[i:], m.Value) + i = encodeVarintKv(dAtA, i, uint64(len(m.Value))) + i-- + dAtA[i] = 0x12 + } + if len(m.Key) > 0 { + i -= len(m.Key) + copy(dAtA[i:], m.Key) + i = encodeVarintKv(dAtA, i, uint64(len(m.Key))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func encodeVarintKv(dAtA []byte, offset int, v uint64) int { + offset -= sovKv(v) + base := offset + for v >= 1<<7 { + dAtA[offset] = uint8(v&0x7f | 0x80) + v >>= 7 + offset++ + } + dAtA[offset] = uint8(v) + return base +} +func (m *Pair) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Key) + if l > 0 { + n += 1 + l + sovKv(uint64(l)) + } + l = len(m.Value) + if l > 0 { + n += 1 + l + sovKv(uint64(l)) + } + return n +} + +func sovKv(x uint64) (n int) { + return (math_bits.Len64(x|1) + 6) / 7 +} +func sozKv(x uint64) (n int) { + return sovKv(uint64((x << 1) ^ uint64((int64(x) >> 63)))) +} +func (m *Pair) 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 ErrIntOverflowKv + } + 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: Pair: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: Pair: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Key", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKv + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthKv + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthKv + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Key = append(m.Key[:0], dAtA[iNdEx:postIndex]...) + if m.Key == nil { + m.Key = []byte{} + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowKv + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthKv + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthKv + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Value = append(m.Value[:0], dAtA[iNdEx:postIndex]...) + if m.Value == nil { + m.Value = []byte{} + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipKv(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthKv + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthKv + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func skipKv(dAtA []byte) (n int, err error) { + l := len(dAtA) + iNdEx := 0 + depth := 0 + for iNdEx < l { + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowKv + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + wireType := int(wire & 0x7) + switch wireType { + case 0: + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowKv + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + iNdEx++ + if dAtA[iNdEx-1] < 0x80 { + break + } + } + case 1: + iNdEx += 8 + case 2: + var length int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowKv + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + length |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if length < 0 { + return 0, ErrInvalidLengthKv + } + iNdEx += length + case 3: + depth++ + case 4: + if depth == 0 { + return 0, ErrUnexpectedEndOfGroupKv + } + depth-- + case 5: + iNdEx += 4 + default: + return 0, fmt.Errorf("proto: illegal wireType %d", wireType) + } + if iNdEx < 0 { + return 0, ErrInvalidLengthKv + } + if depth == 0 { + return iNdEx, nil + } + } + return 0, io.ErrUnexpectedEOF +} + +var ( + ErrInvalidLengthKv = fmt.Errorf("proto: negative length found during unmarshaling") + ErrIntOverflowKv = fmt.Errorf("proto: integer overflow") + ErrUnexpectedEndOfGroupKv = fmt.Errorf("proto: unexpected end of group") +) diff --git a/types/store.go b/types/store.go index 96494d98e931..4fa1136cf3a5 100644 --- a/types/store.go +++ b/types/store.go @@ -1,9 +1,8 @@ package types import ( - tmkv "github.com/tendermint/tendermint/libs/kv" - "github.com/cosmos/cosmos-sdk/store/types" + "github.com/cosmos/cosmos-sdk/types/kv" ) type ( @@ -25,7 +24,7 @@ type ( // StoreDecoderRegistry defines each of the modules store decoders. Used for ImportExport // simulation. -type StoreDecoderRegistry map[string]func(kvA, kvB tmkv.Pair) string +type StoreDecoderRegistry map[string]func(kvA, kvB kv.Pair) string // Iterator over all the keys with a certain prefix in ascending order func KVStorePrefixIterator(kvs KVStore, prefix []byte) Iterator { @@ -51,7 +50,7 @@ func KVStoreReversePrefixIteratorPaginated(kvs KVStore, prefix []byte, page, lim // DiffKVStores compares two KVstores and returns all the key/value pairs // that differ from one another. It also skips value comparison for a set of provided prefixes -func DiffKVStores(a KVStore, b KVStore, prefixesToSkip [][]byte) (kvAs, kvBs []tmkv.Pair) { +func DiffKVStores(a KVStore, b KVStore, prefixesToSkip [][]byte) (kvAs, kvBs []kv.Pair) { return types.DiffKVStores(a, b, prefixesToSkip) } diff --git a/types/tx/signing/signing.pb.go b/types/tx/signing/signing.pb.go index f8c817e7efa0..c283c40e7846 100644 --- a/types/tx/signing/signing.pb.go +++ b/types/tx/signing/signing.pb.go @@ -113,9 +113,8 @@ func (m *SignatureDescriptors) GetSignatures() []*SignatureDescriptor { // itself. It is primarily used for coordinating signatures between clients. type SignatureDescriptor struct { // public_key is the public key of the signer - PublicKey *types.PublicKey `protobuf:"bytes,1,opt,name=public_key,json=publicKey,proto3" json:"public_key,omitempty"` - // data represents the signature data - Data *SignatureDescriptor_Data `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"` + PublicKey *types.PublicKey `protobuf:"bytes,1,opt,name=public_key,json=publicKey,proto3" json:"public_key,omitempty"` + Data *SignatureDescriptor_Data `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"` } func (m *SignatureDescriptor) Reset() { *m = SignatureDescriptor{} } @@ -165,6 +164,7 @@ func (m *SignatureDescriptor) GetData() *SignatureDescriptor_Data { return nil } +// Data represents signature data type SignatureDescriptor_Data struct { // sum is the oneof that specifies whether this represents single or multi-signature data // diff --git a/x/auth/simulation/decoder.go b/x/auth/simulation/decoder.go index cf3ab69e0b95..2fdf752037b3 100644 --- a/x/auth/simulation/decoder.go +++ b/x/auth/simulation/decoder.go @@ -5,9 +5,9 @@ import ( "fmt" gogotypes "github.com/gogo/protobuf/types" - tmkv "github.com/tendermint/tendermint/libs/kv" "github.com/cosmos/cosmos-sdk/codec" + "github.com/cosmos/cosmos-sdk/types/kv" "github.com/cosmos/cosmos-sdk/x/auth/types" ) @@ -18,8 +18,8 @@ type AuthUnmarshaler interface { // NewDecodeStore returns a decoder function closure that unmarshals the KVPair's // Value to the corresponding auth type. -func NewDecodeStore(ak AuthUnmarshaler) func(kvA, kvB tmkv.Pair) string { - return func(kvA, kvB tmkv.Pair) string { +func NewDecodeStore(ak AuthUnmarshaler) func(kvA, kvB kv.Pair) string { + return func(kvA, kvB kv.Pair) string { switch { case bytes.Equal(kvA.Key[:1], types.AddressStoreKeyPrefix): accA, err := ak.UnmarshalAccount(kvA.Value) diff --git a/x/auth/simulation/decoder_test.go b/x/auth/simulation/decoder_test.go index 6603d0083cb9..73f14eb44154 100644 --- a/x/auth/simulation/decoder_test.go +++ b/x/auth/simulation/decoder_test.go @@ -7,10 +7,10 @@ import ( gogotypes "github.com/gogo/protobuf/types" "github.com/stretchr/testify/require" "github.com/tendermint/tendermint/crypto/ed25519" - tmkv "github.com/tendermint/tendermint/libs/kv" "github.com/cosmos/cosmos-sdk/simapp" sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/types/kv" "github.com/cosmos/cosmos-sdk/x/auth/simulation" "github.com/cosmos/cosmos-sdk/x/auth/types" ) @@ -31,16 +31,16 @@ func TestDecodeStore(t *testing.T) { globalAccNumber := gogotypes.UInt64Value{Value: 10} - kvPairs := tmkv.Pairs{ - tmkv.Pair{ + kvPairs := kv.Pairs{ + kv.Pair{ Key: types.AddressStoreKey(delAddr1), Value: accBz, }, - tmkv.Pair{ + kv.Pair{ Key: types.GlobalAccountNumberKey, Value: cdc.MustMarshalBinaryBare(&globalAccNumber), }, - tmkv.Pair{ + kv.Pair{ Key: []byte{0x99}, Value: []byte{0x99}, }, diff --git a/x/bank/simulation/decoder.go b/x/bank/simulation/decoder.go index 9ae45c7a223f..944606961032 100644 --- a/x/bank/simulation/decoder.go +++ b/x/bank/simulation/decoder.go @@ -4,10 +4,8 @@ import ( "bytes" "fmt" + "github.com/cosmos/cosmos-sdk/types/kv" "github.com/cosmos/cosmos-sdk/x/bank/exported" - - tmkv "github.com/tendermint/tendermint/libs/kv" - "github.com/cosmos/cosmos-sdk/x/bank/types" ) @@ -17,8 +15,8 @@ type SupplyUnmarshaller interface { // NewDecodeStore returns a function closure that unmarshals the KVPair's values // to the corresponding types. -func NewDecodeStore(cdc SupplyUnmarshaller) func(kvA, kvB tmkv.Pair) string { - return func(kvA, kvB tmkv.Pair) string { +func NewDecodeStore(cdc SupplyUnmarshaller) func(kvA, kvB kv.Pair) string { + return func(kvA, kvB kv.Pair) string { switch { case bytes.Equal(kvA.Key[:1], types.SupplyKey): supplyA, err := cdc.UnmarshalSupply(kvA.Value) diff --git a/x/bank/simulation/decoder_test.go b/x/bank/simulation/decoder_test.go index 8b3e89c6e519..d68e273bf2a2 100644 --- a/x/bank/simulation/decoder_test.go +++ b/x/bank/simulation/decoder_test.go @@ -5,10 +5,10 @@ import ( "testing" "github.com/stretchr/testify/require" - tmkv "github.com/tendermint/tendermint/libs/kv" "github.com/cosmos/cosmos-sdk/simapp" sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/types/kv" "github.com/cosmos/cosmos-sdk/x/bank/simulation" "github.com/cosmos/cosmos-sdk/x/bank/types" ) @@ -22,9 +22,9 @@ func TestDecodeStore(t *testing.T) { supplyBz, err := app.BankKeeper.MarshalSupply(totalSupply) require.NoError(t, err) - kvPairs := tmkv.Pairs{ - tmkv.Pair{Key: types.SupplyKey, Value: supplyBz}, - tmkv.Pair{Key: []byte{0x99}, Value: []byte{0x99}}, + kvPairs := kv.Pairs{ + kv.Pair{Key: types.SupplyKey, Value: supplyBz}, + kv.Pair{Key: []byte{0x99}, Value: []byte{0x99}}, } tests := []struct { diff --git a/x/capability/simulation/decoder.go b/x/capability/simulation/decoder.go index 8980efd570f9..9ab5521b747f 100644 --- a/x/capability/simulation/decoder.go +++ b/x/capability/simulation/decoder.go @@ -4,17 +4,16 @@ import ( "bytes" "fmt" - tmkv "github.com/tendermint/tendermint/libs/kv" - "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/types/kv" "github.com/cosmos/cosmos-sdk/x/capability/types" ) // NewDecodeStore returns a decoder function closure that unmarshals the KVPair's // Value to the corresponding capaility type. -func NewDecodeStore(cdc codec.Marshaler) func(kvA, kvB tmkv.Pair) string { - return func(kvA, kvB tmkv.Pair) string { +func NewDecodeStore(cdc codec.Marshaler) func(kvA, kvB kv.Pair) string { + return func(kvA, kvB kv.Pair) string { switch { case bytes.Equal(kvA.Key, types.KeyIndex): idxA := sdk.BigEndianToUint64(kvA.Value) diff --git a/x/capability/simulation/decoder_test.go b/x/capability/simulation/decoder_test.go index 8f10e9085421..e7993eb884e6 100644 --- a/x/capability/simulation/decoder_test.go +++ b/x/capability/simulation/decoder_test.go @@ -5,10 +5,10 @@ import ( "testing" "github.com/stretchr/testify/require" - tmkv "github.com/tendermint/tendermint/libs/kv" "github.com/cosmos/cosmos-sdk/simapp" sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/types/kv" "github.com/cosmos/cosmos-sdk/x/capability/simulation" "github.com/cosmos/cosmos-sdk/x/capability/types" ) @@ -21,16 +21,16 @@ func TestDecodeStore(t *testing.T) { Owners: []types.Owner{{Module: "transfer", Name: "ports/transfer"}}, } - kvPairs := tmkv.Pairs{ - tmkv.Pair{ + kvPairs := kv.Pairs{ + kv.Pair{ Key: types.KeyIndex, Value: sdk.Uint64ToBigEndian(10), }, - tmkv.Pair{ + kv.Pair{ Key: types.KeyPrefixIndexCapability, Value: cdc.MustMarshalBinaryBare(&capOwners), }, - tmkv.Pair{ + kv.Pair{ Key: []byte{0x99}, Value: []byte{0x99}, }, diff --git a/x/distribution/simulation/decoder.go b/x/distribution/simulation/decoder.go index 0d5f6dba568e..a2be7dc188bf 100644 --- a/x/distribution/simulation/decoder.go +++ b/x/distribution/simulation/decoder.go @@ -4,17 +4,16 @@ import ( "bytes" "fmt" - tmkv "github.com/tendermint/tendermint/libs/kv" - "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/types/kv" "github.com/cosmos/cosmos-sdk/x/distribution/types" ) // NewDecodeStore returns a decoder function closure that unmarshals the KVPair's // Value to the corresponding distribution type. -func NewDecodeStore(cdc codec.Marshaler) func(kvA, kvB tmkv.Pair) string { - return func(kvA, kvB tmkv.Pair) string { +func NewDecodeStore(cdc codec.Marshaler) func(kvA, kvB kv.Pair) string { + return func(kvA, kvB kv.Pair) string { switch { case bytes.Equal(kvA.Key[:1], types.FeePoolKey): var feePoolA, feePoolB types.FeePool diff --git a/x/distribution/simulation/decoder_test.go b/x/distribution/simulation/decoder_test.go index 7fddb1625c7b..afb3671b23cc 100644 --- a/x/distribution/simulation/decoder_test.go +++ b/x/distribution/simulation/decoder_test.go @@ -5,12 +5,11 @@ import ( "testing" "github.com/stretchr/testify/require" - "github.com/tendermint/tendermint/crypto/ed25519" - tmkv "github.com/tendermint/tendermint/libs/kv" "github.com/cosmos/cosmos-sdk/simapp" sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/types/kv" "github.com/cosmos/cosmos-sdk/x/distribution/simulation" "github.com/cosmos/cosmos-sdk/x/distribution/types" ) @@ -36,17 +35,17 @@ func TestDecodeDistributionStore(t *testing.T) { currentRewards := types.NewValidatorCurrentRewards(decCoins, 5) slashEvent := types.NewValidatorSlashEvent(10, sdk.OneDec()) - kvPairs := tmkv.Pairs{ - tmkv.Pair{Key: types.FeePoolKey, Value: cdc.MustMarshalBinaryBare(&feePool)}, - tmkv.Pair{Key: types.ProposerKey, Value: consAddr1.Bytes()}, - tmkv.Pair{Key: types.GetValidatorOutstandingRewardsKey(valAddr1), Value: cdc.MustMarshalBinaryBare(&outstanding)}, - tmkv.Pair{Key: types.GetDelegatorWithdrawAddrKey(delAddr1), Value: delAddr1.Bytes()}, - tmkv.Pair{Key: types.GetDelegatorStartingInfoKey(valAddr1, delAddr1), Value: cdc.MustMarshalBinaryBare(&info)}, - tmkv.Pair{Key: types.GetValidatorHistoricalRewardsKey(valAddr1, 100), Value: cdc.MustMarshalBinaryBare(&historicalRewards)}, - tmkv.Pair{Key: types.GetValidatorCurrentRewardsKey(valAddr1), Value: cdc.MustMarshalBinaryBare(¤tRewards)}, - tmkv.Pair{Key: types.GetValidatorAccumulatedCommissionKey(valAddr1), Value: cdc.MustMarshalBinaryBare(&commission)}, - tmkv.Pair{Key: types.GetValidatorSlashEventKeyPrefix(valAddr1, 13), Value: cdc.MustMarshalBinaryBare(&slashEvent)}, - tmkv.Pair{Key: []byte{0x99}, Value: []byte{0x99}}, + kvPairs := kv.Pairs{ + kv.Pair{Key: types.FeePoolKey, Value: cdc.MustMarshalBinaryBare(&feePool)}, + kv.Pair{Key: types.ProposerKey, Value: consAddr1.Bytes()}, + kv.Pair{Key: types.GetValidatorOutstandingRewardsKey(valAddr1), Value: cdc.MustMarshalBinaryBare(&outstanding)}, + kv.Pair{Key: types.GetDelegatorWithdrawAddrKey(delAddr1), Value: delAddr1.Bytes()}, + kv.Pair{Key: types.GetDelegatorStartingInfoKey(valAddr1, delAddr1), Value: cdc.MustMarshalBinaryBare(&info)}, + kv.Pair{Key: types.GetValidatorHistoricalRewardsKey(valAddr1, 100), Value: cdc.MustMarshalBinaryBare(&historicalRewards)}, + kv.Pair{Key: types.GetValidatorCurrentRewardsKey(valAddr1), Value: cdc.MustMarshalBinaryBare(¤tRewards)}, + kv.Pair{Key: types.GetValidatorAccumulatedCommissionKey(valAddr1), Value: cdc.MustMarshalBinaryBare(&commission)}, + kv.Pair{Key: types.GetValidatorSlashEventKeyPrefix(valAddr1, 13), Value: cdc.MustMarshalBinaryBare(&slashEvent)}, + kv.Pair{Key: []byte{0x99}, Value: []byte{0x99}}, } tests := []struct { diff --git a/x/evidence/simulation/decoder.go b/x/evidence/simulation/decoder.go index dd5becbbbdef..d8c185fd0488 100644 --- a/x/evidence/simulation/decoder.go +++ b/x/evidence/simulation/decoder.go @@ -4,10 +4,8 @@ import ( "bytes" "fmt" + "github.com/cosmos/cosmos-sdk/types/kv" "github.com/cosmos/cosmos-sdk/x/evidence/exported" - - tmkv "github.com/tendermint/tendermint/libs/kv" - "github.com/cosmos/cosmos-sdk/x/evidence/types" ) @@ -17,8 +15,8 @@ type EvidenceUnmarshaler interface { // NewDecodeStore returns a decoder function closure that unmarshals the KVPair's // Value to the corresponding evidence type. -func NewDecodeStore(cdc EvidenceUnmarshaler) func(kvA, kvB tmkv.Pair) string { - return func(kvA, kvB tmkv.Pair) string { +func NewDecodeStore(cdc EvidenceUnmarshaler) func(kvA, kvB kv.Pair) string { + return func(kvA, kvB kv.Pair) string { switch { case bytes.Equal(kvA.Key[:1], types.KeyPrefixEvidence): evidenceA, err := cdc.UnmarshalEvidence(kvA.Value) diff --git a/x/evidence/simulation/decoder_test.go b/x/evidence/simulation/decoder_test.go index bdfee6246895..ff19278436dd 100644 --- a/x/evidence/simulation/decoder_test.go +++ b/x/evidence/simulation/decoder_test.go @@ -7,10 +7,10 @@ import ( "github.com/stretchr/testify/require" "github.com/tendermint/tendermint/crypto/ed25519" - tmkv "github.com/tendermint/tendermint/libs/kv" "github.com/cosmos/cosmos-sdk/simapp" sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/types/kv" "github.com/cosmos/cosmos-sdk/x/evidence/simulation" "github.com/cosmos/cosmos-sdk/x/evidence/types" ) @@ -31,12 +31,12 @@ func TestDecodeStore(t *testing.T) { evBz, err := app.EvidenceKeeper.MarshalEvidence(ev) require.NoError(t, err) - kvPairs := tmkv.Pairs{ - tmkv.Pair{ + kvPairs := kv.Pairs{ + kv.Pair{ Key: types.KeyPrefixEvidence, Value: evBz, }, - tmkv.Pair{ + kv.Pair{ Key: []byte{0x99}, Value: []byte{0x99}, }, diff --git a/x/gov/simulation/decoder.go b/x/gov/simulation/decoder.go index 1433761a111a..75cb4a5fccc8 100644 --- a/x/gov/simulation/decoder.go +++ b/x/gov/simulation/decoder.go @@ -5,16 +5,15 @@ import ( "encoding/binary" "fmt" - tmkv "github.com/tendermint/tendermint/libs/kv" - "github.com/cosmos/cosmos-sdk/codec" + "github.com/cosmos/cosmos-sdk/types/kv" "github.com/cosmos/cosmos-sdk/x/gov/types" ) // NewDecodeStore returns a decoder function closure that unmarshals the KVPair's // Value to the corresponding gov type. -func NewDecodeStore(cdc codec.Marshaler) func(kvA, kvB tmkv.Pair) string { - return func(kvA, kvB tmkv.Pair) string { +func NewDecodeStore(cdc codec.Marshaler) func(kvA, kvB kv.Pair) string { + return func(kvA, kvB kv.Pair) string { switch { case bytes.Equal(kvA.Key[:1], types.ProposalsKeyPrefix): var proposalA types.Proposal diff --git a/x/gov/simulation/decoder_test.go b/x/gov/simulation/decoder_test.go index 20087f4a11ef..e08c62b6820f 100644 --- a/x/gov/simulation/decoder_test.go +++ b/x/gov/simulation/decoder_test.go @@ -7,12 +7,11 @@ import ( "time" "github.com/stretchr/testify/require" - "github.com/tendermint/tendermint/crypto/ed25519" - tmkv "github.com/tendermint/tendermint/libs/kv" "github.com/cosmos/cosmos-sdk/simapp" sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/types/kv" "github.com/cosmos/cosmos-sdk/x/gov/simulation" "github.com/cosmos/cosmos-sdk/x/gov/types" ) @@ -40,12 +39,12 @@ func TestDecodeStore(t *testing.T) { proposalBz, err := cdc.MarshalBinaryBare(&proposal) require.NoError(t, err) - kvPairs := tmkv.Pairs{ - tmkv.Pair{Key: types.ProposalKey(1), Value: proposalBz}, - tmkv.Pair{Key: types.InactiveProposalQueueKey(1, endTime), Value: proposalIDBz}, - tmkv.Pair{Key: types.DepositKey(1, delAddr1), Value: cdc.MustMarshalBinaryBare(&deposit)}, - tmkv.Pair{Key: types.VoteKey(1, delAddr1), Value: cdc.MustMarshalBinaryBare(&vote)}, - tmkv.Pair{Key: []byte{0x99}, Value: []byte{0x99}}, + kvPairs := kv.Pairs{ + kv.Pair{Key: types.ProposalKey(1), Value: proposalBz}, + kv.Pair{Key: types.InactiveProposalQueueKey(1, endTime), Value: proposalIDBz}, + kv.Pair{Key: types.DepositKey(1, delAddr1), Value: cdc.MustMarshalBinaryBare(&deposit)}, + kv.Pair{Key: types.VoteKey(1, delAddr1), Value: cdc.MustMarshalBinaryBare(&vote)}, + kv.Pair{Key: []byte{0x99}, Value: []byte{0x99}}, } tests := []struct { diff --git a/x/ibc-transfer/types/genesis.pb.go b/x/ibc-transfer/types/genesis.pb.go index d032d4650cdc..cd800d16f8bd 100644 --- a/x/ibc-transfer/types/genesis.pb.go +++ b/x/ibc-transfer/types/genesis.pb.go @@ -5,7 +5,6 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/cosmos-sdk/types" _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" io "io" @@ -77,21 +76,20 @@ func init() { func init() { proto.RegisterFile("ibc/transfer/genesis.proto", fileDescriptor_c13b8463155e05c2) } var fileDescriptor_c13b8463155e05c2 = []byte{ - // 218 bytes of a gzipped FileDescriptorProto + // 204 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xca, 0x4c, 0x4a, 0xd6, 0x2f, 0x29, 0x4a, 0xcc, 0x2b, 0x4e, 0x4b, 0x2d, 0xd2, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0xc9, 0x4c, 0x4a, 0xd6, 0x83, 0xc9, 0x49, 0x89, - 0xa4, 0xe7, 0xa7, 0xe7, 0x83, 0x25, 0xf4, 0x41, 0x2c, 0x88, 0x1a, 0x29, 0xe1, 0xe4, 0xfc, 0xe2, - 0xdc, 0xfc, 0x62, 0x7d, 0x08, 0x05, 0x15, 0x94, 0x46, 0x31, 0x14, 0xc6, 0x80, 0x48, 0x2a, 0xb9, - 0x72, 0xf1, 0xb8, 0x43, 0xac, 0x09, 0x2e, 0x49, 0x2c, 0x49, 0x15, 0x32, 0xe5, 0x62, 0x2f, 0xc8, - 0x2f, 0x2a, 0x89, 0xcf, 0x4c, 0x91, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x74, 0x92, 0x79, 0x74, 0x4f, - 0x9e, 0x2d, 0x20, 0xbf, 0xa8, 0xc4, 0xd3, 0xe5, 0xd3, 0x3d, 0x79, 0xbe, 0xca, 0xc4, 0xdc, 0x1c, - 0x2b, 0x25, 0xa8, 0x12, 0xa5, 0x20, 0x36, 0x10, 0xcb, 0x33, 0xc5, 0xc9, 0xfb, 0xc4, 0x23, 0x39, - 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, 0xe1, 0xc2, 0x63, - 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0x0c, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, - 0xf3, 0x73, 0xf5, 0x51, 0x5c, 0xa7, 0x5b, 0x9c, 0x92, 0xad, 0x5f, 0xa1, 0x9f, 0x99, 0x94, 0xac, - 0x8b, 0x70, 0x5c, 0x65, 0x41, 0x6a, 0x71, 0x12, 0x1b, 0xd8, 0x69, 0xc6, 0x80, 0x00, 0x00, 0x00, - 0xff, 0xff, 0x7a, 0xfc, 0xa4, 0xfa, 0x0e, 0x01, 0x00, 0x00, + 0xa4, 0xe7, 0xa7, 0xe7, 0x83, 0x25, 0xf4, 0x41, 0x2c, 0x88, 0x1a, 0x25, 0x57, 0x2e, 0x1e, 0x77, + 0x88, 0xa6, 0xe0, 0x92, 0xc4, 0x92, 0x54, 0x21, 0x53, 0x2e, 0xf6, 0x82, 0xfc, 0xa2, 0x92, 0xf8, + 0xcc, 0x14, 0x09, 0x46, 0x05, 0x46, 0x0d, 0x4e, 0x27, 0x99, 0x47, 0xf7, 0xe4, 0xd9, 0x02, 0xf2, + 0x8b, 0x4a, 0x3c, 0x5d, 0x3e, 0xdd, 0x93, 0xe7, 0xab, 0x4c, 0xcc, 0xcd, 0xb1, 0x52, 0x82, 0x2a, + 0x51, 0x0a, 0x62, 0x03, 0xb1, 0x3c, 0x53, 0x9c, 0xbc, 0x4f, 0x3c, 0x92, 0x63, 0xbc, 0xf0, 0x48, + 0x8e, 0xf1, 0xc1, 0x23, 0x39, 0xc6, 0x09, 0x8f, 0xe5, 0x18, 0x2e, 0x3c, 0x96, 0x63, 0xb8, 0xf1, + 0x58, 0x8e, 0x21, 0xca, 0x30, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, 0x3f, + 0x39, 0xbf, 0x38, 0x37, 0xbf, 0x18, 0x4a, 0xe9, 0x16, 0xa7, 0x64, 0xeb, 0x57, 0xe8, 0x67, 0x26, + 0x25, 0xeb, 0xc2, 0xdd, 0x5f, 0x52, 0x59, 0x90, 0x5a, 0x9c, 0xc4, 0x06, 0x76, 0x9a, 0x31, 0x20, + 0x00, 0x00, 0xff, 0xff, 0x2e, 0x43, 0x78, 0xc7, 0xdc, 0x00, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/ibc/02-client/simulation/decoder.go b/x/ibc/02-client/simulation/decoder.go index c7f566609dec..3c9a0c9486b6 100644 --- a/x/ibc/02-client/simulation/decoder.go +++ b/x/ibc/02-client/simulation/decoder.go @@ -4,16 +4,15 @@ import ( "bytes" "fmt" - tmkv "github.com/tendermint/tendermint/libs/kv" - "github.com/cosmos/cosmos-sdk/codec" + "github.com/cosmos/cosmos-sdk/types/kv" "github.com/cosmos/cosmos-sdk/x/ibc/02-client/exported" host "github.com/cosmos/cosmos-sdk/x/ibc/24-host" ) // NewDecodeStore returns a decoder function closure that unmarshals the KVPair's // Value to the corresponding client type. -func NewDecodeStore(cdc *codec.Codec, kvA, kvB tmkv.Pair) (string, bool) { +func NewDecodeStore(cdc *codec.Codec, kvA, kvB kv.Pair) (string, bool) { switch { case bytes.HasPrefix(kvA.Key, host.KeyClientStorePrefix) && bytes.HasSuffix(kvA.Key, host.KeyClientState()): var clientStateA, clientStateB exported.ClientState diff --git a/x/ibc/02-client/simulation/decoder_test.go b/x/ibc/02-client/simulation/decoder_test.go index 3ed65399b5a1..f1df3bd7ebe9 100644 --- a/x/ibc/02-client/simulation/decoder_test.go +++ b/x/ibc/02-client/simulation/decoder_test.go @@ -6,9 +6,9 @@ import ( "time" "github.com/stretchr/testify/require" - tmkv "github.com/tendermint/tendermint/libs/kv" "github.com/cosmos/cosmos-sdk/simapp" + "github.com/cosmos/cosmos-sdk/types/kv" "github.com/cosmos/cosmos-sdk/x/ibc/02-client/exported" "github.com/cosmos/cosmos-sdk/x/ibc/02-client/simulation" ibctmtypes "github.com/cosmos/cosmos-sdk/x/ibc/07-tendermint/types" @@ -29,20 +29,20 @@ func TestDecodeStore(t *testing.T) { Timestamp: time.Now().UTC(), } - kvPairs := tmkv.Pairs{ - tmkv.Pair{ + kvPairs := kv.Pairs{ + kv.Pair{ Key: host.FullKeyClientPath(clientID, host.KeyClientState()), Value: cdc.MustMarshalBinaryBare(clientState), }, - tmkv.Pair{ + kv.Pair{ Key: host.FullKeyClientPath(clientID, host.KeyClientType()), Value: []byte(exported.Tendermint.String()), }, - tmkv.Pair{ + kv.Pair{ Key: host.FullKeyClientPath(clientID, host.KeyConsensusState(10)), Value: cdc.MustMarshalBinaryBare(consState), }, - tmkv.Pair{ + kv.Pair{ Key: []byte{0x99}, Value: []byte{0x99}, }, diff --git a/x/ibc/03-connection/simulation/decoder.go b/x/ibc/03-connection/simulation/decoder.go index c80a987b6fd8..0b5079997e42 100644 --- a/x/ibc/03-connection/simulation/decoder.go +++ b/x/ibc/03-connection/simulation/decoder.go @@ -4,16 +4,15 @@ import ( "bytes" "fmt" - tmkv "github.com/tendermint/tendermint/libs/kv" - "github.com/cosmos/cosmos-sdk/codec" + "github.com/cosmos/cosmos-sdk/types/kv" "github.com/cosmos/cosmos-sdk/x/ibc/03-connection/types" host "github.com/cosmos/cosmos-sdk/x/ibc/24-host" ) // NewDecodeStore returns a decoder function closure that unmarshals the KVPair's // Value to the corresponding connection type. -func NewDecodeStore(cdc codec.BinaryMarshaler, kvA, kvB tmkv.Pair) (string, bool) { +func NewDecodeStore(cdc codec.BinaryMarshaler, kvA, kvB kv.Pair) (string, bool) { switch { case bytes.HasPrefix(kvA.Key, host.KeyClientStorePrefix) && bytes.HasSuffix(kvA.Key, host.KeyConnectionPrefix): var clientConnectionsA, clientConnectionsB types.ClientPaths diff --git a/x/ibc/03-connection/simulation/decoder_test.go b/x/ibc/03-connection/simulation/decoder_test.go index dc75f12ab9bb..f610c83ade75 100644 --- a/x/ibc/03-connection/simulation/decoder_test.go +++ b/x/ibc/03-connection/simulation/decoder_test.go @@ -5,9 +5,9 @@ import ( "testing" "github.com/stretchr/testify/require" - tmkv "github.com/tendermint/tendermint/libs/kv" "github.com/cosmos/cosmos-sdk/simapp" + "github.com/cosmos/cosmos-sdk/types/kv" "github.com/cosmos/cosmos-sdk/x/ibc/03-connection/simulation" "github.com/cosmos/cosmos-sdk/x/ibc/03-connection/types" host "github.com/cosmos/cosmos-sdk/x/ibc/24-host" @@ -28,16 +28,16 @@ func TestDecodeStore(t *testing.T) { Paths: []string{connectionID}, } - kvPairs := tmkv.Pairs{ - tmkv.Pair{ + kvPairs := kv.Pairs{ + kv.Pair{ Key: host.KeyClientConnections(connection.ClientID), Value: cdc.MustMarshalBinaryBare(&paths), }, - tmkv.Pair{ + kv.Pair{ Key: host.KeyConnection(connectionID), Value: cdc.MustMarshalBinaryBare(&connection), }, - tmkv.Pair{ + kv.Pair{ Key: []byte{0x99}, Value: []byte{0x99}, }, diff --git a/x/ibc/04-channel/simulation/decoder.go b/x/ibc/04-channel/simulation/decoder.go index 9d5b88670c4a..a254256ab34b 100644 --- a/x/ibc/04-channel/simulation/decoder.go +++ b/x/ibc/04-channel/simulation/decoder.go @@ -4,17 +4,16 @@ import ( "bytes" "fmt" - tmkv "github.com/tendermint/tendermint/libs/kv" - "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/types/kv" "github.com/cosmos/cosmos-sdk/x/ibc/04-channel/types" host "github.com/cosmos/cosmos-sdk/x/ibc/24-host" ) // NewDecodeStore returns a decoder function closure that unmarshals the KVPair's // Value to the corresponding channel type. -func NewDecodeStore(cdc codec.BinaryMarshaler, kvA, kvB tmkv.Pair) (string, bool) { +func NewDecodeStore(cdc codec.BinaryMarshaler, kvA, kvB kv.Pair) (string, bool) { switch { case bytes.HasPrefix(kvA.Key, []byte(host.KeyChannelPrefix)): var channelA, channelB types.Channel diff --git a/x/ibc/04-channel/simulation/decoder_test.go b/x/ibc/04-channel/simulation/decoder_test.go index af4ba2fc73ab..dfb1ace7d9c9 100644 --- a/x/ibc/04-channel/simulation/decoder_test.go +++ b/x/ibc/04-channel/simulation/decoder_test.go @@ -5,10 +5,10 @@ import ( "testing" "github.com/stretchr/testify/require" - tmkv "github.com/tendermint/tendermint/libs/kv" "github.com/cosmos/cosmos-sdk/simapp" sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/types/kv" "github.com/cosmos/cosmos-sdk/x/ibc/04-channel/simulation" "github.com/cosmos/cosmos-sdk/x/ibc/04-channel/types" host "github.com/cosmos/cosmos-sdk/x/ibc/24-host" @@ -28,32 +28,32 @@ func TestDecodeStore(t *testing.T) { bz := []byte{0x1, 0x2, 0x3} - kvPairs := tmkv.Pairs{ - tmkv.Pair{ + kvPairs := kv.Pairs{ + kv.Pair{ Key: host.KeyChannel(portID, channelID), Value: cdc.MustMarshalBinaryBare(&channel), }, - tmkv.Pair{ + kv.Pair{ Key: host.KeyNextSequenceSend(portID, channelID), Value: sdk.Uint64ToBigEndian(1), }, - tmkv.Pair{ + kv.Pair{ Key: host.KeyNextSequenceRecv(portID, channelID), Value: sdk.Uint64ToBigEndian(1), }, - tmkv.Pair{ + kv.Pair{ Key: host.KeyNextSequenceAck(portID, channelID), Value: sdk.Uint64ToBigEndian(1), }, - tmkv.Pair{ + kv.Pair{ Key: host.KeyPacketCommitment(portID, channelID, 1), Value: bz, }, - tmkv.Pair{ + kv.Pair{ Key: host.KeyPacketAcknowledgement(portID, channelID, 1), Value: bz, }, - tmkv.Pair{ + kv.Pair{ Key: []byte{0x99}, Value: []byte{0x99}, }, diff --git a/x/ibc/simulation/decoder.go b/x/ibc/simulation/decoder.go index cb8a3d1ee763..29048025ab61 100644 --- a/x/ibc/simulation/decoder.go +++ b/x/ibc/simulation/decoder.go @@ -3,9 +3,8 @@ package simulation import ( "fmt" - tmkv "github.com/tendermint/tendermint/libs/kv" - "github.com/cosmos/cosmos-sdk/codec" + "github.com/cosmos/cosmos-sdk/types/kv" clientsim "github.com/cosmos/cosmos-sdk/x/ibc/02-client/simulation" connectionsim "github.com/cosmos/cosmos-sdk/x/ibc/03-connection/simulation" channelsim "github.com/cosmos/cosmos-sdk/x/ibc/04-channel/simulation" @@ -14,8 +13,8 @@ import ( // NewDecodeStore returns a decoder function closure that unmarshals the KVPair's // Value to the corresponding ibc type. -func NewDecodeStore(cdc codec.BinaryMarshaler, aminoCdc *codec.Codec) func(kvA, kvB tmkv.Pair) string { - return func(kvA, kvB tmkv.Pair) string { +func NewDecodeStore(cdc codec.BinaryMarshaler, aminoCdc *codec.Codec) func(kvA, kvB kv.Pair) string { + return func(kvA, kvB kv.Pair) string { if res, found := clientsim.NewDecodeStore(aminoCdc, kvA, kvB); found { return res } diff --git a/x/ibc/simulation/decoder_test.go b/x/ibc/simulation/decoder_test.go index df6684360a30..4e34ee61133a 100644 --- a/x/ibc/simulation/decoder_test.go +++ b/x/ibc/simulation/decoder_test.go @@ -5,9 +5,9 @@ import ( "testing" "github.com/stretchr/testify/require" - tmkv "github.com/tendermint/tendermint/libs/kv" "github.com/cosmos/cosmos-sdk/simapp" + "github.com/cosmos/cosmos-sdk/types/kv" connectiontypes "github.com/cosmos/cosmos-sdk/x/ibc/03-connection/types" channeltypes "github.com/cosmos/cosmos-sdk/x/ibc/04-channel/types" ibctmtypes "github.com/cosmos/cosmos-sdk/x/ibc/07-tendermint/types" @@ -39,20 +39,20 @@ func TestDecodeStore(t *testing.T) { Version: "1.0", } - kvPairs := tmkv.Pairs{ - tmkv.Pair{ + kvPairs := kv.Pairs{ + kv.Pair{ Key: host.FullKeyClientPath(clientID, host.KeyClientState()), Value: aminoCdc.MustMarshalBinaryBare(clientState), }, - tmkv.Pair{ + kv.Pair{ Key: host.KeyConnection(connectionID), Value: cdc.MustMarshalBinaryBare(&connection), }, - tmkv.Pair{ + kv.Pair{ Key: host.KeyChannel(portID, channelID), Value: cdc.MustMarshalBinaryBare(&channel), }, - tmkv.Pair{ + kv.Pair{ Key: []byte{0x99}, Value: []byte{0x99}, }, diff --git a/x/mint/simulation/decoder.go b/x/mint/simulation/decoder.go index 49ca7a56fc54..37d9930f7da5 100644 --- a/x/mint/simulation/decoder.go +++ b/x/mint/simulation/decoder.go @@ -4,16 +4,15 @@ import ( "bytes" "fmt" - tmkv "github.com/tendermint/tendermint/libs/kv" - "github.com/cosmos/cosmos-sdk/codec" + "github.com/cosmos/cosmos-sdk/types/kv" "github.com/cosmos/cosmos-sdk/x/mint/types" ) // NewDecodeStore returns a decoder function closure that umarshals the KVPair's // Value to the corresponding mint type. -func NewDecodeStore(cdc codec.Marshaler) func(kvA, kvB tmkv.Pair) string { - return func(kvA, kvB tmkv.Pair) string { +func NewDecodeStore(cdc codec.Marshaler) func(kvA, kvB kv.Pair) string { + return func(kvA, kvB kv.Pair) string { switch { case bytes.Equal(kvA.Key, types.MinterKey): var minterA, minterB types.Minter diff --git a/x/mint/simulation/decoder_test.go b/x/mint/simulation/decoder_test.go index 0d69dc331b03..f67b3bb8ad6d 100644 --- a/x/mint/simulation/decoder_test.go +++ b/x/mint/simulation/decoder_test.go @@ -6,10 +6,9 @@ import ( "github.com/stretchr/testify/require" - tmkv "github.com/tendermint/tendermint/libs/kv" - "github.com/cosmos/cosmos-sdk/simapp" sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/types/kv" "github.com/cosmos/cosmos-sdk/x/mint/simulation" "github.com/cosmos/cosmos-sdk/x/mint/types" ) @@ -20,9 +19,9 @@ func TestDecodeStore(t *testing.T) { minter := types.NewMinter(sdk.OneDec(), sdk.NewDec(15)) - kvPairs := tmkv.Pairs{ - tmkv.Pair{Key: types.MinterKey, Value: cdc.MustMarshalBinaryBare(&minter)}, - tmkv.Pair{Key: []byte{0x99}, Value: []byte{0x99}}, + kvPairs := kv.Pairs{ + kv.Pair{Key: types.MinterKey, Value: cdc.MustMarshalBinaryBare(&minter)}, + kv.Pair{Key: []byte{0x99}, Value: []byte{0x99}}, } tests := []struct { name string diff --git a/x/slashing/simulation/decoder.go b/x/slashing/simulation/decoder.go index af0a15b5ce1c..b0ebb64ef31a 100644 --- a/x/slashing/simulation/decoder.go +++ b/x/slashing/simulation/decoder.go @@ -5,16 +5,16 @@ import ( "fmt" gogotypes "github.com/gogo/protobuf/types" - tmkv "github.com/tendermint/tendermint/libs/kv" "github.com/cosmos/cosmos-sdk/codec" + "github.com/cosmos/cosmos-sdk/types/kv" "github.com/cosmos/cosmos-sdk/x/slashing/types" ) // NewDecodeStore returns a decoder function closure that unmarshals the KVPair's // Value to the corresponding slashing type. -func NewDecodeStore(cdc codec.Marshaler) func(kvA, kvB tmkv.Pair) string { - return func(kvA, kvB tmkv.Pair) string { +func NewDecodeStore(cdc codec.Marshaler) func(kvA, kvB kv.Pair) string { + return func(kvA, kvB kv.Pair) string { switch { case bytes.Equal(kvA.Key[:1], types.ValidatorSigningInfoKeyPrefix): var infoA, infoB types.ValidatorSigningInfo diff --git a/x/slashing/simulation/decoder_test.go b/x/slashing/simulation/decoder_test.go index 8fbe78823846..866422e705ba 100644 --- a/x/slashing/simulation/decoder_test.go +++ b/x/slashing/simulation/decoder_test.go @@ -6,14 +6,12 @@ import ( "time" gogotypes "github.com/gogo/protobuf/types" - "github.com/stretchr/testify/require" - "github.com/tendermint/tendermint/crypto/ed25519" - tmkv "github.com/tendermint/tendermint/libs/kv" "github.com/cosmos/cosmos-sdk/simapp" sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/types/kv" "github.com/cosmos/cosmos-sdk/x/slashing/simulation" "github.com/cosmos/cosmos-sdk/x/slashing/types" ) @@ -34,11 +32,11 @@ func TestDecodeStore(t *testing.T) { bechPK := sdk.MustBech32ifyPubKey(sdk.Bech32PubKeyTypeConsPub, delPk1) missed := gogotypes.BoolValue{Value: true} - kvPairs := tmkv.Pairs{ - tmkv.Pair{Key: types.ValidatorSigningInfoKey(consAddr1), Value: cdc.MustMarshalBinaryBare(&info)}, - tmkv.Pair{Key: types.ValidatorMissedBlockBitArrayKey(consAddr1, 6), Value: cdc.MustMarshalBinaryBare(&missed)}, - tmkv.Pair{Key: types.AddrPubkeyRelationKey(delAddr1), Value: cdc.MustMarshalBinaryBare(&gogotypes.StringValue{Value: bechPK})}, - tmkv.Pair{Key: []byte{0x99}, Value: []byte{0x99}}, + kvPairs := kv.Pairs{ + kv.Pair{Key: types.ValidatorSigningInfoKey(consAddr1), Value: cdc.MustMarshalBinaryBare(&info)}, + kv.Pair{Key: types.ValidatorMissedBlockBitArrayKey(consAddr1, 6), Value: cdc.MustMarshalBinaryBare(&missed)}, + kv.Pair{Key: types.AddrPubkeyRelationKey(delAddr1), Value: cdc.MustMarshalBinaryBare(&gogotypes.StringValue{Value: bechPK})}, + kv.Pair{Key: []byte{0x99}, Value: []byte{0x99}}, } tests := []struct { diff --git a/x/staking/simulation/decoder.go b/x/staking/simulation/decoder.go index 35d2cff23e86..696aee7d2292 100644 --- a/x/staking/simulation/decoder.go +++ b/x/staking/simulation/decoder.go @@ -4,17 +4,16 @@ import ( "bytes" "fmt" - tmkv "github.com/tendermint/tendermint/libs/kv" - "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/types/kv" "github.com/cosmos/cosmos-sdk/x/staking/types" ) // NewDecodeStore returns a decoder function closure that unmarshals the KVPair's // Value to the corresponding staking type. -func NewDecodeStore(cdc codec.Marshaler) func(kvA, kvB tmkv.Pair) string { - return func(kvA, kvB tmkv.Pair) string { +func NewDecodeStore(cdc codec.Marshaler) func(kvA, kvB kv.Pair) string { + return func(kvA, kvB kv.Pair) string { switch { case bytes.Equal(kvA.Key[:1], types.LastTotalPowerKey): var powerA, powerB sdk.IntProto diff --git a/x/staking/simulation/decoder_test.go b/x/staking/simulation/decoder_test.go index 67e26be1e810..214da41d91cd 100644 --- a/x/staking/simulation/decoder_test.go +++ b/x/staking/simulation/decoder_test.go @@ -6,14 +6,13 @@ import ( "time" "github.com/stretchr/testify/require" - "github.com/tendermint/tendermint/crypto/ed25519" - tmkv "github.com/tendermint/tendermint/libs/kv" "github.com/cosmos/cosmos-sdk/codec" cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec" "github.com/cosmos/cosmos-sdk/simapp" sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/types/kv" "github.com/cosmos/cosmos-sdk/x/staking/simulation" "github.com/cosmos/cosmos-sdk/x/staking/types" ) @@ -43,14 +42,14 @@ func TestDecodeStore(t *testing.T) { ubd := types.NewUnbondingDelegation(delAddr1, valAddr1, 15, bondTime, sdk.OneInt()) red := types.NewRedelegation(delAddr1, valAddr1, valAddr1, 12, bondTime, sdk.OneInt(), sdk.OneDec()) - kvPairs := tmkv.Pairs{ - tmkv.Pair{Key: types.LastTotalPowerKey, Value: cdc.MustMarshalBinaryBare(&sdk.IntProto{Int: sdk.OneInt()})}, - tmkv.Pair{Key: types.GetValidatorKey(valAddr1), Value: cdc.MustMarshalBinaryBare(&val)}, - tmkv.Pair{Key: types.LastValidatorPowerKey, Value: valAddr1.Bytes()}, - tmkv.Pair{Key: types.GetDelegationKey(delAddr1, valAddr1), Value: cdc.MustMarshalBinaryBare(&del)}, - tmkv.Pair{Key: types.GetUBDKey(delAddr1, valAddr1), Value: cdc.MustMarshalBinaryBare(&ubd)}, - tmkv.Pair{Key: types.GetREDKey(delAddr1, valAddr1, valAddr1), Value: cdc.MustMarshalBinaryBare(&red)}, - tmkv.Pair{Key: []byte{0x99}, Value: []byte{0x99}}, + kvPairs := kv.Pairs{ + kv.Pair{Key: types.LastTotalPowerKey, Value: cdc.MustMarshalBinaryBare(&sdk.IntProto{Int: sdk.OneInt()})}, + kv.Pair{Key: types.GetValidatorKey(valAddr1), Value: cdc.MustMarshalBinaryBare(&val)}, + kv.Pair{Key: types.LastValidatorPowerKey, Value: valAddr1.Bytes()}, + kv.Pair{Key: types.GetDelegationKey(delAddr1, valAddr1), Value: cdc.MustMarshalBinaryBare(&del)}, + kv.Pair{Key: types.GetUBDKey(delAddr1, valAddr1), Value: cdc.MustMarshalBinaryBare(&ubd)}, + kv.Pair{Key: types.GetREDKey(delAddr1, valAddr1, valAddr1), Value: cdc.MustMarshalBinaryBare(&red)}, + kv.Pair{Key: []byte{0x99}, Value: []byte{0x99}}, } tests := []struct { diff --git a/x/staking/types/staking.pb.go b/x/staking/types/staking.pb.go index 1d60e583f304..8169b56ec933 100644 --- a/x/staking/types/staking.pb.go +++ b/x/staking/types/staking.pb.go @@ -7,12 +7,6 @@ import ( bytes "bytes" compress_gzip "compress/gzip" fmt "fmt" - io "io" - io_ioutil "io/ioutil" - math "math" - math_bits "math/bits" - time "time" - github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" _ "github.com/gogo/protobuf/gogoproto" @@ -23,6 +17,11 @@ import ( _ "github.com/golang/protobuf/ptypes/duration" _ "github.com/golang/protobuf/ptypes/timestamp" types1 "github.com/tendermint/tendermint/abci/types" + io "io" + io_ioutil "io/ioutil" + math "math" + math_bits "math/bits" + time "time" ) // Reference imports to suppress errors if they are not otherwise used. @@ -1570,615 +1569,614 @@ 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{ - // 9722 bytes of a gzipped FileDescriptorSet + // 9698 bytes of a gzipped FileDescriptorSet 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x7b, 0x70, 0x24, 0xc7, - 0x79, 0x1f, 0xf6, 0x81, 0xc5, 0xee, 0xb7, 0x8b, 0xdd, 0x45, 0x03, 0x77, 0xb7, 0xb7, 0x24, 0x6f, - 0x8f, 0x73, 0x7c, 0xe0, 0xf8, 0xc0, 0x51, 0x27, 0x3e, 0xf7, 0x28, 0x52, 0x58, 0x00, 0x77, 0x07, - 0x12, 0xb8, 0x03, 0x07, 0xc0, 0x91, 0xa2, 0x6c, 0xaf, 0x07, 0xb3, 0x8d, 0xc5, 0x10, 0xbb, 0x33, - 0xcb, 0x99, 0xd9, 0x3b, 0x80, 0xa5, 0x54, 0x31, 0x65, 0x59, 0x0f, 0x47, 0xb6, 0x64, 0xc7, 0x76, - 0x64, 0x45, 0x92, 0x29, 0xa5, 0x12, 0x39, 0x4a, 0xe2, 0x47, 0xa2, 0xe8, 0x61, 0xe7, 0x0f, 0xa5, - 0x9c, 0xc4, 0x4a, 0x95, 0x2b, 0x25, 0x25, 0x4e, 0xca, 0x95, 0x4a, 0xc1, 0x16, 0xa9, 0x2a, 0x2b, - 0x0a, 0x93, 0x28, 0x17, 0xda, 0xe5, 0x92, 0xfe, 0x48, 0xaa, 0x5f, 0xf3, 0xda, 0xd9, 0x9d, 0xc1, - 0xf1, 0x48, 0xd1, 0x25, 0xfd, 0x85, 0x9d, 0x9e, 0xef, 0xfb, 0x75, 0xf7, 0xd7, 0x5f, 0x7f, 0xdf, - 0xd7, 0x5f, 0x77, 0x0f, 0xe0, 0x8b, 0x49, 0xb8, 0x4d, 0x35, 0xac, 0xae, 0x61, 0x9d, 0x79, 0xb1, - 0x8f, 0xcd, 0xfd, 0x33, 0x3d, 0xa5, 0xad, 0xe9, 0x8a, 0xad, 0x19, 0xfa, 0x5c, 0xcf, 0x34, 0x6c, - 0x03, 0x15, 0xd8, 0xeb, 0x39, 0xfa, 0x5a, 0xd2, 0x21, 0xbf, 0xa6, 0xb4, 0xb1, 0x8c, 0x5f, 0xec, - 0x63, 0xcb, 0x46, 0x65, 0x48, 0xed, 0xe2, 0xfd, 0x4a, 0xe2, 0x64, 0x62, 0xb6, 0x20, 0x93, 0x9f, - 0xe8, 0x28, 0x64, 0x8c, 0xed, 0x6d, 0x0b, 0xdb, 0x95, 0xe4, 0xc9, 0xc4, 0x6c, 0x5a, 0xe6, 0x4f, - 0x68, 0x06, 0xc6, 0x3b, 0x5a, 0x57, 0xb3, 0x2b, 0x29, 0x5a, 0xcc, 0x1e, 0x50, 0x0d, 0xf2, 0xaa, - 0xd1, 0xd7, 0xed, 0xa6, 0x6d, 0xd8, 0x4a, 0xa7, 0x92, 0x3e, 0x99, 0x98, 0xcd, 0xca, 0x40, 0x8b, - 0x36, 0x48, 0x89, 0xf4, 0x24, 0x14, 0x58, 0x7d, 0x56, 0xcf, 0xd0, 0x2d, 0x8c, 0x8e, 0x43, 0x56, - 0xc7, 0x7b, 0x76, 0xd3, 0xad, 0x75, 0x82, 0x3c, 0x3f, 0x8d, 0xf7, 0x49, 0x0d, 0x0c, 0x85, 0x55, - 0xcc, 0x1e, 0x1a, 0x8d, 0x6f, 0xbc, 0x7a, 0x22, 0xf1, 0xcd, 0x57, 0x4f, 0x24, 0xfe, 0xfc, 0xd5, - 0x13, 0x89, 0x4f, 0xbc, 0x76, 0x62, 0xec, 0x9b, 0xaf, 0x9d, 0x18, 0xfb, 0xd3, 0xd7, 0x4e, 0x8c, - 0x3d, 0x3f, 0xdb, 0xd6, 0xec, 0x9d, 0xfe, 0xd6, 0x9c, 0x6a, 0x74, 0xcf, 0x70, 0x11, 0xb0, 0x3f, - 0xf7, 0x5b, 0xad, 0xdd, 0x33, 0xf6, 0x7e, 0x0f, 0x73, 0x99, 0x6c, 0x65, 0xa8, 0x24, 0xde, 0x0d, - 0x7f, 0x78, 0x0e, 0x4e, 0xb6, 0x0d, 0xa3, 0xdd, 0xc1, 0x67, 0x68, 0xc9, 0x56, 0x7f, 0xfb, 0x4c, - 0x0b, 0x5b, 0xaa, 0xa9, 0xf5, 0x6c, 0xc3, 0xe4, 0xf2, 0x2a, 0x31, 0x8a, 0x39, 0x41, 0x21, 0xad, - 0xc2, 0xd4, 0x79, 0xad, 0x83, 0x17, 0x1d, 0xc2, 0x75, 0x6c, 0xa3, 0x47, 0x21, 0xbd, 0xad, 0x75, - 0x70, 0x25, 0x71, 0x32, 0x35, 0x9b, 0x3f, 0x7b, 0xc7, 0x5c, 0x80, 0x69, 0xce, 0xcf, 0xb1, 0x46, - 0x8a, 0x65, 0xca, 0x21, 0x7d, 0x27, 0x0d, 0xd3, 0x21, 0x6f, 0x11, 0x82, 0xb4, 0xae, 0x74, 0x31, - 0x95, 0x4a, 0x4e, 0xa6, 0xbf, 0x51, 0x05, 0x26, 0x7a, 0x8a, 0xba, 0xab, 0xb4, 0x31, 0x15, 0x4a, - 0x4e, 0x16, 0x8f, 0xe8, 0x04, 0x40, 0x0b, 0xf7, 0xb0, 0xde, 0xc2, 0xba, 0xba, 0x5f, 0x49, 0x9d, - 0x4c, 0xcd, 0xe6, 0x64, 0x4f, 0x09, 0xba, 0x17, 0xa6, 0x7a, 0xfd, 0xad, 0x8e, 0xa6, 0x36, 0x3d, - 0x64, 0x70, 0x32, 0x35, 0x3b, 0x2e, 0x97, 0xd9, 0x8b, 0x45, 0x97, 0xf8, 0x6e, 0x28, 0x5d, 0xc3, - 0xca, 0xae, 0x97, 0x34, 0x4f, 0x49, 0x8b, 0xa4, 0xd8, 0x43, 0xb8, 0x00, 0x85, 0x2e, 0xb6, 0x2c, - 0xa5, 0x8d, 0x9b, 0x44, 0xbe, 0x95, 0x34, 0xed, 0xfd, 0xc9, 0x81, 0xde, 0x07, 0x7b, 0x9e, 0xe7, - 0x5c, 0x1b, 0xfb, 0x3d, 0x8c, 0xe6, 0x21, 0x87, 0xf5, 0x7e, 0x97, 0x21, 0x8c, 0x0f, 0x91, 0xdf, - 0x92, 0xde, 0xef, 0x06, 0x51, 0xb2, 0x84, 0x8d, 0x43, 0x4c, 0x58, 0xd8, 0xbc, 0xaa, 0xa9, 0xb8, - 0x92, 0xa1, 0x00, 0x77, 0x0f, 0x00, 0xac, 0xb3, 0xf7, 0x41, 0x0c, 0xc1, 0x87, 0x16, 0x20, 0x87, - 0xf7, 0x6c, 0xac, 0x5b, 0x9a, 0xa1, 0x57, 0x26, 0x28, 0xc8, 0x9d, 0x21, 0xa3, 0x88, 0x3b, 0xad, - 0x20, 0x84, 0xcb, 0x87, 0x1e, 0x86, 0x09, 0xa3, 0x47, 0xe6, 0x9a, 0x55, 0xc9, 0x9e, 0x4c, 0xcc, - 0xe6, 0xcf, 0xde, 0x1a, 0xaa, 0x08, 0x97, 0x19, 0x8d, 0x2c, 0x88, 0xd1, 0x32, 0x94, 0x2d, 0xa3, - 0x6f, 0xaa, 0xb8, 0xa9, 0x1a, 0x2d, 0xdc, 0xd4, 0xf4, 0x6d, 0xa3, 0x92, 0xa3, 0x00, 0xb5, 0xc1, - 0x8e, 0x50, 0xc2, 0x05, 0xa3, 0x85, 0x97, 0xf5, 0x6d, 0x43, 0x2e, 0x5a, 0xbe, 0x67, 0x32, 0x5f, - 0xad, 0x7d, 0xdd, 0x56, 0xf6, 0x2a, 0x05, 0xaa, 0x21, 0xfc, 0x49, 0xfa, 0x5a, 0x06, 0x4a, 0x71, - 0x54, 0xec, 0x1c, 0x8c, 0x6f, 0x93, 0x5e, 0x56, 0x92, 0x87, 0x91, 0x01, 0xe3, 0xf1, 0x0b, 0x31, - 0x73, 0x83, 0x42, 0x9c, 0x87, 0xbc, 0x8e, 0x2d, 0x1b, 0xb7, 0x98, 0x46, 0xa4, 0x62, 0xea, 0x14, - 0x30, 0xa6, 0x41, 0x95, 0x4a, 0xdf, 0x90, 0x4a, 0x3d, 0x07, 0x25, 0xa7, 0x49, 0x4d, 0x53, 0xd1, - 0xdb, 0x42, 0x37, 0xcf, 0x44, 0xb5, 0x64, 0x6e, 0x49, 0xf0, 0xc9, 0x84, 0x4d, 0x2e, 0x62, 0xdf, - 0x33, 0x5a, 0x04, 0x30, 0x74, 0x6c, 0x6c, 0x37, 0x5b, 0x58, 0xed, 0x54, 0xb2, 0x43, 0xa4, 0x74, - 0x99, 0x90, 0x0c, 0x48, 0xc9, 0x60, 0xa5, 0x6a, 0x07, 0x3d, 0xe6, 0xaa, 0xda, 0xc4, 0x10, 0x4d, - 0x59, 0x65, 0x93, 0x6c, 0x40, 0xdb, 0x36, 0xa1, 0x68, 0x62, 0xa2, 0xf7, 0xb8, 0xc5, 0x7b, 0x96, - 0xa3, 0x8d, 0x98, 0x8b, 0xec, 0x99, 0xcc, 0xd9, 0x58, 0xc7, 0x26, 0x4d, 0xef, 0x23, 0x3a, 0x05, - 0x4e, 0x41, 0x93, 0xaa, 0x15, 0x50, 0x2b, 0x54, 0x10, 0x85, 0x97, 0x94, 0x2e, 0xae, 0xbe, 0x04, - 0x45, 0xbf, 0x78, 0x88, 0x99, 0xb7, 0x6c, 0xc5, 0xb4, 0xa9, 0x16, 0x8e, 0xcb, 0xec, 0x81, 0x38, - 0x22, 0xac, 0xb7, 0xa8, 0x95, 0x1b, 0x97, 0xc9, 0x4f, 0xf4, 0x5e, 0xb7, 0xc3, 0x29, 0xda, 0xe1, - 0xbb, 0x06, 0x47, 0xd4, 0x87, 0x1c, 0xec, 0x77, 0xf5, 0x11, 0x98, 0xf4, 0x75, 0x20, 0x6e, 0xd5, - 0xd2, 0x07, 0xe0, 0x48, 0x28, 0x34, 0x7a, 0x0e, 0x66, 0xfa, 0xba, 0xa6, 0xdb, 0xd8, 0xec, 0x99, - 0x98, 0x68, 0x2c, 0xab, 0xaa, 0xf2, 0x17, 0x13, 0x43, 0x74, 0x6e, 0xd3, 0x4b, 0xcd, 0x50, 0xe4, - 0xe9, 0xfe, 0x60, 0xe1, 0x3d, 0xb9, 0xec, 0x77, 0x27, 0xca, 0x2f, 0xbf, 0xfc, 0xf2, 0xcb, 0x49, - 0xe9, 0x5f, 0x67, 0x60, 0x26, 0x6c, 0xce, 0x84, 0x4e, 0xdf, 0xa3, 0x90, 0xd1, 0xfb, 0xdd, 0x2d, - 0x6c, 0x52, 0x21, 0x8d, 0xcb, 0xfc, 0x09, 0xcd, 0xc3, 0x78, 0x47, 0xd9, 0xc2, 0xcc, 0x25, 0x17, - 0xcf, 0xde, 0x1b, 0x6b, 0x56, 0xce, 0xad, 0x10, 0x16, 0x99, 0x71, 0xa2, 0x27, 0x20, 0xcd, 0x4d, - 0x34, 0x41, 0xb8, 0x27, 0x1e, 0x02, 0x99, 0x4b, 0x32, 0xe5, 0x43, 0xb7, 0x40, 0x8e, 0xfc, 0x65, - 0xba, 0x91, 0xa1, 0x6d, 0xce, 0x92, 0x02, 0xa2, 0x17, 0xa8, 0x0a, 0x59, 0x3a, 0x4d, 0x5a, 0x58, - 0xb8, 0x36, 0xe7, 0x99, 0x28, 0x56, 0x0b, 0x6f, 0x2b, 0xfd, 0x8e, 0xdd, 0xbc, 0xaa, 0x74, 0xfa, - 0x98, 0x2a, 0x7c, 0x4e, 0x2e, 0xf0, 0xc2, 0x2b, 0xa4, 0x8c, 0x44, 0x1e, 0x6c, 0x56, 0x69, 0x7a, - 0x0b, 0xef, 0x51, 0xeb, 0x39, 0x2e, 0xb3, 0x89, 0xb6, 0x4c, 0x4a, 0x48, 0xf5, 0x2f, 0x58, 0x86, - 0x2e, 0x54, 0x93, 0x56, 0x41, 0x0a, 0x68, 0xf5, 0x8f, 0x04, 0x0d, 0xf7, 0x6d, 0xe1, 0xdd, 0x1b, - 0x98, 0x4b, 0x77, 0x43, 0x89, 0x05, 0x13, 0x7c, 0xe8, 0x95, 0x4e, 0x65, 0x8a, 0x06, 0x3d, 0x45, - 0x56, 0x7c, 0x99, 0x97, 0x4a, 0x5f, 0x4e, 0x42, 0x9a, 0x1a, 0x96, 0x12, 0xe4, 0x37, 0xde, 0xb7, - 0xb6, 0xd4, 0x5c, 0xbc, 0xbc, 0xd9, 0x58, 0x59, 0x2a, 0x27, 0x50, 0x11, 0x80, 0x16, 0x9c, 0x5f, - 0xb9, 0x3c, 0xbf, 0x51, 0x4e, 0x3a, 0xcf, 0xcb, 0x97, 0x36, 0x1e, 0x7e, 0xb0, 0x9c, 0x72, 0x18, - 0x36, 0x59, 0x41, 0xda, 0x4b, 0xf0, 0xee, 0xb3, 0xe5, 0x71, 0x54, 0x86, 0x02, 0x03, 0x58, 0x7e, - 0x6e, 0x69, 0xf1, 0xe1, 0x07, 0xcb, 0x19, 0x7f, 0xc9, 0xbb, 0xcf, 0x96, 0x27, 0xd0, 0x24, 0xe4, - 0x68, 0x49, 0xe3, 0xf2, 0xe5, 0x95, 0x72, 0xd6, 0xc1, 0x5c, 0xdf, 0x90, 0x97, 0x2f, 0x5d, 0x28, - 0xe7, 0x1c, 0xcc, 0x0b, 0xf2, 0xe5, 0xcd, 0xb5, 0x32, 0x38, 0x08, 0xab, 0x4b, 0xeb, 0xeb, 0xf3, - 0x17, 0x96, 0xca, 0x79, 0x87, 0xa2, 0xf1, 0xbe, 0x8d, 0xa5, 0xf5, 0x72, 0xc1, 0xd7, 0xac, 0x77, - 0x9f, 0x2d, 0x4f, 0x3a, 0x55, 0x2c, 0x5d, 0xda, 0x5c, 0x2d, 0x17, 0xd1, 0x14, 0x4c, 0xb2, 0x2a, - 0x44, 0x23, 0x4a, 0x81, 0xa2, 0x87, 0x1f, 0x2c, 0x97, 0xdd, 0x86, 0x30, 0x94, 0x29, 0x5f, 0xc1, - 0xc3, 0x0f, 0x96, 0x91, 0xb4, 0x00, 0xe3, 0x54, 0x0d, 0x11, 0x82, 0xe2, 0xca, 0x7c, 0x63, 0x69, - 0xa5, 0x79, 0x79, 0x6d, 0x63, 0xf9, 0xf2, 0xa5, 0xf9, 0x95, 0x72, 0xc2, 0x2d, 0x93, 0x97, 0x9e, - 0xd9, 0x5c, 0x96, 0x97, 0x16, 0xcb, 0x49, 0x6f, 0xd9, 0xda, 0xd2, 0xfc, 0xc6, 0xd2, 0x62, 0x39, - 0x25, 0xa9, 0x30, 0x13, 0x66, 0x50, 0x43, 0xa7, 0x90, 0x47, 0x17, 0x92, 0x43, 0x74, 0x81, 0x62, - 0x05, 0x75, 0x41, 0x7a, 0x2d, 0x09, 0xd3, 0x21, 0x4e, 0x25, 0xb4, 0x92, 0x27, 0x61, 0x9c, 0xe9, - 0x32, 0x73, 0xb3, 0xa7, 0x43, 0xbd, 0x13, 0xd5, 0xec, 0x01, 0x57, 0x4b, 0xf9, 0xbc, 0xa1, 0x46, - 0x6a, 0x48, 0xa8, 0x41, 0x20, 0x06, 0x14, 0xf6, 0xa7, 0x07, 0x8c, 0x3f, 0xf3, 0x8f, 0x0f, 0xc7, - 0xf1, 0x8f, 0xb4, 0xec, 0x70, 0x4e, 0x60, 0x3c, 0xc4, 0x09, 0x9c, 0x83, 0xa9, 0x01, 0xa0, 0xd8, - 0xc6, 0xf8, 0xe7, 0x12, 0x50, 0x19, 0x26, 0x9c, 0x08, 0x93, 0x98, 0xf4, 0x99, 0xc4, 0x73, 0x41, - 0x09, 0xde, 0x3e, 0x7c, 0x10, 0x06, 0xc6, 0xfa, 0x0b, 0x09, 0x38, 0x1a, 0x1e, 0x52, 0x86, 0xb6, - 0xe1, 0x09, 0xc8, 0x74, 0xb1, 0xbd, 0x63, 0x88, 0xb0, 0xea, 0xae, 0x10, 0x67, 0x4d, 0x5e, 0x07, - 0x07, 0x9b, 0x73, 0x79, 0xbd, 0x7d, 0x6a, 0x58, 0x5c, 0xc8, 0x5a, 0x33, 0xd0, 0xd2, 0x8f, 0x26, - 0xe1, 0x48, 0x28, 0x78, 0x68, 0x43, 0x6f, 0x03, 0xd0, 0xf4, 0x5e, 0xdf, 0x66, 0xa1, 0x13, 0xb3, - 0xc4, 0x39, 0x5a, 0x42, 0x8d, 0x17, 0xb1, 0xb2, 0x7d, 0xdb, 0x79, 0x9f, 0xa2, 0xef, 0x81, 0x15, - 0x51, 0x82, 0x47, 0xdd, 0x86, 0xa6, 0x69, 0x43, 0x4f, 0x0c, 0xe9, 0xe9, 0x80, 0x62, 0x3e, 0x00, - 0x65, 0xb5, 0xa3, 0x61, 0xdd, 0x6e, 0x5a, 0xb6, 0x89, 0x95, 0xae, 0xa6, 0xb7, 0xa9, 0xab, 0xc9, - 0xd6, 0xc7, 0xb7, 0x95, 0x8e, 0x85, 0xe5, 0x12, 0x7b, 0xbd, 0x2e, 0xde, 0x12, 0x0e, 0xaa, 0x40, - 0xa6, 0x87, 0x23, 0xe3, 0xe3, 0x60, 0xaf, 0x1d, 0x0e, 0xe9, 0x97, 0x73, 0x90, 0xf7, 0x04, 0xe0, - 0xe8, 0x76, 0x28, 0xbc, 0xa0, 0x5c, 0x55, 0x9a, 0x62, 0x51, 0xc5, 0x24, 0x91, 0x27, 0x65, 0x6b, - 0x7c, 0x61, 0xf5, 0x00, 0xcc, 0x50, 0x12, 0xa3, 0x6f, 0x63, 0xb3, 0xa9, 0x76, 0x14, 0xcb, 0xa2, - 0x42, 0xcb, 0x52, 0x52, 0x44, 0xde, 0x5d, 0x26, 0xaf, 0x16, 0xc4, 0x1b, 0xf4, 0x10, 0x4c, 0x53, - 0x8e, 0x6e, 0xbf, 0x63, 0x6b, 0xbd, 0x0e, 0x6e, 0x92, 0x65, 0x9e, 0x45, 0x5d, 0x8e, 0xd3, 0xb2, - 0x29, 0x42, 0xb1, 0xca, 0x09, 0x48, 0x8b, 0x2c, 0xb4, 0x08, 0xb7, 0x51, 0xb6, 0x36, 0xd6, 0xb1, - 0xa9, 0xd8, 0xb8, 0x89, 0x5f, 0xec, 0x2b, 0x1d, 0xab, 0xa9, 0xe8, 0xad, 0xe6, 0x8e, 0x62, 0xed, - 0x54, 0x66, 0x08, 0x40, 0x23, 0x59, 0x49, 0xc8, 0xc7, 0x09, 0xe1, 0x05, 0x4e, 0xb7, 0x44, 0xc9, - 0xe6, 0xf5, 0xd6, 0x45, 0xc5, 0xda, 0x41, 0x75, 0x38, 0x4a, 0x51, 0x2c, 0xdb, 0xd4, 0xf4, 0x76, - 0x53, 0xdd, 0xc1, 0xea, 0x6e, 0xb3, 0x6f, 0x6f, 0x3f, 0x5a, 0xb9, 0xc5, 0x5b, 0x3f, 0x6d, 0xe1, - 0x3a, 0xa5, 0x59, 0x20, 0x24, 0x9b, 0xf6, 0xf6, 0xa3, 0x68, 0x1d, 0x0a, 0x64, 0x30, 0xba, 0xda, - 0x4b, 0xb8, 0xb9, 0x6d, 0x98, 0xd4, 0x87, 0x16, 0x43, 0x4c, 0x93, 0x47, 0x82, 0x73, 0x97, 0x39, - 0xc3, 0xaa, 0xd1, 0xc2, 0xf5, 0xf1, 0xf5, 0xb5, 0xa5, 0xa5, 0x45, 0x39, 0x2f, 0x50, 0xce, 0x1b, - 0x26, 0x51, 0xa8, 0xb6, 0xe1, 0x08, 0x38, 0xcf, 0x14, 0xaa, 0x6d, 0x08, 0xf1, 0x3e, 0x04, 0xd3, - 0xaa, 0xca, 0xfa, 0xac, 0xa9, 0x4d, 0xbe, 0x18, 0xb3, 0x2a, 0x65, 0x9f, 0xb0, 0x54, 0xf5, 0x02, - 0x23, 0xe0, 0x3a, 0x6e, 0xa1, 0xc7, 0xe0, 0x88, 0x2b, 0x2c, 0x2f, 0xe3, 0xd4, 0x40, 0x2f, 0x83, - 0xac, 0x0f, 0xc1, 0x74, 0x6f, 0x7f, 0x90, 0x11, 0xf9, 0x6a, 0xec, 0xed, 0x07, 0xd9, 0x1e, 0x81, - 0x99, 0xde, 0x4e, 0x6f, 0x90, 0xef, 0x1e, 0x2f, 0x1f, 0xea, 0xed, 0xf4, 0x82, 0x8c, 0x77, 0xd2, - 0x95, 0xb9, 0x89, 0x55, 0xc5, 0xc6, 0xad, 0xca, 0x31, 0x2f, 0xb9, 0xe7, 0x05, 0x9a, 0x83, 0xb2, - 0xaa, 0x36, 0xb1, 0xae, 0x6c, 0x75, 0x70, 0x53, 0x31, 0xb1, 0xae, 0x58, 0x95, 0x1a, 0x25, 0x4e, - 0xdb, 0x66, 0x1f, 0xcb, 0x45, 0x55, 0x5d, 0xa2, 0x2f, 0xe7, 0xe9, 0x3b, 0x74, 0x0f, 0x4c, 0x19, - 0x5b, 0x2f, 0xa8, 0x4c, 0x23, 0x9b, 0x3d, 0x13, 0x6f, 0x6b, 0x7b, 0x95, 0x3b, 0xa8, 0x78, 0x4b, - 0xe4, 0x05, 0xd5, 0xc7, 0x35, 0x5a, 0x8c, 0x4e, 0x43, 0x59, 0xb5, 0x76, 0x14, 0xb3, 0x47, 0x4d, - 0xb2, 0xd5, 0x53, 0x54, 0x5c, 0xb9, 0x93, 0x91, 0xb2, 0xf2, 0x4b, 0xa2, 0x98, 0xcc, 0x08, 0xeb, - 0x9a, 0xb6, 0x6d, 0x0b, 0xc4, 0xbb, 0xd9, 0x8c, 0xa0, 0x65, 0x1c, 0x6d, 0x16, 0xca, 0x44, 0x12, - 0xbe, 0x8a, 0x67, 0x29, 0x59, 0xb1, 0xb7, 0xd3, 0xf3, 0xd6, 0x7b, 0x0a, 0x26, 0x09, 0xa5, 0x5b, - 0xe9, 0x69, 0x16, 0xb8, 0xf5, 0x76, 0x3c, 0x35, 0x3e, 0x08, 0x47, 0x09, 0x51, 0x17, 0xdb, 0x4a, - 0x4b, 0xb1, 0x15, 0x0f, 0xf5, 0x7d, 0x94, 0x9a, 0x88, 0x7d, 0x95, 0xbf, 0xf4, 0xb5, 0xd3, 0xec, - 0x6f, 0xed, 0x3b, 0x8a, 0x75, 0x3f, 0x6b, 0x27, 0x29, 0x13, 0xaa, 0xf5, 0x96, 0x05, 0xe7, 0x52, - 0x1d, 0x0a, 0x5e, 0xbd, 0x47, 0x39, 0x60, 0x9a, 0x5f, 0x4e, 0x90, 0x20, 0x68, 0xe1, 0xf2, 0x22, - 0x09, 0x5f, 0x9e, 0x5f, 0x2a, 0x27, 0x49, 0x18, 0xb5, 0xb2, 0xbc, 0xb1, 0xd4, 0x94, 0x37, 0x2f, - 0x6d, 0x2c, 0xaf, 0x2e, 0x95, 0x53, 0x9e, 0xc0, 0xfe, 0xa9, 0x74, 0xf6, 0xae, 0xf2, 0xdd, 0xd2, - 0xb7, 0x92, 0x50, 0xf4, 0xaf, 0xd4, 0xd0, 0xe3, 0x70, 0x4c, 0xa4, 0x55, 0x2c, 0x6c, 0x37, 0xaf, - 0x69, 0x26, 0x9d, 0x90, 0x5d, 0x85, 0x39, 0x47, 0x47, 0x7f, 0x66, 0x38, 0xd5, 0x3a, 0xb6, 0x9f, - 0xd5, 0x4c, 0x32, 0xdd, 0xba, 0x8a, 0x8d, 0x56, 0xa0, 0xa6, 0x1b, 0x4d, 0xcb, 0x56, 0xf4, 0x96, - 0x62, 0xb6, 0x9a, 0x6e, 0x42, 0xab, 0xa9, 0xa8, 0x2a, 0xb6, 0x2c, 0x83, 0x39, 0x42, 0x07, 0xe5, - 0x56, 0xdd, 0x58, 0xe7, 0xc4, 0xae, 0x87, 0x98, 0xe7, 0xa4, 0x01, 0xf5, 0x4d, 0x0d, 0x53, 0xdf, - 0x5b, 0x20, 0xd7, 0x55, 0x7a, 0x4d, 0xac, 0xdb, 0xe6, 0x3e, 0x8d, 0xcf, 0xb3, 0x72, 0xb6, 0xab, - 0xf4, 0x96, 0xc8, 0xf3, 0xdb, 0xb2, 0x4c, 0x7a, 0x2a, 0x9d, 0xcd, 0x96, 0x73, 0x4f, 0xa5, 0xb3, - 0xb9, 0x32, 0x48, 0xaf, 0xa6, 0xa0, 0xe0, 0x8d, 0xd7, 0xc9, 0xf2, 0x47, 0xa5, 0x1e, 0x2b, 0x41, - 0x6d, 0xda, 0xa9, 0x91, 0xd1, 0xfd, 0xdc, 0x02, 0x71, 0x65, 0xf5, 0x0c, 0x0b, 0x8e, 0x65, 0xc6, - 0x49, 0xc2, 0x08, 0xa2, 0x6c, 0x98, 0x05, 0x23, 0x59, 0x99, 0x3f, 0xa1, 0x0b, 0x90, 0x79, 0xc1, - 0xa2, 0xd8, 0x19, 0x8a, 0x7d, 0xc7, 0x68, 0xec, 0xa7, 0xd6, 0x29, 0x78, 0xee, 0xa9, 0xf5, 0xe6, - 0xa5, 0xcb, 0xf2, 0xea, 0xfc, 0x8a, 0xcc, 0xd9, 0xd1, 0x71, 0x48, 0x77, 0x94, 0x97, 0xf6, 0xfd, - 0x4e, 0x8f, 0x16, 0xc5, 0x1d, 0x84, 0xe3, 0x90, 0xbe, 0x86, 0x95, 0x5d, 0xbf, 0xab, 0xa1, 0x45, - 0x6f, 0xe1, 0x64, 0x38, 0x03, 0xe3, 0x54, 0x5e, 0x08, 0x80, 0x4b, 0xac, 0x3c, 0x86, 0xb2, 0x90, - 0x5e, 0xb8, 0x2c, 0x93, 0x09, 0x51, 0x86, 0x02, 0x2b, 0x6d, 0xae, 0x2d, 0x2f, 0x2d, 0x2c, 0x95, - 0x93, 0xd2, 0x43, 0x90, 0x61, 0x42, 0x20, 0x93, 0xc5, 0x11, 0x43, 0x79, 0x8c, 0x3f, 0x72, 0x8c, - 0x84, 0x78, 0xbb, 0xb9, 0xda, 0x58, 0x92, 0xcb, 0x49, 0xff, 0x50, 0xa7, 0xcb, 0xe3, 0x92, 0x05, - 0x05, 0x6f, 0x1c, 0xfe, 0xf6, 0x2c, 0xc6, 0xbf, 0x9e, 0x80, 0xbc, 0x27, 0xae, 0x26, 0x01, 0x91, - 0xd2, 0xe9, 0x18, 0xd7, 0x9a, 0x4a, 0x47, 0x53, 0x2c, 0xae, 0x1a, 0x40, 0x8b, 0xe6, 0x49, 0x49, - 0xdc, 0xa1, 0x7b, 0x9b, 0xa6, 0xc8, 0x78, 0x39, 0x23, 0x7d, 0x36, 0x01, 0xe5, 0x60, 0x60, 0x1b, - 0x68, 0x66, 0xe2, 0x47, 0xd9, 0x4c, 0xe9, 0xd3, 0x09, 0x28, 0xfa, 0xa3, 0xd9, 0x40, 0xf3, 0x6e, - 0xff, 0x91, 0x36, 0xef, 0xcf, 0x93, 0x30, 0xe9, 0x8b, 0x61, 0xe3, 0xb6, 0xee, 0x45, 0x98, 0xd2, - 0x5a, 0xb8, 0xdb, 0x33, 0x6c, 0xac, 0xab, 0xfb, 0xcd, 0x0e, 0xbe, 0x8a, 0x3b, 0x15, 0x89, 0x1a, - 0x8d, 0x33, 0xa3, 0xa3, 0xe4, 0xb9, 0x65, 0x97, 0x6f, 0x85, 0xb0, 0xd5, 0xa7, 0x97, 0x17, 0x97, - 0x56, 0xd7, 0x2e, 0x6f, 0x2c, 0x5d, 0x5a, 0x78, 0x5f, 0x73, 0xf3, 0xd2, 0xd3, 0x97, 0x2e, 0x3f, - 0x7b, 0x49, 0x2e, 0x6b, 0x01, 0xb2, 0xb7, 0x70, 0xda, 0xaf, 0x41, 0x39, 0xd8, 0x28, 0x74, 0x0c, - 0xc2, 0x9a, 0x55, 0x1e, 0x43, 0xd3, 0x50, 0xba, 0x74, 0xb9, 0xb9, 0xbe, 0xbc, 0xb8, 0xd4, 0x5c, - 0x3a, 0x7f, 0x7e, 0x69, 0x61, 0x63, 0x9d, 0xe5, 0x3d, 0x1c, 0xea, 0x0d, 0xdf, 0x04, 0x97, 0x3e, - 0x95, 0x82, 0xe9, 0x90, 0x96, 0xa0, 0x79, 0xbe, 0x62, 0x61, 0x8b, 0xa8, 0xfb, 0xe3, 0xb4, 0x7e, - 0x8e, 0xc4, 0x0c, 0x6b, 0x8a, 0x69, 0xf3, 0x05, 0xce, 0x69, 0x20, 0x52, 0xd2, 0x6d, 0x6d, 0x5b, - 0xc3, 0x26, 0xcf, 0x27, 0xb1, 0x65, 0x4c, 0xc9, 0x2d, 0x67, 0x29, 0xa5, 0xfb, 0x00, 0xf5, 0x0c, - 0x4b, 0xb3, 0xb5, 0xab, 0xb8, 0xa9, 0xe9, 0x22, 0xf9, 0x94, 0xa6, 0xbb, 0x51, 0x65, 0xf1, 0x66, - 0x59, 0xb7, 0x1d, 0x6a, 0x1d, 0xb7, 0x95, 0x00, 0x35, 0x31, 0xe6, 0x29, 0xb9, 0x2c, 0xde, 0x38, - 0xd4, 0xb7, 0x43, 0xa1, 0x65, 0xf4, 0x49, 0xac, 0xc7, 0xe8, 0x88, 0xef, 0x48, 0xc8, 0x79, 0x56, - 0xe6, 0x90, 0xf0, 0x28, 0xde, 0xcd, 0x7a, 0x15, 0xe4, 0x3c, 0x2b, 0x63, 0x24, 0x77, 0x43, 0x49, - 0x69, 0xb7, 0x4d, 0x02, 0x2e, 0x80, 0xd8, 0xba, 0xa4, 0xe8, 0x14, 0x53, 0xc2, 0xea, 0x53, 0x90, - 0x15, 0x72, 0x20, 0xae, 0x9a, 0x48, 0xa2, 0xd9, 0x63, 0x8b, 0xed, 0xe4, 0x6c, 0x4e, 0xce, 0xea, - 0xe2, 0xe5, 0xed, 0x50, 0xd0, 0xac, 0xa6, 0x9b, 0xc4, 0x4f, 0x9e, 0x4c, 0xce, 0x66, 0xe5, 0xbc, - 0x66, 0x39, 0x09, 0x50, 0xe9, 0x0b, 0x49, 0x28, 0xfa, 0x37, 0x21, 0xd0, 0x22, 0x64, 0x3b, 0x86, - 0x4a, 0x77, 0x19, 0xf9, 0x0e, 0xd8, 0x6c, 0xc4, 0xbe, 0xc5, 0xdc, 0x0a, 0xa7, 0x97, 0x1d, 0xce, - 0xea, 0x7f, 0x48, 0x40, 0x56, 0x14, 0xa3, 0xa3, 0x90, 0xee, 0x29, 0xf6, 0x0e, 0x85, 0x1b, 0x6f, - 0x24, 0xcb, 0x09, 0x99, 0x3e, 0x93, 0x72, 0xab, 0xa7, 0xe8, 0x54, 0x05, 0x78, 0x39, 0x79, 0x26, - 0xe3, 0xda, 0xc1, 0x4a, 0x8b, 0x2e, 0x7a, 0x8c, 0x6e, 0x17, 0xeb, 0xb6, 0x25, 0xc6, 0x95, 0x97, - 0x2f, 0xf0, 0x62, 0x74, 0x2f, 0x4c, 0xd9, 0xa6, 0xa2, 0x75, 0x7c, 0xb4, 0x69, 0x4a, 0x5b, 0x16, - 0x2f, 0x1c, 0xe2, 0x3a, 0x1c, 0x17, 0xb8, 0x2d, 0x6c, 0x2b, 0xea, 0x0e, 0x6e, 0xb9, 0x4c, 0x19, - 0x9a, 0xdc, 0x38, 0xc6, 0x09, 0x16, 0xf9, 0x7b, 0xc1, 0x2b, 0x7d, 0x2b, 0x01, 0x53, 0x62, 0x99, - 0xd6, 0x72, 0x84, 0xb5, 0x0a, 0xa0, 0xe8, 0xba, 0x61, 0x7b, 0xc5, 0x35, 0xa8, 0xca, 0x03, 0x7c, - 0x73, 0xf3, 0x0e, 0x93, 0xec, 0x01, 0xa8, 0x76, 0x01, 0xdc, 0x37, 0x43, 0xc5, 0x56, 0x83, 0x3c, - 0xdf, 0x61, 0xa2, 0xdb, 0x94, 0x6c, 0x61, 0x0f, 0xac, 0x88, 0xac, 0xe7, 0xd0, 0x0c, 0x8c, 0x6f, - 0xe1, 0xb6, 0xa6, 0xf3, 0xbc, 0x31, 0x7b, 0x10, 0xe9, 0x97, 0xb4, 0x93, 0x7e, 0x69, 0x7c, 0x3c, - 0x01, 0xd3, 0xaa, 0xd1, 0x0d, 0xb6, 0xb7, 0x51, 0x0e, 0x64, 0x17, 0xac, 0x8b, 0x89, 0xe7, 0x9f, - 0xf0, 0xec, 0xc8, 0xb6, 0x8d, 0x8e, 0xa2, 0xb7, 0xdd, 0x7d, 0x56, 0xfa, 0x43, 0xbd, 0xbf, 0x8d, - 0xf5, 0xfb, 0xdb, 0x86, 0x67, 0xd7, 0xf5, 0x9c, 0xfb, 0xf3, 0xaf, 0x13, 0x89, 0xcf, 0x27, 0x53, - 0x17, 0xd6, 0x1a, 0x5f, 0x4c, 0x56, 0x2f, 0xb0, 0xea, 0xd6, 0x84, 0x78, 0x64, 0xbc, 0xdd, 0xc1, - 0x2a, 0xe9, 0x32, 0x7c, 0xef, 0x5e, 0x98, 0x69, 0x1b, 0x6d, 0x83, 0x22, 0x9e, 0x21, 0xbf, 0xf8, - 0xce, 0x6d, 0xce, 0x29, 0xad, 0x46, 0x6e, 0xf3, 0xd6, 0x2f, 0xc1, 0x34, 0x27, 0x6e, 0xd2, 0xad, - 0x23, 0xb6, 0xb0, 0x41, 0x23, 0xb3, 0x6a, 0x95, 0xdf, 0xfb, 0x0e, 0x75, 0xe8, 0xf2, 0x14, 0x67, - 0x25, 0xef, 0xd8, 0xda, 0xa7, 0x2e, 0xc3, 0x11, 0x1f, 0x1e, 0x9b, 0xb6, 0xd8, 0x8c, 0x40, 0xfc, - 0xb7, 0x1c, 0x71, 0xda, 0x83, 0xb8, 0xce, 0x59, 0xeb, 0x0b, 0x30, 0x79, 0x18, 0xac, 0x7f, 0xc7, - 0xb1, 0x0a, 0xd8, 0x0b, 0x72, 0x01, 0x4a, 0x14, 0x44, 0xed, 0x5b, 0xb6, 0xd1, 0xa5, 0x36, 0x71, - 0x34, 0xcc, 0x1f, 0x7d, 0x87, 0xcd, 0xa3, 0x22, 0x61, 0x5b, 0x70, 0xb8, 0xea, 0x75, 0xa0, 0xbb, - 0x65, 0x2d, 0xac, 0x76, 0x22, 0x10, 0xbe, 0xc1, 0x1b, 0xe2, 0xd0, 0xd7, 0xaf, 0xc0, 0x0c, 0xf9, - 0x4d, 0x4d, 0x96, 0xb7, 0x25, 0xd1, 0x29, 0xb8, 0xca, 0xb7, 0x7e, 0x8e, 0x4d, 0xd5, 0x69, 0x07, - 0xc0, 0xd3, 0x26, 0xcf, 0x28, 0xb6, 0xb1, 0x6d, 0x63, 0xd3, 0x6a, 0x2a, 0x9d, 0xb0, 0xe6, 0x79, - 0x72, 0x18, 0x95, 0xdf, 0x78, 0xdd, 0x3f, 0x8a, 0x17, 0x18, 0xe7, 0x7c, 0xa7, 0x53, 0xdf, 0x84, - 0x63, 0x21, 0x5a, 0x11, 0x03, 0xf3, 0x53, 0x1c, 0x73, 0x66, 0x40, 0x33, 0x08, 0xec, 0x1a, 0x88, - 0x72, 0x67, 0x2c, 0x63, 0x60, 0xfe, 0x7d, 0x8e, 0x89, 0x38, 0xaf, 0x18, 0x52, 0x82, 0xf8, 0x14, - 0x4c, 0x5d, 0xc5, 0xe6, 0x96, 0x61, 0xf1, 0xbc, 0x51, 0x0c, 0xb8, 0x4f, 0x73, 0xb8, 0x12, 0x67, - 0xa4, 0x89, 0x24, 0x82, 0xf5, 0x18, 0x64, 0xb7, 0x15, 0x15, 0xc7, 0x80, 0xf8, 0x0c, 0x87, 0x98, - 0x20, 0xf4, 0x84, 0x75, 0x1e, 0x0a, 0x6d, 0x83, 0x7b, 0xad, 0x68, 0xf6, 0xcf, 0x72, 0xf6, 0xbc, - 0xe0, 0xe1, 0x10, 0x3d, 0xa3, 0xd7, 0xef, 0x10, 0x97, 0x16, 0x0d, 0xf1, 0x9b, 0x02, 0x42, 0xf0, - 0x70, 0x88, 0x43, 0x88, 0xf5, 0x15, 0x01, 0x61, 0x79, 0xe4, 0xf9, 0x24, 0xe4, 0x0d, 0xbd, 0xb3, - 0x6f, 0xe8, 0x71, 0x1a, 0xf1, 0x39, 0x8e, 0x00, 0x9c, 0x85, 0x00, 0x9c, 0x83, 0x5c, 0xdc, 0x81, - 0xf8, 0x87, 0xaf, 0x8b, 0xe9, 0x21, 0x46, 0xe0, 0x02, 0x94, 0x84, 0x81, 0xd2, 0x0c, 0x3d, 0x06, - 0xc4, 0x3f, 0xe2, 0x10, 0x45, 0x0f, 0x1b, 0xef, 0x86, 0x8d, 0x2d, 0xbb, 0x8d, 0xe3, 0x80, 0x7c, - 0x41, 0x74, 0x83, 0xb3, 0x70, 0x51, 0x6e, 0x61, 0x5d, 0xdd, 0x89, 0x87, 0xf0, 0x5b, 0x42, 0x94, - 0x82, 0x87, 0x40, 0x2c, 0xc0, 0x64, 0x57, 0x31, 0xad, 0x1d, 0xa5, 0x13, 0x6b, 0x38, 0xfe, 0x31, - 0xc7, 0x28, 0x38, 0x4c, 0x5c, 0x22, 0x7d, 0xfd, 0x30, 0x30, 0x5f, 0x14, 0x12, 0xf1, 0xb0, 0xf1, - 0xa9, 0x67, 0xd9, 0x34, 0xc9, 0x76, 0x18, 0xb4, 0x7f, 0x22, 0xa6, 0x1e, 0xe3, 0x5d, 0xf5, 0x22, - 0x9e, 0x83, 0x9c, 0xa5, 0xbd, 0x14, 0x0b, 0xe6, 0x9f, 0x8a, 0x91, 0xa6, 0x0c, 0x84, 0xf9, 0x7d, - 0x70, 0x3c, 0xd4, 0x4d, 0xc4, 0x00, 0xfb, 0x67, 0x1c, 0xec, 0x68, 0x88, 0xab, 0xe0, 0x26, 0xe1, - 0xb0, 0x90, 0xbf, 0x2d, 0x4c, 0x02, 0x0e, 0x60, 0xad, 0x91, 0x75, 0x84, 0xa5, 0x6c, 0x1f, 0x4e, - 0x6a, 0xbf, 0x23, 0xa4, 0xc6, 0x78, 0x7d, 0x52, 0xdb, 0x80, 0xa3, 0x1c, 0xf1, 0x70, 0xe3, 0xfa, - 0xbb, 0xc2, 0xb0, 0x32, 0xee, 0x4d, 0xff, 0xe8, 0xbe, 0x1f, 0xaa, 0x8e, 0x38, 0x45, 0xc0, 0x6a, - 0x35, 0xbb, 0x4a, 0x2f, 0x06, 0xf2, 0xef, 0x71, 0x64, 0x61, 0xf1, 0x9d, 0x88, 0xd7, 0x5a, 0x55, - 0x7a, 0x04, 0xfc, 0x39, 0xa8, 0x08, 0xf0, 0xbe, 0x6e, 0x62, 0xd5, 0x68, 0xeb, 0xda, 0x4b, 0xb8, - 0x15, 0x03, 0xfa, 0x9f, 0x07, 0x86, 0x6a, 0xd3, 0xc3, 0x4e, 0x90, 0x97, 0xa1, 0xec, 0xc4, 0x2a, - 0x4d, 0xad, 0xdb, 0x33, 0x4c, 0x3b, 0x02, 0xf1, 0x5f, 0x88, 0x91, 0x72, 0xf8, 0x96, 0x29, 0x5b, - 0x7d, 0x09, 0xd8, 0xce, 0x73, 0x5c, 0x95, 0xfc, 0x12, 0x07, 0x9a, 0x74, 0xb9, 0xb8, 0xe1, 0x50, - 0x8d, 0x6e, 0x4f, 0x31, 0xe3, 0xd8, 0xbf, 0x7f, 0x29, 0x0c, 0x07, 0x67, 0xe1, 0x86, 0xc3, 0xde, - 0xef, 0x61, 0xe2, 0xed, 0x63, 0x20, 0x7c, 0x59, 0x18, 0x0e, 0xc1, 0xc3, 0x21, 0x44, 0xc0, 0x10, - 0x03, 0xe2, 0x2b, 0x02, 0x42, 0xf0, 0x10, 0x88, 0x67, 0x5c, 0x47, 0x6b, 0xe2, 0xb6, 0x66, 0xd9, - 0x26, 0x0b, 0x93, 0x47, 0x43, 0x7d, 0xf5, 0x75, 0x7f, 0x10, 0x26, 0x7b, 0x58, 0x89, 0x25, 0xe2, - 0x69, 0x57, 0xba, 0x8a, 0x8a, 0x6e, 0xd8, 0xd7, 0x84, 0x25, 0xf2, 0xb0, 0x91, 0xb6, 0x79, 0x22, - 0x44, 0x22, 0x76, 0x95, 0xac, 0x1d, 0x62, 0xc0, 0xfd, 0x7e, 0xa0, 0x71, 0xeb, 0x82, 0x97, 0x60, - 0x7a, 0xe2, 0x9f, 0xbe, 0xbe, 0x8b, 0xf7, 0x63, 0x69, 0xe7, 0x1f, 0x04, 0xe2, 0x9f, 0x4d, 0xc6, - 0xc9, 0x6c, 0x48, 0x29, 0x10, 0x4f, 0xa1, 0xa8, 0x73, 0x46, 0x95, 0xbf, 0xfd, 0x06, 0xef, 0xaf, - 0x3f, 0x9c, 0xaa, 0xaf, 0x10, 0x25, 0xf7, 0x07, 0x3d, 0xd1, 0x60, 0x3f, 0xf7, 0x86, 0xa3, 0xe7, - 0xbe, 0x98, 0xa7, 0x7e, 0x1e, 0x26, 0x7d, 0x01, 0x4f, 0x34, 0xd4, 0x07, 0x39, 0x54, 0xc1, 0x1b, - 0xef, 0xd4, 0x1f, 0x82, 0x34, 0x09, 0x5e, 0xa2, 0xd9, 0x7f, 0x9e, 0xb3, 0x53, 0xf2, 0xfa, 0x7b, - 0x20, 0x2b, 0x82, 0x96, 0x68, 0xd6, 0x0f, 0x71, 0x56, 0x87, 0x85, 0xb0, 0x8b, 0x80, 0x25, 0x9a, - 0xfd, 0xc3, 0x82, 0x5d, 0xb0, 0x10, 0xf6, 0xf8, 0x22, 0xfc, 0xfa, 0xdf, 0x49, 0x73, 0xa7, 0x23, - 0x64, 0x77, 0x0e, 0x26, 0x78, 0xa4, 0x12, 0xcd, 0xfd, 0x51, 0x5e, 0xb9, 0xe0, 0xa8, 0x3f, 0x02, - 0xe3, 0x31, 0x05, 0xfe, 0x8b, 0x9c, 0x95, 0xd1, 0xd7, 0x17, 0x20, 0xef, 0x89, 0x4e, 0xa2, 0xd9, - 0x7f, 0x89, 0xb3, 0x7b, 0xb9, 0x48, 0xd3, 0x79, 0x74, 0x12, 0x0d, 0xf0, 0x71, 0xd1, 0x74, 0xce, - 0x41, 0xc4, 0x26, 0x02, 0x93, 0x68, 0xee, 0x4f, 0x08, 0xa9, 0x0b, 0x96, 0xfa, 0x93, 0x90, 0x73, - 0x9c, 0x4d, 0x34, 0xff, 0x2f, 0x73, 0x7e, 0x97, 0x87, 0x48, 0xc0, 0xe3, 0xec, 0xa2, 0x21, 0x7e, - 0x45, 0x48, 0xc0, 0xc3, 0x45, 0xa6, 0x51, 0x30, 0x80, 0x89, 0x46, 0xfa, 0xbb, 0x62, 0x1a, 0x05, - 0xe2, 0x17, 0x32, 0x9a, 0xd4, 0xe6, 0x47, 0x43, 0xfc, 0xaa, 0x18, 0x4d, 0x4a, 0x4f, 0x9a, 0x11, - 0x8c, 0x08, 0xa2, 0x31, 0xfe, 0x9e, 0x68, 0x46, 0x20, 0x20, 0xa8, 0xaf, 0x01, 0x1a, 0x8c, 0x06, - 0xa2, 0xf1, 0x3e, 0xc9, 0xf1, 0xa6, 0x06, 0x82, 0x81, 0xfa, 0xb3, 0x70, 0x34, 0x3c, 0x12, 0x88, - 0x46, 0xfd, 0x8d, 0x37, 0x02, 0x6b, 0x37, 0x6f, 0x20, 0x50, 0xdf, 0x70, 0x5d, 0x8a, 0x37, 0x0a, - 0x88, 0x86, 0xfd, 0xd4, 0x1b, 0x7e, 0xc3, 0xed, 0x0d, 0x02, 0xea, 0xf3, 0x00, 0xae, 0x03, 0x8e, - 0xc6, 0xfa, 0x34, 0xc7, 0xf2, 0x30, 0x91, 0xa9, 0xc1, 0xfd, 0x6f, 0x34, 0xff, 0x67, 0xc4, 0xd4, - 0xe0, 0x1c, 0x64, 0x6a, 0x08, 0xd7, 0x1b, 0xcd, 0xfd, 0x59, 0x31, 0x35, 0x04, 0x0b, 0xd1, 0x6c, - 0x8f, 0x77, 0x8b, 0x46, 0xf8, 0x9c, 0xd0, 0x6c, 0x0f, 0x57, 0xfd, 0x12, 0x4c, 0x0d, 0x38, 0xc4, - 0x68, 0xa8, 0xcf, 0x73, 0xa8, 0x72, 0xd0, 0x1f, 0x7a, 0x9d, 0x17, 0x77, 0x86, 0xd1, 0x68, 0xff, - 0x20, 0xe0, 0xbc, 0xb8, 0x2f, 0xac, 0x9f, 0x83, 0xac, 0xde, 0xef, 0x74, 0xc8, 0xe4, 0x41, 0xa3, - 0xcf, 0x06, 0x56, 0xfe, 0xfb, 0x0f, 0xb9, 0x74, 0x04, 0x43, 0xfd, 0x21, 0x18, 0xc7, 0xdd, 0x2d, - 0xdc, 0x8a, 0xe2, 0xfc, 0xde, 0x0f, 0x85, 0xc1, 0x24, 0xd4, 0xf5, 0x27, 0x01, 0x58, 0x6a, 0x84, - 0x6e, 0x0f, 0x46, 0xf0, 0xfe, 0x8f, 0x1f, 0xf2, 0xc3, 0x38, 0x2e, 0x8b, 0x0b, 0xc0, 0x8e, 0xf6, - 0x8c, 0x06, 0x78, 0xdd, 0x0f, 0x40, 0x47, 0xe4, 0x31, 0x98, 0x78, 0xc1, 0x32, 0x74, 0x5b, 0x69, - 0x47, 0x71, 0xff, 0x4f, 0xce, 0x2d, 0xe8, 0x89, 0xc0, 0xba, 0x86, 0x89, 0x6d, 0xa5, 0x6d, 0x45, - 0xf1, 0xfe, 0x2f, 0xce, 0xeb, 0x30, 0x10, 0x66, 0x55, 0xb1, 0xec, 0x38, 0xfd, 0xfe, 0xdf, 0x82, - 0x59, 0x30, 0x90, 0x46, 0x93, 0xdf, 0xbb, 0x78, 0x3f, 0x8a, 0xf7, 0xfb, 0xa2, 0xd1, 0x9c, 0xbe, - 0xfe, 0x1e, 0xc8, 0x91, 0x9f, 0xec, 0x84, 0x5d, 0x04, 0xf3, 0xff, 0xe1, 0xcc, 0x2e, 0x07, 0xa9, - 0xd9, 0xb2, 0x5b, 0xb6, 0x16, 0x2d, 0xec, 0xeb, 0x7c, 0xa4, 0x05, 0x7d, 0x7d, 0x1e, 0xf2, 0x96, - 0xdd, 0x6a, 0xf5, 0x79, 0x7c, 0x1a, 0xc1, 0xfe, 0x7f, 0x7f, 0xe8, 0xa4, 0x2c, 0x1c, 0x1e, 0x32, - 0xda, 0xd7, 0x76, 0xed, 0x9e, 0x41, 0xb7, 0x40, 0xa2, 0x10, 0xde, 0xe0, 0x08, 0x1e, 0x96, 0xfa, - 0x02, 0x14, 0x48, 0x5f, 0x4c, 0xdc, 0xc3, 0x74, 0xbf, 0x2a, 0x02, 0xe2, 0x2f, 0xb9, 0x00, 0x7c, - 0x4c, 0x8d, 0x9f, 0x1e, 0x76, 0x3f, 0x27, 0x3c, 0x6d, 0x0c, 0x17, 0x8c, 0x0b, 0x06, 0x4b, 0x18, - 0x3f, 0x2f, 0xf9, 0xd2, 0xc5, 0x6d, 0xc3, 0xcd, 0xd6, 0x3a, 0x8b, 0x1c, 0xf8, 0xfd, 0x24, 0xdc, - 0x49, 0x8f, 0x05, 0x9b, 0x5d, 0x4d, 0xb7, 0xcf, 0xa8, 0xe6, 0x7e, 0xcf, 0x36, 0xce, 0x74, 0xb1, - 0xb9, 0xdb, 0xc1, 0xfc, 0x0f, 0xcf, 0xfe, 0x56, 0x5c, 0xb2, 0x39, 0x46, 0x36, 0xc7, 0xde, 0x57, - 0x43, 0xb3, 0xc5, 0xd2, 0x02, 0x4c, 0xac, 0x99, 0x86, 0xb1, 0x7d, 0xb9, 0x87, 0x10, 0x3f, 0xe9, - 0xcc, 0x0f, 0xc6, 0x51, 0x35, 0xe4, 0x37, 0xa3, 0x92, 0xee, 0xcd, 0x28, 0x04, 0xe9, 0x96, 0x62, - 0x2b, 0x34, 0x61, 0x5e, 0x90, 0xe9, 0x6f, 0xa9, 0x01, 0xe3, 0x14, 0x04, 0x3d, 0x06, 0x29, 0xa3, - 0x67, 0xf1, 0xec, 0xfe, 0xed, 0x73, 0xc3, 0xda, 0x32, 0xc7, 0xab, 0x6c, 0xa4, 0xbf, 0x71, 0x50, - 0x1b, 0x93, 0x09, 0x4f, 0x63, 0xed, 0xaf, 0xbf, 0x7d, 0x22, 0xf1, 0x5b, 0xaf, 0x9e, 0x48, 0x0c, - 0xbd, 0xe9, 0x34, 0xe7, 0x11, 0x94, 0x47, 0x18, 0xc3, 0xe4, 0xe2, 0xdc, 0x77, 0xfa, 0x85, 0x24, - 0x9c, 0xf0, 0x10, 0x75, 0xb4, 0x2d, 0xeb, 0xcc, 0xee, 0x55, 0x76, 0x35, 0x8a, 0x4b, 0x0d, 0x79, - 0x5a, 0x4a, 0xde, 0xcf, 0xed, 0x5e, 0x1d, 0x22, 0xaf, 0x39, 0x48, 0xaf, 0x29, 0x9a, 0x19, 0x72, - 0x65, 0x6c, 0xc6, 0x3d, 0xdb, 0x4a, 0xca, 0xd8, 0x83, 0x74, 0x16, 0xb2, 0x4f, 0x2f, 0x3f, 0xfc, - 0x60, 0x1c, 0x9e, 0x14, 0xe7, 0x69, 0xc8, 0x42, 0x14, 0x5f, 0x0d, 0x11, 0xc7, 0xd7, 0x5f, 0x3b, - 0x91, 0x08, 0xbd, 0xfc, 0x15, 0x2e, 0x12, 0xde, 0x5b, 0x47, 0x18, 0x9f, 0x48, 0x42, 0x2d, 0xb8, - 0x2b, 0x40, 0xa6, 0xa2, 0x65, 0x2b, 0xdd, 0xde, 0xb0, 0xbb, 0x5f, 0xe7, 0x20, 0xb7, 0x21, 0x68, - 0x50, 0x05, 0x26, 0x2c, 0xac, 0x1a, 0x7a, 0xcb, 0xa2, 0x3d, 0x49, 0xc9, 0xe2, 0x91, 0xf4, 0x46, - 0x57, 0x74, 0xc3, 0xe2, 0x27, 0x4e, 0xd9, 0x43, 0xe3, 0xd7, 0x13, 0x87, 0x9b, 0x1b, 0x45, 0xa7, - 0x2a, 0x3a, 0x41, 0xd6, 0x12, 0xcf, 0xdf, 0x3b, 0x6a, 0x43, 0x85, 0xdd, 0x70, 0x73, 0xba, 0xe0, - 0xd9, 0x3d, 0x39, 0x11, 0xdc, 0x3d, 0x79, 0x16, 0x77, 0x3a, 0x4f, 0xeb, 0xc6, 0x35, 0x7d, 0x83, - 0xf0, 0x38, 0x22, 0xf9, 0x58, 0x12, 0x4e, 0x0c, 0x6c, 0x94, 0x70, 0xf3, 0x32, 0x4c, 0x22, 0x75, - 0xc8, 0x2e, 0x0a, 0xab, 0x75, 0x58, 0x81, 0xfc, 0xea, 0x21, 0x05, 0x32, 0x29, 0x6a, 0x12, 0xf2, - 0xb8, 0x27, 0x5a, 0x1e, 0xa2, 0xfd, 0x37, 0x20, 0x8e, 0x0f, 0x3e, 0x01, 0xb7, 0x7b, 0x14, 0x48, - 0xd9, 0x52, 0x35, 0x7e, 0x8d, 0xd0, 0x3b, 0x63, 0x8e, 0x78, 0x66, 0x0c, 0x21, 0x99, 0xa3, 0x2f, - 0xc3, 0x27, 0x4d, 0x35, 0x9e, 0xed, 0xaa, 0x46, 0xcc, 0xd2, 0x6a, 0x94, 0xe2, 0x56, 0x23, 0x86, - 0x51, 0xfa, 0xab, 0x71, 0x98, 0x10, 0x77, 0x3e, 0x1f, 0x85, 0x34, 0x56, 0x77, 0x0c, 0x7e, 0xd8, - 0x5d, 0x9a, 0x0b, 0xed, 0xcf, 0x1c, 0xa7, 0x5e, 0x52, 0x77, 0x8c, 0x8b, 0x63, 0x32, 0xe5, 0xa0, - 0x77, 0xc5, 0x3a, 0x7d, 0x6b, 0x87, 0x9f, 0x49, 0x3e, 0x35, 0x9a, 0xf5, 0x3c, 0x21, 0xbd, 0x38, - 0x26, 0x33, 0x1e, 0x52, 0x2d, 0xbd, 0xe7, 0x96, 0x8e, 0x53, 0xed, 0xb2, 0xbe, 0x4d, 0xab, 0x25, - 0x1c, 0xe8, 0x22, 0x80, 0x85, 0x6d, 0x71, 0x94, 0x61, 0x9c, 0xf2, 0xdf, 0x3d, 0x9a, 0x7f, 0x1d, - 0xdb, 0xcc, 0x6d, 0x5d, 0x1c, 0x93, 0x73, 0x96, 0x78, 0x20, 0x48, 0x9a, 0xae, 0xd9, 0x4d, 0x75, - 0x47, 0xd1, 0x74, 0xba, 0x07, 0x1f, 0x89, 0xb4, 0xac, 0x6b, 0xf6, 0x02, 0x21, 0x27, 0x48, 0x9a, - 0x78, 0x20, 0xa2, 0xa0, 0x77, 0x4b, 0xf9, 0x65, 0xac, 0x08, 0x51, 0x3c, 0x43, 0x48, 0x89, 0x28, - 0x28, 0x0f, 0x7a, 0x1a, 0xf2, 0x74, 0xbb, 0xb5, 0xb9, 0xd5, 0x31, 0xd4, 0x5d, 0x7e, 0x03, 0x65, - 0x76, 0x34, 0x44, 0x83, 0x30, 0x34, 0x08, 0xfd, 0xc5, 0x31, 0x19, 0xb6, 0x9c, 0x27, 0xd4, 0x80, - 0x2c, 0x3b, 0xf5, 0x6b, 0xef, 0xf1, 0x3b, 0x84, 0x77, 0x8e, 0x46, 0xa2, 0x07, 0x80, 0x37, 0xf6, - 0x2e, 0x8e, 0xc9, 0x13, 0x2a, 0xfb, 0x89, 0x96, 0x20, 0x87, 0xf5, 0x16, 0x6f, 0x4e, 0x9e, 0xdf, - 0xb6, 0x1a, 0xad, 0x17, 0x7a, 0x4b, 0x34, 0x26, 0x8b, 0xf9, 0x6f, 0xf4, 0x04, 0x64, 0x54, 0xa3, - 0xdb, 0xd5, 0x6c, 0x7a, 0x17, 0x31, 0x7f, 0xf6, 0x8e, 0x88, 0x86, 0x50, 0xda, 0x8b, 0x63, 0x32, - 0xe7, 0x22, 0xc3, 0xd3, 0xc2, 0x1d, 0xed, 0x2a, 0x36, 0x49, 0x67, 0xa6, 0xe3, 0x0c, 0xcf, 0x22, - 0xa3, 0xa7, 0xdd, 0xc9, 0xb5, 0xc4, 0x43, 0x63, 0x82, 0xbb, 0x17, 0xe9, 0x6e, 0xc8, 0x7b, 0x34, - 0x99, 0x58, 0x2c, 0xbe, 0x02, 0xe1, 0xce, 0x5e, 0x3c, 0x4a, 0x45, 0x28, 0x78, 0xf5, 0x56, 0xea, - 0x3a, 0x8c, 0x74, 0x13, 0xbf, 0x02, 0x13, 0x57, 0xb1, 0x69, 0xb1, 0x1d, 0x7c, 0xca, 0xc8, 0x1f, - 0xd1, 0x29, 0x98, 0xa4, 0x72, 0x6b, 0x8a, 0xf7, 0xec, 0xfa, 0x72, 0x81, 0x16, 0x5e, 0xe1, 0x44, - 0x35, 0xc8, 0xf7, 0xce, 0xf6, 0x1c, 0x12, 0x76, 0x87, 0x1a, 0x7a, 0x67, 0x7b, 0x9c, 0x40, 0xaa, - 0x43, 0x39, 0xa8, 0xba, 0x5e, 0xaf, 0x99, 0x0b, 0xf1, 0x9a, 0x39, 0xe1, 0x69, 0x7f, 0x37, 0xe9, - 0x30, 0x3b, 0xda, 0x4a, 0xa6, 0x1b, 0x31, 0x12, 0x94, 0x3b, 0x7f, 0xb6, 0x3a, 0x10, 0xda, 0x39, - 0xbe, 0xa6, 0x91, 0x25, 0xa1, 0xc8, 0x27, 0xfe, 0xac, 0x96, 0x90, 0x29, 0x07, 0x3a, 0x4e, 0x14, - 0x4a, 0xd1, 0xf4, 0xa6, 0xd6, 0x12, 0xb7, 0x8e, 0xe9, 0xf3, 0x72, 0x0b, 0x3d, 0x03, 0x65, 0xd5, - 0xd0, 0x2d, 0xac, 0x5b, 0x7d, 0xab, 0xd9, 0x53, 0x4c, 0xa5, 0xeb, 0x5e, 0xce, 0x0b, 0x1f, 0xa6, - 0x05, 0x41, 0xbe, 0x46, 0xa9, 0xe5, 0x92, 0xea, 0x2f, 0x40, 0x2b, 0x00, 0x57, 0x95, 0x8e, 0xd6, - 0x52, 0x6c, 0xc3, 0xb4, 0xf8, 0xdd, 0x94, 0x61, 0x60, 0x57, 0x04, 0xe1, 0x66, 0xaf, 0xa5, 0xd8, - 0x98, 0x07, 0x51, 0x1e, 0x7e, 0x74, 0x17, 0x94, 0x94, 0x5e, 0xaf, 0x69, 0xd9, 0x8a, 0x8d, 0x9b, - 0x5b, 0xfb, 0x36, 0xb6, 0xa8, 0xbd, 0x28, 0xc8, 0x93, 0x4a, 0xaf, 0xb7, 0x4e, 0x4a, 0x1b, 0xa4, - 0x50, 0x6a, 0x39, 0xa3, 0x4d, 0xa7, 0xa6, 0x13, 0xdb, 0x25, 0xdc, 0xd8, 0x8e, 0x94, 0xd1, 0xa3, - 0x15, 0x4c, 0x06, 0xe2, 0x34, 0x4a, 0x66, 0x07, 0x6b, 0xed, 0x1d, 0x76, 0x0d, 0x3e, 0x25, 0xf3, - 0x27, 0x32, 0x30, 0x3d, 0xd3, 0xb8, 0x8a, 0xf9, 0x0d, 0x78, 0xf6, 0x20, 0xfd, 0x5a, 0x12, 0xa6, - 0x06, 0xa6, 0x2f, 0xc1, 0xa5, 0xe7, 0xfb, 0x79, 0x5d, 0xe4, 0x37, 0x3a, 0x47, 0x70, 0x95, 0x16, - 0xbf, 0xb3, 0x92, 0x3f, 0x7b, 0xdb, 0x10, 0x09, 0x5c, 0xa4, 0x44, 0xbc, 0xe3, 0x9c, 0x05, 0x6d, - 0x42, 0xb9, 0xa3, 0x58, 0x76, 0x93, 0xcd, 0x22, 0x76, 0x9b, 0x38, 0x35, 0xd2, 0x12, 0xac, 0x28, - 0x62, 0xf6, 0x11, 0xe5, 0xe6, 0x70, 0xc5, 0x8e, 0xaf, 0x14, 0x3d, 0x07, 0x33, 0x5b, 0xfb, 0x2f, - 0x29, 0xba, 0xad, 0xe9, 0xf4, 0xb0, 0x91, 0x7f, 0x8c, 0x6a, 0x43, 0xa0, 0x97, 0xae, 0x6a, 0x2d, - 0xac, 0xab, 0x62, 0x70, 0xa6, 0x1d, 0x08, 0x67, 0xf0, 0x2c, 0xe9, 0x39, 0x28, 0xfa, 0x6d, 0x11, - 0x2a, 0x42, 0xd2, 0xde, 0xe3, 0x12, 0x49, 0xda, 0x7b, 0xe8, 0x61, 0x1e, 0x91, 0x27, 0xe9, 0x69, - 0xb9, 0x61, 0xce, 0x82, 0x73, 0xbb, 0x77, 0x0e, 0x25, 0xc9, 0x99, 0x09, 0x8e, 0x61, 0x08, 0x62, - 0x4b, 0xa7, 0xa1, 0x14, 0x30, 0x62, 0x9e, 0x61, 0x4d, 0x78, 0x87, 0x55, 0x2a, 0xc1, 0xa4, 0xcf, - 0x56, 0x49, 0x7f, 0x9c, 0x81, 0xac, 0xf3, 0x2d, 0x83, 0x8b, 0x90, 0xc3, 0x7b, 0x2a, 0xee, 0xd9, - 0xc2, 0x2a, 0x8c, 0x32, 0xe2, 0x8c, 0x67, 0x49, 0xd0, 0x13, 0x73, 0xe5, 0x30, 0xa3, 0xc7, 0x7c, - 0x2e, 0xf9, 0x54, 0x14, 0x88, 0xd7, 0x27, 0x3f, 0xee, 0xf7, 0xc9, 0x77, 0x44, 0xf0, 0x06, 0x9c, - 0xf2, 0x63, 0x3e, 0xa7, 0x1c, 0x55, 0xb1, 0xcf, 0x2b, 0x2f, 0x87, 0x78, 0xe5, 0xa8, 0xee, 0x0f, - 0x71, 0xcb, 0xcb, 0x21, 0x6e, 0x79, 0x36, 0xb2, 0x2d, 0xa1, 0x7e, 0xf9, 0x71, 0xbf, 0x5f, 0x8e, - 0x12, 0x47, 0xc0, 0x31, 0xaf, 0x84, 0x39, 0xe6, 0xd3, 0x11, 0x18, 0x43, 0x3d, 0xf3, 0xc2, 0x80, - 0x67, 0xbe, 0x2b, 0x02, 0x2a, 0xc4, 0x35, 0x2f, 0xfb, 0x7c, 0x22, 0xc4, 0x92, 0x4d, 0xb8, 0x53, - 0x44, 0xe7, 0x07, 0xbd, 0xfc, 0xdd, 0x51, 0xaa, 0x16, 0xe6, 0xe6, 0x9f, 0x0c, 0xb8, 0xf9, 0x3b, - 0xa3, 0x7a, 0x15, 0xf0, 0xf3, 0xae, 0x77, 0x3e, 0x4d, 0xec, 0x63, 0x60, 0x66, 0x10, 0x5b, 0x8a, - 0x4d, 0xd3, 0x30, 0xb9, 0xe3, 0x63, 0x0f, 0xd2, 0x2c, 0xb1, 0xd8, 0xae, 0xfe, 0x8f, 0xf0, 0xe4, - 0x74, 0xd2, 0x7a, 0xb4, 0x5d, 0xfa, 0x6a, 0xc2, 0xe5, 0xa5, 0x96, 0xcd, 0x6b, 0xed, 0x73, 0xdc, - 0xda, 0x7b, 0x1c, 0x7c, 0xd2, 0xef, 0xe0, 0x6b, 0x90, 0x27, 0x3e, 0x25, 0xe0, 0xbb, 0x95, 0x9e, - 0xf0, 0xdd, 0xe8, 0x1e, 0x98, 0xa2, 0xf6, 0x97, 0x85, 0x01, 0xdc, 0x90, 0xa4, 0xa9, 0x21, 0x29, - 0x91, 0x17, 0x4c, 0x82, 0xcc, 0x51, 0xdc, 0x0f, 0xd3, 0x1e, 0x5a, 0x82, 0x4b, 0x7d, 0x01, 0x73, - 0x52, 0x65, 0x87, 0x7a, 0xbe, 0xd7, 0xbb, 0xa8, 0x58, 0x3b, 0xd2, 0xaa, 0x2b, 0x20, 0x37, 0x2e, - 0x40, 0x90, 0x56, 0x8d, 0x16, 0xeb, 0xf7, 0xa4, 0x4c, 0x7f, 0x93, 0x58, 0xa1, 0x63, 0xb4, 0xf9, - 0x09, 0x48, 0xf2, 0x93, 0x50, 0x39, 0x53, 0x3b, 0xc7, 0xe6, 0xac, 0xf4, 0xa5, 0x84, 0x8b, 0xe7, - 0x86, 0x0a, 0x61, 0x5e, 0x3d, 0x71, 0x33, 0xbd, 0x7a, 0xf2, 0xcd, 0x79, 0x75, 0xe9, 0x8d, 0x84, - 0x3b, 0xa4, 0x8e, 0xbf, 0xbe, 0x31, 0x11, 0x10, 0xed, 0x62, 0x37, 0xc6, 0xd9, 0x49, 0x5d, 0xf6, - 0x20, 0x42, 0xad, 0x4c, 0x48, 0x82, 0x62, 0xc2, 0x93, 0xd4, 0x40, 0x0f, 0x51, 0x3f, 0x6f, 0x6c, - 0x73, 0xd3, 0x50, 0x8b, 0x48, 0xf4, 0xc8, 0x8c, 0xda, 0xe3, 0x5f, 0x72, 0xbe, 0xb0, 0xe1, 0x56, - 0xc8, 0x91, 0xa6, 0xb3, 0xeb, 0x4f, 0xc0, 0xd3, 0x8b, 0xa2, 0x40, 0x6a, 0x01, 0x1a, 0xb4, 0x31, - 0xe8, 0x12, 0x64, 0xf0, 0x55, 0x7a, 0x1a, 0x95, 0x25, 0x9b, 0x6e, 0x1d, 0xea, 0x88, 0xb1, 0x6e, - 0x37, 0x2a, 0x44, 0x98, 0xdf, 0x3b, 0xa8, 0x95, 0x19, 0xcf, 0x7d, 0x46, 0x57, 0xb3, 0x71, 0xb7, - 0x67, 0xef, 0xcb, 0x1c, 0x45, 0xfa, 0x70, 0x92, 0xf8, 0x43, 0x9f, 0xfd, 0x09, 0x15, 0xaf, 0x98, - 0x34, 0x49, 0x4f, 0x88, 0x14, 0x4f, 0xe4, 0xb7, 0x01, 0xb4, 0x15, 0xab, 0x79, 0x4d, 0xd1, 0x6d, - 0xdc, 0xe2, 0x72, 0xcf, 0xb5, 0x15, 0xeb, 0x59, 0x5a, 0x40, 0xe2, 0x4d, 0xf2, 0xba, 0x6f, 0xe1, - 0x16, 0x1d, 0x80, 0x94, 0x3c, 0xd1, 0x56, 0xac, 0x4d, 0x0b, 0xb7, 0x3c, 0x7d, 0x9d, 0xb8, 0x19, - 0x7d, 0xf5, 0xcb, 0x3b, 0x1b, 0x94, 0xf7, 0x47, 0x93, 0xee, 0xec, 0x70, 0xc3, 0x87, 0x1f, 0x4f, - 0x59, 0x7c, 0x86, 0xae, 0x29, 0xfc, 0x4e, 0x00, 0xbd, 0x0f, 0xa6, 0x9c, 0x59, 0xd9, 0xec, 0xd3, - 0xd9, 0x2a, 0xb4, 0xf0, 0x70, 0x93, 0xbb, 0x7c, 0xd5, 0x5f, 0x6c, 0xa1, 0x9f, 0x81, 0x63, 0x01, - 0x1b, 0xe4, 0x54, 0x90, 0x3c, 0x94, 0x29, 0x3a, 0xe2, 0x37, 0x45, 0x02, 0xdf, 0x95, 0x5e, 0xea, - 0xa6, 0xcc, 0x9a, 0x3b, 0x48, 0x08, 0xeb, 0x75, 0x6f, 0x61, 0x3a, 0x21, 0xfd, 0x49, 0x02, 0x4a, - 0x81, 0x06, 0xa2, 0x47, 0x61, 0x9c, 0x79, 0xe0, 0xc4, 0xc8, 0x44, 0x08, 0x95, 0x38, 0xef, 0x13, - 0x63, 0x40, 0xf3, 0x90, 0xc5, 0x3c, 0xba, 0xe6, 0x42, 0xb9, 0x33, 0x22, 0x08, 0xe7, 0xfc, 0x0e, - 0x1b, 0x5a, 0x84, 0x9c, 0x23, 0xfa, 0x88, 0x95, 0x9b, 0x33, 0x72, 0x1c, 0xc4, 0x65, 0x94, 0x16, - 0x20, 0xef, 0x69, 0x1e, 0xbb, 0x0b, 0xb8, 0xc7, 0x97, 0x5b, 0x2c, 0x80, 0xce, 0x76, 0x95, 0x3d, - 0xba, 0xd2, 0x42, 0xc7, 0x60, 0x82, 0xbc, 0x6c, 0xf3, 0xcb, 0x52, 0x29, 0x39, 0xd3, 0x55, 0xf6, - 0x2e, 0x28, 0x96, 0xf4, 0xb1, 0x04, 0x14, 0xfd, 0xed, 0x44, 0xf7, 0x02, 0x22, 0xb4, 0x4a, 0x1b, - 0x37, 0xf5, 0x7e, 0x97, 0xf9, 0x48, 0x81, 0x58, 0xea, 0x2a, 0x7b, 0xf3, 0x6d, 0x7c, 0xa9, 0xdf, - 0xa5, 0x55, 0x5b, 0x68, 0x15, 0xca, 0x82, 0x58, 0x24, 0xbb, 0xb8, 0x54, 0x8e, 0x0f, 0x7e, 0xd7, - 0x86, 0x13, 0xb0, 0xb5, 0xee, 0x27, 0xc9, 0x5a, 0xb7, 0xc8, 0xf0, 0xc4, 0x1b, 0xe9, 0x21, 0x28, - 0x05, 0x7a, 0x8c, 0x24, 0x98, 0xec, 0xf5, 0xb7, 0x9a, 0xbb, 0x78, 0x9f, 0xde, 0x7e, 0x67, 0xaa, - 0x9e, 0x93, 0xf3, 0xbd, 0xfe, 0xd6, 0xd3, 0x78, 0x9f, 0xe6, 0x0e, 0x25, 0x15, 0x8a, 0xfe, 0xc5, - 0x14, 0x71, 0x1c, 0xa6, 0xd1, 0xd7, 0x5b, 0xe2, 0xbb, 0x06, 0xf4, 0x01, 0x9d, 0x83, 0xf1, 0xab, - 0x06, 0xd3, 0xe6, 0x51, 0xab, 0xa7, 0x2b, 0x86, 0x8d, 0x3d, 0x4b, 0x32, 0xc6, 0x23, 0x59, 0x30, - 0x4e, 0xf5, 0x32, 0x74, 0xa3, 0xe2, 0x0a, 0x80, 0x62, 0xdb, 0xa6, 0xb6, 0xd5, 0x77, 0xe1, 0x2b, - 0x73, 0x83, 0x69, 0xfd, 0xb9, 0x35, 0x45, 0x33, 0x1b, 0xb7, 0x72, 0xcd, 0x9e, 0x71, 0x79, 0x3c, - 0xda, 0xed, 0x41, 0x92, 0x5e, 0x4f, 0x43, 0x86, 0x2d, 0x37, 0xd1, 0x13, 0xfe, 0xe4, 0x47, 0xfe, - 0xec, 0x89, 0x61, 0xcd, 0x67, 0x54, 0xbc, 0xf5, 0x4e, 0x04, 0x75, 0x57, 0x30, 0xa3, 0xd0, 0xc8, - 0xbf, 0x7a, 0x50, 0x9b, 0xa0, 0xd1, 0xc7, 0xf2, 0xa2, 0x9b, 0x5e, 0x18, 0xb6, 0xba, 0x16, 0xb9, - 0x8c, 0xf4, 0xa1, 0x73, 0x19, 0x17, 0x61, 0xd2, 0x13, 0x6e, 0x69, 0x2d, 0xbe, 0x4e, 0x39, 0x31, - 0x6a, 0xd2, 0x2d, 0x2f, 0xf2, 0xf6, 0xe7, 0x9d, 0x70, 0x6c, 0xb9, 0x85, 0x66, 0xfd, 0x8b, 0x6c, - 0x1a, 0xb5, 0xb1, 0x70, 0xc1, 0xb3, 0x6e, 0xa6, 0x57, 0xf2, 0x6f, 0x81, 0x1c, 0xbd, 0xd8, 0x4c, - 0x49, 0x58, 0xf4, 0x90, 0x25, 0x05, 0xf4, 0xe5, 0xdd, 0x50, 0x72, 0x03, 0x1b, 0x46, 0x92, 0x65, - 0x28, 0x6e, 0x31, 0x25, 0x7c, 0x00, 0x66, 0xe8, 0x87, 0xf2, 0x82, 0xd4, 0x39, 0x4a, 0x8d, 0xc8, - 0xbb, 0x2b, 0x7e, 0x8e, 0x3b, 0xa1, 0xe8, 0x9a, 0x50, 0x4a, 0x0b, 0x2c, 0xf5, 0xe1, 0x94, 0x52, - 0xb2, 0xe3, 0x90, 0x75, 0xc2, 0xce, 0x3c, 0xfb, 0x02, 0x9f, 0xc2, 0xa2, 0x4d, 0x27, 0x90, 0x35, - 0xb1, 0xd5, 0xef, 0xd8, 0x1c, 0xa4, 0x40, 0x69, 0x68, 0x20, 0x2b, 0xb3, 0x72, 0x4a, 0x7b, 0x0a, - 0x26, 0x85, 0x55, 0x61, 0x74, 0x93, 0x94, 0xae, 0x20, 0x0a, 0x29, 0xd1, 0x69, 0x28, 0xf7, 0x4c, - 0xa3, 0x67, 0x58, 0xd8, 0x6c, 0x2a, 0xad, 0x96, 0x89, 0x2d, 0xab, 0x52, 0x64, 0x78, 0xa2, 0x7c, - 0x9e, 0x15, 0x4b, 0xef, 0x82, 0x09, 0x11, 0x4f, 0xcf, 0xc0, 0x78, 0xc3, 0xb1, 0x90, 0x69, 0x99, - 0x3d, 0x10, 0xff, 0x3a, 0xdf, 0xeb, 0xf1, 0xec, 0x1a, 0xf9, 0x29, 0x75, 0x60, 0x82, 0x0f, 0x58, - 0x68, 0x4e, 0x65, 0x15, 0x0a, 0x3d, 0xc5, 0x24, 0xdd, 0xf0, 0x66, 0x56, 0x86, 0xad, 0x08, 0xd7, - 0x14, 0xd3, 0x5e, 0xc7, 0xb6, 0x2f, 0xc1, 0x92, 0xa7, 0xfc, 0xac, 0x48, 0x7a, 0x0c, 0x26, 0x7d, - 0x34, 0xee, 0xf7, 0x0a, 0xf9, 0x44, 0xa7, 0x0f, 0x4e, 0x4b, 0x92, 0x6e, 0x4b, 0xa4, 0x73, 0x90, - 0x73, 0xc6, 0x8a, 0x2c, 0x34, 0x84, 0x28, 0xf8, 0x07, 0x10, 0xf9, 0x23, 0x4d, 0x22, 0x19, 0xd7, - 0xf8, 0xa7, 0x9c, 0x52, 0x32, 0x7b, 0x90, 0xb0, 0xc7, 0x30, 0x31, 0x6f, 0x86, 0x1e, 0x87, 0x09, - 0x6e, 0x98, 0xf8, 0x7c, 0x1c, 0x96, 0x2e, 0x5a, 0xa3, 0x96, 0x4a, 0xa4, 0x8b, 0x98, 0xdd, 0x72, - 0xab, 0x49, 0x7a, 0xab, 0xf9, 0x00, 0x64, 0x85, 0xf1, 0xf1, 0x7b, 0x09, 0x56, 0xc3, 0xc9, 0x28, - 0x2f, 0xc1, 0x2b, 0x71, 0x19, 0x89, 0x36, 0x59, 0x5a, 0x5b, 0xc7, 0xad, 0xa6, 0x3b, 0x05, 0xf9, - 0x85, 0xd9, 0x12, 0x7b, 0xb1, 0x22, 0xe6, 0x97, 0xf4, 0x00, 0x64, 0x58, 0x5b, 0x43, 0x4d, 0x5c, - 0x98, 0x6b, 0xfd, 0x4e, 0x02, 0xb2, 0xc2, 0x7d, 0x84, 0x32, 0xf9, 0x3a, 0x91, 0xbc, 0xd1, 0x4e, - 0xdc, 0x7c, 0x93, 0x74, 0x1f, 0x20, 0xaa, 0x29, 0xcd, 0xab, 0x86, 0xad, 0xe9, 0xed, 0x26, 0x1b, - 0x0b, 0x7e, 0x6f, 0x90, 0xbe, 0xb9, 0x42, 0x5f, 0xac, 0x91, 0xf2, 0x7b, 0x4e, 0x41, 0xde, 0x93, - 0xe5, 0x42, 0x13, 0x90, 0xba, 0x84, 0xaf, 0x95, 0xc7, 0x50, 0x1e, 0x26, 0x64, 0x4c, 0x73, 0x04, - 0xe5, 0xc4, 0xd9, 0xd7, 0x27, 0xa0, 0x34, 0xdf, 0x58, 0x58, 0x9e, 0xef, 0xf5, 0x3a, 0x1a, 0xbf, - 0x4f, 0x77, 0x19, 0xd2, 0x74, 0x9d, 0x1c, 0x63, 0x7f, 0xa7, 0x1a, 0x27, 0xe1, 0x84, 0x64, 0x18, - 0xa7, 0xcb, 0x69, 0x14, 0x67, 0xdb, 0xa7, 0x1a, 0x2b, 0x0f, 0x45, 0x1a, 0x49, 0x15, 0x2e, 0xc6, - 0x6e, 0x50, 0x35, 0x4e, 0x72, 0x0a, 0xfd, 0x0c, 0xe4, 0xdc, 0x75, 0x72, 0xdc, 0x3d, 0xa2, 0x6a, - 0xec, 0xb4, 0x15, 0xc1, 0x77, 0x57, 0x06, 0x71, 0xb7, 0x26, 0xaa, 0xb1, 0xf3, 0x35, 0xe8, 0x39, - 0x98, 0x10, 0x6b, 0xb0, 0x78, 0xbb, 0x38, 0xd5, 0x98, 0x29, 0x25, 0x32, 0x7c, 0x6c, 0xe9, 0x1c, - 0x67, 0xab, 0xaa, 0x1a, 0x2b, 0x6f, 0x86, 0x36, 0x21, 0xc3, 0x83, 0xdf, 0x58, 0x3b, 0x3d, 0xd5, - 0x78, 0x89, 0x22, 0x22, 0x64, 0x37, 0x39, 0x11, 0x77, 0x7b, 0xae, 0x1a, 0x3b, 0x61, 0x88, 0x14, - 0x00, 0xcf, 0x7a, 0x3a, 0xf6, 0xbe, 0x5b, 0x35, 0x7e, 0x22, 0x10, 0xbd, 0x1f, 0xb2, 0xce, 0xaa, - 0x29, 0xe6, 0x4e, 0x5a, 0x35, 0x6e, 0x2e, 0xae, 0xb1, 0x19, 0xfb, 0x94, 0xc4, 0xbd, 0x91, 0xa7, - 0x24, 0xdc, 0x4d, 0x6e, 0x67, 0x1b, 0xfc, 0x2f, 0x13, 0x70, 0x3c, 0xb8, 0x9d, 0xac, 0xe8, 0xfb, - 0x43, 0x0e, 0x04, 0x0c, 0x39, 0x2d, 0xf2, 0x38, 0xa4, 0xe6, 0xf5, 0x7d, 0x12, 0x6c, 0xd0, 0x6f, - 0x00, 0xf6, 0xcd, 0x8e, 0x48, 0xd3, 0x91, 0xe7, 0x4d, 0xb3, 0x13, 0x7e, 0x6a, 0xa4, 0x9e, 0xfe, - 0xfe, 0xe7, 0x6a, 0x63, 0x8d, 0xdd, 0x90, 0x5e, 0x45, 0x9c, 0x15, 0xc8, 0xce, 0xeb, 0xfb, 0xe2, - 0x98, 0xc0, 0x38, 0xed, 0xd0, 0x61, 0xb7, 0xff, 0x5f, 0x2b, 0x10, 0x64, 0xcf, 0x77, 0x84, 0x79, - 0x8f, 0x33, 0xec, 0x69, 0xc8, 0x0e, 0x7f, 0xf4, 0x89, 0x81, 0xea, 0x70, 0x69, 0x4a, 0x17, 0x20, - 0xbd, 0x60, 0x68, 0x34, 0xe4, 0x69, 0x61, 0xdd, 0xe8, 0x8a, 0x9c, 0x27, 0x7d, 0x40, 0xa7, 0x20, - 0xa3, 0x74, 0x8d, 0xbe, 0x6e, 0x8b, 0xa8, 0x99, 0xb8, 0x92, 0xff, 0x7a, 0x50, 0x4b, 0x2d, 0xeb, - 0xb6, 0xcc, 0x5f, 0xd5, 0xd3, 0xdf, 0x7d, 0xa5, 0x96, 0x90, 0x9e, 0x82, 0x89, 0x45, 0xac, 0xde, - 0x08, 0xd6, 0x22, 0x56, 0x03, 0x58, 0xa7, 0x21, 0xbb, 0xac, 0xdb, 0xec, 0x9b, 0x61, 0xb7, 0x41, - 0x4a, 0xd3, 0xd9, 0xb6, 0x48, 0xa0, 0x7e, 0x52, 0x4e, 0x48, 0x17, 0xb1, 0xea, 0x90, 0xb6, 0xb0, - 0x1a, 0x24, 0x25, 0xf0, 0xa4, 0x5c, 0x6a, 0x40, 0xe1, 0x8a, 0xd2, 0xe1, 0xe1, 0x1e, 0xb6, 0xd0, - 0x7d, 0x90, 0x53, 0xc4, 0x03, 0x5d, 0x59, 0x15, 0x1a, 0xc5, 0x1f, 0x1c, 0xd4, 0xc0, 0x25, 0x92, - 0x5d, 0x82, 0x7a, 0xfa, 0xe5, 0xff, 0x76, 0x32, 0x21, 0x19, 0x30, 0x71, 0x41, 0xb1, 0xa8, 0xa5, - 0x7f, 0xd0, 0x97, 0x48, 0xa1, 0x91, 0x62, 0xe3, 0xc8, 0xf5, 0x83, 0xda, 0xd4, 0xbe, 0xd2, 0xed, - 0xd4, 0x25, 0xf7, 0x9d, 0xe4, 0xcd, 0xaf, 0xcc, 0x79, 0xf2, 0x2b, 0x34, 0x92, 0x6c, 0x4c, 0x5f, - 0x3f, 0xa8, 0x95, 0x5c, 0x1e, 0xf2, 0x46, 0x72, 0x92, 0x2e, 0x52, 0x0f, 0x32, 0x2c, 0xe8, 0x0d, - 0xdd, 0x21, 0xe4, 0x29, 0x9f, 0xa4, 0x9b, 0xf2, 0xa9, 0x1f, 0x2a, 0xcd, 0xc0, 0xe3, 0x32, 0xc6, - 0x51, 0x4f, 0x7f, 0xe4, 0x95, 0xda, 0x98, 0x64, 0x02, 0x5a, 0xd7, 0xba, 0xfd, 0x0e, 0xbb, 0xf8, - 0x2d, 0xb6, 0x9a, 0x1e, 0x64, 0xed, 0xa6, 0xe9, 0x24, 0x16, 0x90, 0x95, 0xe6, 0xb8, 0x92, 0x72, - 0x81, 0xb0, 0x38, 0xe3, 0x9b, 0x07, 0xb5, 0x04, 0x6d, 0x3d, 0x95, 0xd1, 0x5d, 0x90, 0x61, 0xa1, - 0x3c, 0x8f, 0x7f, 0x8a, 0x82, 0x87, 0xf5, 0x49, 0xe6, 0x6f, 0xa5, 0x27, 0x60, 0x62, 0xd5, 0x6a, - 0x2f, 0x92, 0x2e, 0x1d, 0x87, 0x6c, 0xd7, 0x6a, 0x37, 0x3d, 0xd1, 0xd4, 0x44, 0xd7, 0x6a, 0x6f, - 0x0c, 0x89, 0xc2, 0xf8, 0xb0, 0xbc, 0x1b, 0x32, 0x1b, 0x7b, 0x94, 0xfd, 0x94, 0x23, 0xa5, 0x94, - 0xb7, 0x8d, 0x1c, 0xdd, 0xc7, 0xf4, 0xc1, 0x14, 0xc0, 0xc6, 0x9e, 0xd3, 0xc3, 0x21, 0x5b, 0x70, - 0x48, 0x82, 0x8c, 0xbd, 0xe7, 0x44, 0xd4, 0xb9, 0x06, 0xbc, 0x7a, 0x50, 0xcb, 0x6c, 0xec, 0x91, - 0xe5, 0x85, 0xcc, 0xdf, 0xf8, 0x53, 0x59, 0xa9, 0x40, 0x2a, 0xcb, 0x49, 0xe0, 0xa5, 0x43, 0x12, - 0x78, 0xe3, 0x9e, 0x1d, 0x80, 0x63, 0x30, 0x61, 0x2a, 0xd7, 0x9a, 0x64, 0x44, 0xd9, 0xd7, 0x4a, - 0x33, 0xa6, 0x72, 0x6d, 0xc5, 0x68, 0xa3, 0x05, 0x48, 0x77, 0x8c, 0xb6, 0xc8, 0xbb, 0x1d, 0x15, - 0x9d, 0x22, 0x11, 0x17, 0x3f, 0x4d, 0xbc, 0x62, 0xb4, 0x1b, 0xc7, 0x88, 0xfc, 0xbf, 0xf8, 0x67, - 0xb5, 0x92, 0xbf, 0xdc, 0x92, 0x29, 0xb3, 0x93, 0x0c, 0xcc, 0x0e, 0x4d, 0x06, 0xe6, 0x46, 0x25, - 0x03, 0xc1, 0x9f, 0x0c, 0xbc, 0x83, 0xee, 0x69, 0xb2, 0x3d, 0x9c, 0x99, 0x81, 0xe0, 0x73, 0x5e, - 0xdf, 0xa7, 0xbb, 0xa8, 0xb7, 0x42, 0xce, 0x39, 0x28, 0xc4, 0x3f, 0x0f, 0xed, 0x16, 0x70, 0x7d, - 0xfb, 0x48, 0x02, 0x8a, 0xfe, 0x16, 0xd3, 0x7c, 0x8e, 0xd5, 0xe6, 0x1f, 0x56, 0x65, 0x69, 0x4f, - 0xa2, 0x14, 0xcb, 0x22, 0x53, 0x1e, 0xd0, 0xf9, 0xf9, 0x80, 0xce, 0x4f, 0x0b, 0x01, 0xb1, 0xbb, - 0x3b, 0x4c, 0xd5, 0x67, 0xb8, 0x74, 0x0a, 0x9e, 0x42, 0xcb, 0x55, 0x7d, 0xaa, 0x11, 0x3f, 0x0b, - 0x79, 0xcf, 0xdb, 0xd0, 0xa0, 0xfe, 0x91, 0x90, 0x64, 0xc7, 0x94, 0x33, 0x20, 0xe2, 0x8d, 0xd8, - 0x42, 0x70, 0x49, 0x1d, 0x45, 0xcd, 0x39, 0x44, 0x71, 0x8f, 0x57, 0x34, 0x16, 0xff, 0xf4, 0xdb, - 0x27, 0xc6, 0x5e, 0x7e, 0xf5, 0xc4, 0xd8, 0xd0, 0xf3, 0x99, 0x52, 0xf4, 0x97, 0xe8, 0x1d, 0x2f, - 0xf3, 0xd1, 0xf7, 0xc2, 0xad, 0x9c, 0xc6, 0xb2, 0x95, 0x5d, 0x4d, 0x6f, 0x8b, 0xbf, 0xdc, 0xdd, - 0x14, 0x79, 0x6f, 0x78, 0xe9, 0x8d, 0xbb, 0x9d, 0x37, 0x7b, 0x68, 0xac, 0x1a, 0xe6, 0x0d, 0xa5, - 0x83, 0x34, 0xa0, 0x55, 0xab, 0xbd, 0x60, 0x62, 0xf6, 0xb1, 0x11, 0xbe, 0x4e, 0xf2, 0x5f, 0xf6, - 0xe1, 0x36, 0xea, 0x96, 0x39, 0x7f, 0x5f, 0x9c, 0xef, 0x4b, 0xbb, 0x39, 0x22, 0xdf, 0x15, 0xa1, - 0x25, 0x00, 0x9a, 0x5e, 0xb1, 0x2c, 0x37, 0x99, 0x57, 0x0b, 0x62, 0x2c, 0x38, 0x14, 0xb2, 0x62, - 0x63, 0x4b, 0x8c, 0xb5, 0xcb, 0x88, 0x3e, 0x00, 0xd3, 0x5d, 0x4d, 0x6f, 0x5a, 0xb8, 0xb3, 0xdd, - 0x6c, 0xe1, 0x0e, 0xfd, 0x14, 0x0b, 0xdf, 0xb8, 0xcb, 0x35, 0x56, 0xb8, 0x63, 0xba, 0x2b, 0x7a, - 0xcc, 0xe6, 0x96, 0x75, 0xfb, 0xfa, 0x41, 0xad, 0xca, 0xbc, 0x43, 0x08, 0xa4, 0x24, 0x4f, 0x75, - 0x35, 0x7d, 0x1d, 0x77, 0xb6, 0x17, 0x9d, 0x32, 0xf4, 0x12, 0x4c, 0x71, 0x0a, 0xc3, 0x4d, 0x7a, - 0x10, 0xdb, 0x53, 0x68, 0xac, 0x5e, 0x3f, 0xa8, 0x55, 0x18, 0xda, 0x00, 0x89, 0xf4, 0x83, 0x83, - 0xda, 0xfd, 0x31, 0xda, 0x34, 0xaf, 0xaa, 0xc2, 0x3d, 0x96, 0x1d, 0x10, 0x5e, 0x42, 0xea, 0x76, - 0x13, 0xf4, 0xa2, 0xee, 0xf1, 0x60, 0xdd, 0x03, 0x24, 0x71, 0xeb, 0xf6, 0xb8, 0x66, 0x37, 0x83, - 0x2f, 0xea, 0x3e, 0x0a, 0x99, 0x5e, 0x7f, 0x4b, 0xec, 0xa2, 0xe5, 0x64, 0xfe, 0x84, 0x66, 0xbd, - 0x1b, 0x69, 0xf9, 0xb3, 0x05, 0x31, 0x9e, 0x24, 0x56, 0x71, 0xd2, 0x9c, 0x2c, 0xf6, 0xa3, 0xd1, - 0xc7, 0x57, 0x53, 0x50, 0x5e, 0xb5, 0xda, 0x4b, 0x2d, 0xcd, 0xbe, 0xc9, 0xea, 0xd5, 0x0b, 0x93, - 0x0e, 0xf5, 0x66, 0x8d, 0x85, 0xeb, 0x07, 0xb5, 0x22, 0x93, 0xce, 0xcd, 0x94, 0x49, 0x17, 0x4a, - 0xae, 0x5e, 0x36, 0x4d, 0xc5, 0xe6, 0xee, 0xa9, 0xb1, 0x18, 0x53, 0x03, 0x17, 0xb1, 0x7a, 0xfd, - 0xa0, 0x76, 0x94, 0xb5, 0x2c, 0x00, 0x25, 0xc9, 0x45, 0xd5, 0x37, 0x17, 0xd0, 0x5e, 0xb8, 0xe2, - 0xd3, 0xfd, 0xa7, 0xc6, 0xc5, 0xb7, 0x50, 0xe9, 0xf9, 0xd0, 0x7d, 0x25, 0x09, 0x79, 0xe2, 0xea, - 0x59, 0x39, 0x0e, 0x9f, 0x0a, 0x89, 0x1f, 0xe1, 0x54, 0x48, 0xbe, 0x3d, 0x53, 0xe1, 0x1e, 0x27, - 0xd6, 0x4e, 0x0d, 0xd5, 0x79, 0x7f, 0xc8, 0xfd, 0x1f, 0x53, 0xd4, 0xaa, 0xd2, 0x15, 0xa4, 0x8c, - 0x5b, 0xef, 0x04, 0x01, 0xfe, 0x7c, 0x02, 0x8e, 0xb8, 0xe2, 0xb1, 0x4c, 0x35, 0x20, 0xc5, 0x67, - 0xae, 0x1f, 0xd4, 0x6e, 0x0d, 0x4a, 0xd1, 0x43, 0x76, 0x03, 0x92, 0x9c, 0x76, 0x80, 0xd6, 0x4d, - 0x35, 0xbc, 0x1d, 0x2d, 0xcb, 0x76, 0xda, 0x91, 0x1a, 0xde, 0x0e, 0x0f, 0xd9, 0x9b, 0x6a, 0xc7, - 0xa2, 0x65, 0x0f, 0x0e, 0x6a, 0x3a, 0xe6, 0xa0, 0x7e, 0x2d, 0x09, 0x93, 0xab, 0x56, 0x7b, 0x53, - 0x6f, 0xfd, 0x64, 0x42, 0x1c, 0x76, 0x42, 0x7c, 0x2c, 0x01, 0xc5, 0x8b, 0x9a, 0x65, 0x1b, 0xa6, - 0xa6, 0x2a, 0x1d, 0xba, 0x9a, 0x71, 0xcf, 0x48, 0x26, 0x0e, 0x7f, 0x46, 0xf2, 0x11, 0xc8, 0x5c, - 0x55, 0x3a, 0xec, 0xdf, 0x1a, 0xa5, 0xe8, 0x1e, 0x61, 0xc0, 0x77, 0x04, 0x73, 0xc0, 0x9c, 0x9c, - 0x37, 0xe7, 0x77, 0x92, 0x50, 0x0a, 0x04, 0x1e, 0xa8, 0x01, 0x69, 0x6a, 0xd1, 0xd9, 0x82, 0x77, - 0xee, 0x10, 0x71, 0x05, 0x59, 0x13, 0x53, 0x5e, 0xf4, 0x53, 0x90, 0xed, 0x2a, 0x7b, 0xcc, 0x33, - 0xb0, 0xf5, 0xcd, 0xfc, 0xe1, 0x70, 0xdc, 0xd5, 0xab, 0xc0, 0x91, 0xe4, 0x89, 0xae, 0xb2, 0x47, - 0xfd, 0x41, 0x0f, 0x4a, 0xa4, 0x54, 0xdd, 0x51, 0xf4, 0x36, 0xf6, 0xba, 0x9f, 0x8b, 0x87, 0xae, - 0xe4, 0xa8, 0x5b, 0x89, 0x07, 0x4e, 0x92, 0x27, 0xbb, 0xca, 0xde, 0x02, 0x2d, 0x20, 0x35, 0xd6, - 0xb3, 0x9f, 0x7c, 0xa5, 0x36, 0x46, 0x25, 0xf6, 0xef, 0x13, 0x00, 0xae, 0xc4, 0xd0, 0x06, 0x94, - 0x03, 0xee, 0x4b, 0x9c, 0x31, 0x8a, 0x0c, 0xf0, 0xdc, 0x85, 0x6d, 0x49, 0x0d, 0x0c, 0xc1, 0xfb, - 0x21, 0xcf, 0x4e, 0x09, 0x34, 0x69, 0x32, 0x3e, 0x19, 0x99, 0x8c, 0x3f, 0x41, 0xb0, 0xae, 0x1f, - 0xd4, 0x10, 0xeb, 0x8e, 0x87, 0x59, 0xa2, 0x29, 0x7a, 0x60, 0x25, 0x84, 0xc1, 0xdf, 0x97, 0xbc, - 0x27, 0xb6, 0xa0, 0x67, 0xcf, 0x0c, 0x5d, 0xdb, 0xc5, 0xa6, 0xb3, 0x46, 0x66, 0x8f, 0xa8, 0x0a, - 0x59, 0xf6, 0x55, 0x41, 0x7b, 0x5f, 0xfc, 0x5b, 0x0b, 0xf1, 0x4c, 0xb8, 0xae, 0xe1, 0x2d, 0x4b, - 0x13, 0xa3, 0x20, 0x8b, 0x47, 0x74, 0x1e, 0xca, 0x16, 0x56, 0xfb, 0xa6, 0x66, 0xef, 0x37, 0x55, - 0x43, 0xb7, 0x15, 0xd5, 0xe6, 0x4e, 0xfb, 0x96, 0xeb, 0x07, 0xb5, 0x63, 0xac, 0xad, 0x41, 0x0a, - 0x49, 0x2e, 0x89, 0xa2, 0x05, 0x56, 0x42, 0x6a, 0x68, 0x61, 0x5b, 0xd1, 0x3a, 0x16, 0x5f, 0xd8, - 0x8a, 0x47, 0x4f, 0x5f, 0x7e, 0x7b, 0xc2, 0xbb, 0x19, 0x75, 0x0d, 0xca, 0x46, 0x0f, 0x9b, 0x21, - 0xf6, 0x68, 0xc5, 0xad, 0x39, 0x48, 0x71, 0x03, 0x26, 0xa1, 0x24, 0x30, 0x84, 0x45, 0x38, 0xef, - 0x3b, 0x73, 0xc6, 0xe2, 0xc6, 0x64, 0xb0, 0xcb, 0x41, 0x0a, 0xc9, 0x7b, 0xd0, 0x8c, 0x45, 0x97, - 0x47, 0x21, 0xf3, 0x82, 0xa2, 0x75, 0xc4, 0xa7, 0x56, 0x65, 0xfe, 0x84, 0x96, 0x21, 0x63, 0xd9, - 0x8a, 0xdd, 0x67, 0xa1, 0xf7, 0x78, 0xe3, 0x5d, 0x31, 0xdb, 0xdc, 0x30, 0xf4, 0xd6, 0x3a, 0x65, - 0x94, 0x39, 0x00, 0x3a, 0x0f, 0x19, 0xdb, 0xd8, 0xc5, 0x3a, 0x17, 0xea, 0xa1, 0x66, 0x3a, 0x4d, - 0xd4, 0x31, 0x6e, 0x64, 0x83, 0x6b, 0x94, 0x9b, 0xd6, 0x8e, 0x62, 0x62, 0x8b, 0x85, 0xca, 0x8d, - 0xe5, 0x43, 0x4f, 0xc7, 0x63, 0x41, 0x4f, 0xc1, 0xf0, 0x24, 0xb9, 0xe4, 0x14, 0xad, 0xd3, 0x92, - 0x60, 0xe4, 0x3c, 0x71, 0x43, 0x91, 0xf3, 0x79, 0x28, 0xf7, 0xf5, 0x2d, 0x43, 0xa7, 0x9f, 0x45, - 0xe4, 0x69, 0x9a, 0xec, 0xc9, 0xc4, 0x6c, 0xca, 0x3b, 0x5a, 0x41, 0x0a, 0x49, 0x2e, 0x39, 0x45, - 0xfc, 0xf4, 0x63, 0x0b, 0x8a, 0x2e, 0x15, 0x9d, 0xb2, 0xb9, 0xc8, 0x29, 0x7b, 0x3b, 0x9f, 0xb2, - 0x47, 0x82, 0xb5, 0xb8, 0xb3, 0x76, 0xd2, 0x29, 0x24, 0x6c, 0xe8, 0xbd, 0xbe, 0x65, 0x24, 0xf0, - 0x1a, 0x86, 0x5a, 0x99, 0xf8, 0x2b, 0xc8, 0xfc, 0xdb, 0xb2, 0x82, 0xac, 0x17, 0x3e, 0xf2, 0x4a, - 0x6d, 0xcc, 0x99, 0xb0, 0xbf, 0x90, 0x84, 0xcc, 0xe2, 0x15, 0x7a, 0x8d, 0xf2, 0xc7, 0x34, 0x7c, - 0xf0, 0x58, 0xaf, 0xf7, 0xc0, 0x04, 0x93, 0x85, 0x85, 0xce, 0xc2, 0x78, 0x8f, 0xfc, 0xe0, 0xb9, - 0xc6, 0xa3, 0x03, 0x2a, 0x4d, 0xe9, 0xc4, 0x0a, 0x93, 0x92, 0x4a, 0x9f, 0x4f, 0x01, 0x2c, 0x5e, - 0xb9, 0xb2, 0x61, 0x6a, 0xbd, 0x0e, 0xb6, 0x7f, 0x12, 0x5e, 0xbf, 0x73, 0xc2, 0x6b, 0xcf, 0x18, - 0x3f, 0x0d, 0x79, 0x77, 0x8c, 0x2c, 0xf4, 0x38, 0x64, 0x6d, 0xfe, 0x9b, 0x0f, 0x75, 0x75, 0x70, - 0xa8, 0x05, 0x39, 0x1f, 0x6e, 0x87, 0x43, 0xfa, 0x2f, 0x49, 0x80, 0xa8, 0xe4, 0xcc, 0x8f, 0x41, - 0x00, 0x7e, 0x1e, 0x32, 0xdc, 0xe3, 0xa4, 0x6e, 0x28, 0x5a, 0xe5, 0xdc, 0x9e, 0x51, 0xfa, 0x76, - 0x12, 0xa6, 0x37, 0x85, 0xd9, 0xfd, 0x89, 0x84, 0xd1, 0x45, 0x98, 0xc0, 0xba, 0x6d, 0x6a, 0x58, - 0xa4, 0xc1, 0x67, 0x83, 0x5a, 0x1a, 0x22, 0x2d, 0xfa, 0xef, 0x12, 0xc4, 0x69, 0x39, 0xce, 0xee, - 0x91, 0xf1, 0xc7, 0x53, 0x50, 0x19, 0xc6, 0x85, 0x16, 0xa0, 0xa4, 0x9a, 0x98, 0x16, 0x34, 0xbd, - 0x3b, 0x27, 0x8d, 0xaa, 0x27, 0x63, 0xe4, 0x27, 0x90, 0xe4, 0xa2, 0x28, 0xe1, 0x0e, 0xb9, 0x4d, - 0x13, 0x54, 0x64, 0xaa, 0x10, 0xaa, 0x98, 0x41, 0xb4, 0xc4, 0x3d, 0xb2, 0x9b, 0x96, 0xf2, 0x02, - 0x30, 0x97, 0x5c, 0x74, 0x4b, 0xa9, 0x4f, 0x7e, 0x11, 0x4a, 0x9a, 0xae, 0xd9, 0x9a, 0xd2, 0x69, - 0x6e, 0x29, 0x1d, 0x45, 0x57, 0x6f, 0x64, 0x29, 0xc2, 0xbc, 0x29, 0xaf, 0x36, 0x00, 0x27, 0xc9, - 0x45, 0x5e, 0xd2, 0x60, 0x05, 0x64, 0x44, 0x44, 0x55, 0xe9, 0x1b, 0x0a, 0xdc, 0x04, 0xbb, 0x67, - 0x44, 0x7e, 0x31, 0x05, 0x53, 0x4e, 0x7e, 0xe6, 0x27, 0x43, 0x11, 0x77, 0x28, 0x56, 0x01, 0x98, - 0x01, 0x21, 0x9e, 0xe3, 0x06, 0x46, 0x83, 0x98, 0xa0, 0x1c, 0x43, 0x58, 0xb4, 0x6c, 0xcf, 0x78, - 0xfc, 0x45, 0x0a, 0x0a, 0xde, 0xf1, 0xf8, 0x89, 0x4b, 0x7f, 0x07, 0x65, 0xcc, 0xe6, 0x5d, 0x93, - 0x98, 0xe6, 0xdf, 0x45, 0x09, 0x98, 0xc4, 0x81, 0xa9, 0x34, 0xdc, 0x16, 0xfe, 0x55, 0x12, 0x32, - 0xfc, 0x5c, 0xb6, 0x3a, 0xb0, 0x8a, 0x48, 0x44, 0x9d, 0xfb, 0x1e, 0xbd, 0x88, 0xf8, 0x64, 0xe8, - 0x22, 0xa2, 0xd8, 0x55, 0xf6, 0x9a, 0xbe, 0x5b, 0x4c, 0x89, 0xd9, 0xc9, 0xc6, 0x71, 0x17, 0xc5, - 0xff, 0x9e, 0xe5, 0x42, 0xdc, 0x33, 0xb9, 0xe8, 0x11, 0xc8, 0x13, 0x0a, 0xd7, 0x2b, 0x10, 0xf6, - 0xa3, 0x6e, 0xf2, 0xc1, 0xf3, 0x52, 0x92, 0xa1, 0xab, 0xec, 0x2d, 0xb1, 0x07, 0xb4, 0x02, 0x68, - 0xc7, 0x49, 0x7d, 0x35, 0x5d, 0x11, 0x12, 0xfe, 0xdb, 0xae, 0x1f, 0xd4, 0x8e, 0x33, 0xfe, 0x41, - 0x1a, 0x49, 0x9e, 0x72, 0x0b, 0x05, 0xda, 0x83, 0x00, 0xa4, 0x5f, 0x4d, 0x76, 0x26, 0x84, 0x2d, - 0x61, 0x3d, 0x07, 0x25, 0xdc, 0x77, 0x92, 0x9c, 0x23, 0x0f, 0x8b, 0xe4, 0xb7, 0x47, 0xf0, 0xbf, - 0x94, 0x00, 0xe4, 0xfa, 0x1e, 0x67, 0xbf, 0xfe, 0xbd, 0xf4, 0x5e, 0xa2, 0x58, 0x19, 0x25, 0xc2, - 0x17, 0x59, 0x2e, 0x9f, 0x58, 0x64, 0x79, 0xa6, 0xea, 0x7d, 0xae, 0x7d, 0x4e, 0x0e, 0xcd, 0x0a, - 0x86, 0xd8, 0xe0, 0x3f, 0x4c, 0xc0, 0xf1, 0x01, 0xc5, 0x71, 0xda, 0x75, 0x05, 0x90, 0xe9, 0x79, - 0xc9, 0xff, 0x43, 0x51, 0x82, 0xff, 0xc3, 0xbf, 0x98, 0xfa, 0x37, 0x65, 0x0e, 0xd8, 0xf8, 0x9b, - 0xe7, 0x4d, 0x78, 0x46, 0x31, 0x01, 0x33, 0xde, 0xea, 0x9d, 0x0e, 0x9c, 0x87, 0x82, 0xb7, 0x76, - 0xde, 0xf4, 0x5b, 0x47, 0x35, 0x9d, 0xb7, 0xda, 0xc7, 0x87, 0x96, 0xdd, 0xd9, 0x27, 0xfe, 0xe7, - 0x64, 0x54, 0xef, 0x9d, 0x83, 0x6c, 0x81, 0x59, 0xc8, 0x5a, 0xfc, 0xff, 0x12, 0x90, 0x5e, 0x33, - 0x8c, 0x0e, 0x32, 0x60, 0x4a, 0x37, 0xec, 0x26, 0x51, 0x16, 0xdc, 0x6a, 0xf2, 0xdc, 0x08, 0xcb, - 0x82, 0x2e, 0x1c, 0x4e, 0x28, 0xdf, 0x3b, 0xa8, 0x0d, 0x42, 0xc9, 0x25, 0xdd, 0xb0, 0x1b, 0xb4, - 0x64, 0x83, 0x65, 0x4e, 0x3e, 0x00, 0x93, 0xfe, 0xca, 0x58, 0xa6, 0xe8, 0xd9, 0x43, 0x57, 0xe6, - 0x87, 0xb9, 0x7e, 0x50, 0x9b, 0x71, 0x27, 0x81, 0x53, 0x2c, 0xc9, 0x85, 0x2d, 0x4f, 0xed, 0xf5, - 0x2c, 0xe9, 0xfd, 0xf7, 0x5f, 0xa9, 0x25, 0x1a, 0xe7, 0x87, 0x9e, 0x00, 0xb8, 0x6f, 0x64, 0x13, - 0xf6, 0x9c, 0xad, 0x7e, 0xff, 0x59, 0x80, 0xef, 0x9e, 0x81, 0x6a, 0xe0, 0x2c, 0x00, 0xbd, 0x87, - 0x3c, 0xe4, 0x24, 0xc0, 0xe8, 0x7f, 0xf4, 0x3f, 0xe4, 0xa0, 0xc0, 0xc8, 0xc3, 0x06, 0xd2, 0x2e, - 0x1c, 0xa5, 0x47, 0x39, 0x5d, 0xb3, 0x25, 0xbe, 0x12, 0x73, 0xd4, 0x49, 0xa0, 0x25, 0xf8, 0xff, - 0x15, 0x67, 0xd9, 0xb0, 0xc7, 0x00, 0xdc, 0x9a, 0x9d, 0x0b, 0x37, 0xbc, 0xa5, 0xac, 0xf5, 0xec, - 0x1f, 0xfe, 0x53, 0x18, 0xd9, 0x43, 0x2c, 0xfd, 0x7a, 0x02, 0x8e, 0x0d, 0xd4, 0xc6, 0xb5, 0xfe, - 0x49, 0xdf, 0x85, 0xd1, 0x44, 0xbc, 0x1c, 0xbd, 0xf7, 0xcb, 0x0f, 0xf5, 0x90, 0x76, 0x55, 0xc3, - 0xda, 0xc5, 0x2a, 0xf4, 0x35, 0xec, 0x45, 0x38, 0xe2, 0x6f, 0x97, 0x10, 0xc2, 0x73, 0x50, 0xf4, - 0xaf, 0x16, 0x78, 0x28, 0xf1, 0xae, 0xc3, 0x7b, 0xc8, 0x49, 0xdf, 0x8a, 0x41, 0x7a, 0x36, 0x28, - 0x78, 0x47, 0x12, 0xef, 0x19, 0x3c, 0x7c, 0x1f, 0x29, 0x08, 0xcf, 0xdd, 0xac, 0xaf, 0x24, 0xe0, - 0xa4, 0x1f, 0xd9, 0x35, 0xc2, 0xd6, 0x5b, 0xde, 0xaf, 0x37, 0xa3, 0x1e, 0xff, 0x29, 0x01, 0xb7, - 0x8f, 0x68, 0x39, 0x17, 0x8f, 0x09, 0x33, 0x1e, 0xeb, 0x6e, 0xf2, 0x62, 0xa1, 0x32, 0xd2, 0x70, - 0x0f, 0xe4, 0x18, 0xb7, 0x5b, 0xf8, 0x51, 0xa4, 0xe9, 0xc1, 0x77, 0x96, 0x3c, 0x3d, 0x68, 0x91, - 0xdf, 0x9c, 0x6e, 0x7d, 0x3d, 0x01, 0xa7, 0xfd, 0xbd, 0x0a, 0x59, 0xd1, 0xbd, 0xb3, 0x07, 0xe6, - 0xdf, 0x24, 0xe0, 0x9e, 0x38, 0x5d, 0xe0, 0x23, 0xf4, 0x3c, 0x4c, 0xbb, 0xf1, 0x55, 0x70, 0x80, - 0x4e, 0xc5, 0x58, 0x15, 0x73, 0xa5, 0x46, 0x0e, 0xca, 0xcd, 0x19, 0x89, 0x3f, 0x4e, 0xf0, 0x39, - 0xe7, 0x1d, 0x77, 0x47, 0xec, 0xfe, 0x25, 0xc1, 0x21, 0xc5, 0xee, 0x59, 0x16, 0x4c, 0xfa, 0x96, - 0x05, 0x21, 0x03, 0x9a, 0xbc, 0x49, 0x16, 0xe4, 0x43, 0xc2, 0x9a, 0x86, 0x04, 0x67, 0xbb, 0x30, - 0x1d, 0x32, 0x49, 0x9c, 0x1b, 0xa7, 0xd1, 0x73, 0xe4, 0xe8, 0x0f, 0x0e, 0x6a, 0x21, 0x51, 0x9f, - 0x8c, 0x06, 0xa7, 0x87, 0xf4, 0x9f, 0x13, 0x50, 0xa3, 0x0d, 0x09, 0x19, 0xca, 0xbf, 0xc9, 0x02, - 0xc6, 0xdc, 0x90, 0x86, 0x76, 0x8b, 0x0b, 0x7a, 0x1e, 0x32, 0x4c, 0x4b, 0xb9, 0x6c, 0x0f, 0xa1, - 0xde, 0x9c, 0xd1, 0x35, 0xd8, 0x8b, 0xa2, 0x5f, 0xe1, 0x76, 0xe1, 0x2d, 0x92, 0xdf, 0x9b, 0xb0, - 0x0b, 0xff, 0x4a, 0x18, 0xec, 0xf0, 0x96, 0x73, 0x11, 0xbd, 0xff, 0x4d, 0x1b, 0x6c, 0xfe, 0x25, - 0xa1, 0xb7, 0xcc, 0x32, 0x3b, 0xcd, 0x8f, 0xb0, 0xcc, 0xef, 0xbc, 0x11, 0x70, 0x2c, 0x73, 0x44, - 0x17, 0xde, 0xe1, 0x96, 0xf9, 0x7a, 0x12, 0x8e, 0xd3, 0x6e, 0x78, 0x57, 0x24, 0x6f, 0x83, 0xe4, - 0x9b, 0x80, 0x2c, 0x53, 0x6d, 0xde, 0x2c, 0xfb, 0x51, 0xb6, 0x4c, 0xf5, 0x8a, 0xcf, 0xe9, 0x36, - 0x01, 0xb5, 0x2c, 0x3b, 0x58, 0x41, 0xea, 0x86, 0x2b, 0x68, 0x59, 0xf6, 0x95, 0x11, 0x5e, 0x3d, - 0x7d, 0x18, 0xdd, 0xf9, 0x83, 0x04, 0x54, 0xc3, 0x84, 0xce, 0x75, 0x45, 0x81, 0xa3, 0xbe, 0x75, - 0x74, 0x50, 0x5d, 0xee, 0x18, 0xb5, 0x9a, 0x0c, 0x4c, 0xdd, 0x23, 0x26, 0xbe, 0xd9, 0x93, 0xf7, - 0xcb, 0xc2, 0xe9, 0x38, 0x9a, 0x3f, 0xb8, 0x84, 0x79, 0x47, 0x4e, 0xd9, 0xdf, 0x1c, 0x30, 0xf7, - 0xef, 0xb4, 0xd5, 0xd0, 0x9f, 0x24, 0xe0, 0xc4, 0x90, 0x16, 0xfe, 0x4d, 0x76, 0xe7, 0x3f, 0x3b, - 0x54, 0x61, 0x6e, 0xd6, 0xd2, 0xeb, 0x41, 0x3e, 0xa1, 0xfc, 0xe7, 0xd6, 0x3c, 0x0b, 0xea, 0xd0, - 0x6f, 0xcc, 0x3d, 0x03, 0xb7, 0x84, 0x72, 0xf1, 0x36, 0x9d, 0x85, 0xf4, 0x8e, 0x66, 0xd9, 0xce, - 0x87, 0x17, 0x02, 0xcd, 0x09, 0x70, 0x51, 0x5a, 0x09, 0x41, 0x99, 0x42, 0xae, 0x19, 0x46, 0x87, - 0x57, 0x2f, 0x2d, 0xc0, 0x94, 0xa7, 0x8c, 0x83, 0xcf, 0x41, 0xba, 0x67, 0x18, 0x1d, 0x0e, 0x3e, - 0x13, 0x04, 0x27, 0xb4, 0xbc, 0x9b, 0x94, 0x4e, 0x9a, 0x01, 0xc4, 0x40, 0xd8, 0x27, 0x41, 0x38, - 0xf4, 0x87, 0x13, 0x30, 0xed, 0x2b, 0x76, 0x2e, 0x2d, 0x65, 0x7c, 0x5f, 0x93, 0x1a, 0xd8, 0xa2, - 0x67, 0xf4, 0xce, 0xf5, 0x74, 0x96, 0xdd, 0x7d, 0x13, 0xaa, 0x7b, 0xf6, 0x8f, 0x0a, 0xe2, 0x96, - 0x6b, 0x13, 0xc0, 0x93, 0x8a, 0xbd, 0x2b, 0x58, 0x73, 0x78, 0xd2, 0xa3, 0x7a, 0x77, 0x24, 0x1d, - 0x8f, 0x79, 0xc7, 0xd0, 0x4f, 0x79, 0x8f, 0x51, 0xdd, 0x39, 0x9a, 0x4f, 0xc0, 0xdf, 0x15, 0x45, - 0xe6, 0xa0, 0xff, 0x2d, 0x98, 0x09, 0x5b, 0x05, 0xa3, 0x07, 0x46, 0x23, 0x0c, 0xc6, 0x2d, 0xd5, - 0x77, 0x1d, 0x82, 0xc3, 0xa9, 0xfe, 0x93, 0x09, 0xb8, 0x6d, 0xe4, 0x62, 0x0f, 0x3d, 0x36, 0x1a, - 0x76, 0x44, 0x24, 0x55, 0xad, 0xdf, 0x08, 0xab, 0xd3, 0xb4, 0xa6, 0x6f, 0x3f, 0x3f, 0x5c, 0xa2, - 0x03, 0xeb, 0x8f, 0x21, 0x03, 0x3b, 0x18, 0x6b, 0x4a, 0x63, 0xe8, 0xa5, 0xf0, 0x7d, 0xed, 0x33, - 0xa1, 0x08, 0xc3, 0x97, 0x3c, 0xd5, 0x07, 0xe2, 0x33, 0x78, 0x87, 0x3d, 0x2c, 0x96, 0x1e, 0x32, - 0xec, 0x23, 0x16, 0x0c, 0x43, 0x86, 0x7d, 0x54, 0xa0, 0xce, 0x87, 0x7d, 0x64, 0x24, 0x39, 0x64, - 0xd8, 0xe3, 0x04, 0xd0, 0x43, 0x86, 0x3d, 0x56, 0xe0, 0x2a, 0x8d, 0xa1, 0x1d, 0x98, 0xf4, 0xc5, - 0x29, 0xe8, 0x74, 0x28, 0x5c, 0x58, 0x00, 0x59, 0xbd, 0x27, 0x0e, 0xa9, 0x77, 0xfc, 0x43, 0x5c, - 0xf3, 0x90, 0xf1, 0x1f, 0x1e, 0x7d, 0x54, 0x1f, 0x88, 0xcf, 0xe0, 0xd4, 0x7d, 0xcd, 0xd9, 0x6a, - 0xf1, 0x10, 0xa0, 0xb9, 0x98, 0x48, 0xa2, 0xe6, 0x33, 0xb1, 0xe9, 0x9d, 0x8a, 0x77, 0x07, 0x4e, - 0x5b, 0x87, 0x0b, 0x2d, 0xd4, 0xb5, 0x55, 0xef, 0x8d, 0x45, 0xeb, 0x54, 0xb6, 0xca, 0xf7, 0x11, - 0x4e, 0x86, 0xb2, 0x79, 0x9c, 0x56, 0xf5, 0xf6, 0x11, 0x14, 0x0e, 0xdc, 0xba, 0xb3, 0x31, 0x28, - 0x85, 0x93, 0x7b, 0x9d, 0x55, 0xf5, 0xd4, 0x48, 0x1a, 0x01, 0x7a, 0xd3, 0x53, 0xfd, 0x5f, 0xca, - 0x0e, 0x5c, 0xfb, 0x6b, 0x63, 0x1d, 0x5b, 0x9a, 0x75, 0xa8, 0x6b, 0x7f, 0xa3, 0xb3, 0xf9, 0x1f, - 0xca, 0x40, 0xe1, 0x02, 0x43, 0xa5, 0xdf, 0x3a, 0x46, 0x4f, 0xc4, 0xf4, 0xc0, 0x45, 0xe2, 0x81, - 0x7f, 0x70, 0x50, 0xe3, 0x82, 0x74, 0x7c, 0xb1, 0xc5, 0x3f, 0x7a, 0xc4, 0x3e, 0x58, 0xe2, 0x7e, - 0x35, 0xa6, 0x70, 0xa8, 0x23, 0xab, 0xec, 0xac, 0x00, 0x3f, 0x25, 0x1a, 0xc4, 0x93, 0xd8, 0xf7, - 0x93, 0x36, 0x48, 0x09, 0xfd, 0xe4, 0x09, 0xfa, 0x95, 0x04, 0x1c, 0xa1, 0x54, 0x6e, 0x20, 0x48, - 0x29, 0xc5, 0xc1, 0x9a, 0x81, 0x51, 0x5e, 0x51, 0x3c, 0xcb, 0x22, 0x8a, 0xd1, 0xa8, 0xf3, 0xfd, - 0xde, 0x5b, 0x3d, 0x95, 0x06, 0xe1, 0xa4, 0x1f, 0x1c, 0xd4, 0xd0, 0x20, 0xaf, 0x4c, 0x3f, 0xd0, - 0xe9, 0x2f, 0x0b, 0xff, 0x4c, 0xf5, 0x88, 0xd8, 0x70, 0x8a, 0x0b, 0xd4, 0x8d, 0x11, 0x7c, 0xe1, - 0xf9, 0x1a, 0xe4, 0x3d, 0xc6, 0xa7, 0x32, 0x3e, 0xe4, 0x58, 0x9b, 0xbb, 0xee, 0x46, 0x1c, 0xcf, - 0xe3, 0xfb, 0x64, 0x2f, 0x04, 0xfa, 0xb5, 0x04, 0x1c, 0x71, 0xd7, 0xf6, 0x5e, 0xf0, 0x4c, 0xfc, - 0xd5, 0xfd, 0x39, 0xbf, 0xd4, 0x42, 0xf1, 0x88, 0xd4, 0xc2, 0x1c, 0xa4, 0x3c, 0xd3, 0x0f, 0x73, - 0x18, 0xcf, 0xc1, 0xa4, 0x77, 0xf1, 0xe7, 0x7e, 0xbc, 0x70, 0xd4, 0x76, 0xe6, 0x0c, 0xef, 0xad, - 0xef, 0x68, 0x87, 0xec, 0x07, 0x42, 0x55, 0xc8, 0xe2, 0xbd, 0x9e, 0x61, 0xda, 0xb8, 0x45, 0xcf, - 0x22, 0x67, 0x65, 0xe7, 0x59, 0xba, 0x06, 0x21, 0x03, 0x8b, 0x9e, 0x0e, 0x7c, 0x79, 0xe9, 0x46, - 0x16, 0x15, 0x83, 0x1f, 0x6b, 0xf2, 0x7e, 0x45, 0xe9, 0x66, 0x9b, 0x8d, 0xff, 0x1f, 0x00, 0x00, - 0xff, 0xff, 0x4c, 0x9f, 0xbf, 0xb3, 0xdf, 0x9b, 0x00, 0x00, + 0x79, 0x1f, 0xf6, 0x81, 0xc5, 0xee, 0xb7, 0x8b, 0xc5, 0xa2, 0x81, 0xbb, 0xc3, 0x2d, 0xc9, 0xdb, + 0xe3, 0x1c, 0x1f, 0x38, 0x3e, 0x70, 0xd4, 0x89, 0xcf, 0x3d, 0x8a, 0x14, 0x16, 0xc0, 0xdd, 0x81, + 0x04, 0xee, 0xc0, 0x01, 0x70, 0xa4, 0x28, 0xdb, 0xe3, 0xc1, 0x6c, 0x63, 0x31, 0xc4, 0xee, 0xcc, + 0x72, 0x66, 0xf6, 0x0e, 0x60, 0x29, 0x55, 0x4c, 0xf9, 0x21, 0xc9, 0x91, 0x2d, 0x45, 0xb1, 0x1d, + 0x5a, 0x96, 0x64, 0x4a, 0xa9, 0x44, 0x8e, 0x92, 0xf8, 0x91, 0x28, 0x7a, 0xd8, 0xf9, 0x43, 0x55, + 0x79, 0x58, 0xa9, 0x72, 0xa5, 0xa4, 0xc4, 0x49, 0xb9, 0x52, 0x29, 0xd8, 0x22, 0x55, 0x65, 0x45, + 0x61, 0x12, 0xe5, 0x42, 0xbb, 0x5c, 0xd2, 0x1f, 0x49, 0xf5, 0x6b, 0x5e, 0x3b, 0xbb, 0x33, 0x38, + 0x1e, 0x29, 0xba, 0xa4, 0xbf, 0xb0, 0xd3, 0xf3, 0x7d, 0xbf, 0xee, 0xfe, 0xfa, 0xeb, 0xef, 0xfb, + 0xfa, 0xeb, 0xee, 0x01, 0x7c, 0x31, 0x0d, 0xb7, 0x69, 0xa6, 0xdd, 0x31, 0xed, 0x33, 0x2f, 0xf6, + 0xb0, 0xb5, 0x7f, 0xa6, 0xab, 0xb6, 0x74, 0x43, 0x75, 0x74, 0xd3, 0x98, 0xeb, 0x5a, 0xa6, 0x63, + 0xa2, 0x12, 0x7b, 0x3d, 0x47, 0x5f, 0x4b, 0x06, 0x14, 0xd7, 0xd4, 0x16, 0x96, 0xf1, 0x8b, 0x3d, + 0x6c, 0x3b, 0xa8, 0x02, 0x99, 0x5d, 0xbc, 0x3f, 0x93, 0x3a, 0x99, 0x9a, 0x2d, 0xc9, 0xe4, 0x27, + 0x3a, 0x0a, 0x39, 0x73, 0x7b, 0xdb, 0xc6, 0xce, 0x4c, 0xfa, 0x64, 0x6a, 0x36, 0x2b, 0xf3, 0x27, + 0x34, 0x0d, 0xa3, 0x6d, 0xbd, 0xa3, 0x3b, 0x33, 0x19, 0x5a, 0xcc, 0x1e, 0x50, 0x0d, 0x8a, 0x9a, + 0xd9, 0x33, 0x1c, 0xc5, 0x31, 0x1d, 0xb5, 0x3d, 0x93, 0x3d, 0x99, 0x9a, 0xcd, 0xcb, 0x40, 0x8b, + 0x36, 0x48, 0x89, 0xf4, 0x24, 0x94, 0x58, 0x7d, 0x76, 0xd7, 0x34, 0x6c, 0x8c, 0x8e, 0x43, 0xde, + 0xc0, 0x7b, 0x8e, 0xe2, 0xd5, 0x3a, 0x46, 0x9e, 0x9f, 0xc6, 0xfb, 0xa4, 0x06, 0x86, 0xc2, 0x2a, + 0x66, 0x0f, 0x8d, 0xc6, 0x37, 0x5e, 0x3b, 0x91, 0xfa, 0xe6, 0x6b, 0x27, 0x52, 0x7f, 0xfe, 0xda, + 0x89, 0xd4, 0x27, 0x5e, 0x3f, 0x31, 0xf2, 0xcd, 0xd7, 0x4f, 0x8c, 0xfc, 0xe9, 0xeb, 0x27, 0x46, + 0x9e, 0x9f, 0x6d, 0xe9, 0xce, 0x4e, 0x6f, 0x6b, 0x4e, 0x33, 0x3b, 0x67, 0xb8, 0x08, 0xd8, 0x9f, + 0xfb, 0xed, 0xe6, 0xee, 0x19, 0x67, 0xbf, 0x8b, 0xb9, 0x4c, 0xb6, 0x72, 0x54, 0x12, 0xef, 0x85, + 0xdf, 0x3c, 0x07, 0x27, 0x5b, 0xa6, 0xd9, 0x6a, 0xe3, 0x33, 0xb4, 0x64, 0xab, 0xb7, 0x7d, 0xa6, + 0x89, 0x6d, 0xcd, 0xd2, 0xbb, 0x8e, 0x69, 0x71, 0x79, 0x4d, 0x30, 0x8a, 0x39, 0x41, 0x21, 0xad, + 0xc2, 0xe4, 0x79, 0xbd, 0x8d, 0x17, 0x5d, 0xc2, 0x75, 0xec, 0xa0, 0x47, 0x21, 0xbb, 0xad, 0xb7, + 0xf1, 0x4c, 0xea, 0x64, 0x66, 0xb6, 0x78, 0xf6, 0x8e, 0xb9, 0x10, 0xd3, 0x5c, 0x90, 0x63, 0x8d, + 0x14, 0xcb, 0x94, 0x43, 0xfa, 0x4e, 0x16, 0xa6, 0x22, 0xde, 0x22, 0x04, 0x59, 0x43, 0xed, 0x60, + 0x2a, 0x95, 0x82, 0x4c, 0x7f, 0xa3, 0x19, 0x18, 0xeb, 0xaa, 0xda, 0xae, 0xda, 0xc2, 0x54, 0x28, + 0x05, 0x59, 0x3c, 0xa2, 0x13, 0x00, 0x4d, 0xdc, 0xc5, 0x46, 0x13, 0x1b, 0xda, 0xfe, 0x4c, 0xe6, + 0x64, 0x66, 0xb6, 0x20, 0xfb, 0x4a, 0xd0, 0xbd, 0x30, 0xd9, 0xed, 0x6d, 0xb5, 0x75, 0x4d, 0xf1, + 0x91, 0xc1, 0xc9, 0xcc, 0xec, 0xa8, 0x5c, 0x61, 0x2f, 0x16, 0x3d, 0xe2, 0xbb, 0x61, 0xe2, 0x1a, + 0x56, 0x77, 0xfd, 0xa4, 0x45, 0x4a, 0x5a, 0x26, 0xc5, 0x3e, 0xc2, 0x05, 0x28, 0x75, 0xb0, 0x6d, + 0xab, 0x2d, 0xac, 0x10, 0xf9, 0xce, 0x64, 0x69, 0xef, 0x4f, 0xf6, 0xf5, 0x3e, 0xdc, 0xf3, 0x22, + 0xe7, 0xda, 0xd8, 0xef, 0x62, 0x34, 0x0f, 0x05, 0x6c, 0xf4, 0x3a, 0x0c, 0x61, 0x74, 0x80, 0xfc, + 0x96, 0x8c, 0x5e, 0x27, 0x8c, 0x92, 0x27, 0x6c, 0x1c, 0x62, 0xcc, 0xc6, 0xd6, 0x55, 0x5d, 0xc3, + 0x33, 0x39, 0x0a, 0x70, 0x77, 0x1f, 0xc0, 0x3a, 0x7b, 0x1f, 0xc6, 0x10, 0x7c, 0x68, 0x01, 0x0a, + 0x78, 0xcf, 0xc1, 0x86, 0xad, 0x9b, 0xc6, 0xcc, 0x18, 0x05, 0xb9, 0x33, 0x62, 0x14, 0x71, 0xbb, + 0x19, 0x86, 0xf0, 0xf8, 0xd0, 0xc3, 0x30, 0x66, 0x76, 0xc9, 0x5c, 0xb3, 0x67, 0xf2, 0x27, 0x53, + 0xb3, 0xc5, 0xb3, 0xb7, 0x46, 0x2a, 0xc2, 0x65, 0x46, 0x23, 0x0b, 0x62, 0xb4, 0x0c, 0x15, 0xdb, + 0xec, 0x59, 0x1a, 0x56, 0x34, 0xb3, 0x89, 0x15, 0xdd, 0xd8, 0x36, 0x67, 0x0a, 0x14, 0xa0, 0xd6, + 0xdf, 0x11, 0x4a, 0xb8, 0x60, 0x36, 0xf1, 0xb2, 0xb1, 0x6d, 0xca, 0x65, 0x3b, 0xf0, 0x4c, 0xe6, + 0xab, 0xbd, 0x6f, 0x38, 0xea, 0xde, 0x4c, 0x89, 0x6a, 0x08, 0x7f, 0x92, 0xbe, 0x96, 0x83, 0x89, + 0x24, 0x2a, 0x76, 0x0e, 0x46, 0xb7, 0x49, 0x2f, 0x67, 0xd2, 0x87, 0x91, 0x01, 0xe3, 0x09, 0x0a, + 0x31, 0x77, 0x83, 0x42, 0x9c, 0x87, 0xa2, 0x81, 0x6d, 0x07, 0x37, 0x99, 0x46, 0x64, 0x12, 0xea, + 0x14, 0x30, 0xa6, 0x7e, 0x95, 0xca, 0xde, 0x90, 0x4a, 0x3d, 0x07, 0x13, 0x6e, 0x93, 0x14, 0x4b, + 0x35, 0x5a, 0x42, 0x37, 0xcf, 0xc4, 0xb5, 0x64, 0x6e, 0x49, 0xf0, 0xc9, 0x84, 0x4d, 0x2e, 0xe3, + 0xc0, 0x33, 0x5a, 0x04, 0x30, 0x0d, 0x6c, 0x6e, 0x2b, 0x4d, 0xac, 0xb5, 0x67, 0xf2, 0x03, 0xa4, + 0x74, 0x99, 0x90, 0xf4, 0x49, 0xc9, 0x64, 0xa5, 0x5a, 0x1b, 0x3d, 0xe6, 0xa9, 0xda, 0xd8, 0x00, + 0x4d, 0x59, 0x65, 0x93, 0xac, 0x4f, 0xdb, 0x36, 0xa1, 0x6c, 0x61, 0xa2, 0xf7, 0xb8, 0xc9, 0x7b, + 0x56, 0xa0, 0x8d, 0x98, 0x8b, 0xed, 0x99, 0xcc, 0xd9, 0x58, 0xc7, 0xc6, 0x2d, 0xff, 0x23, 0x3a, + 0x05, 0x6e, 0x81, 0x42, 0xd5, 0x0a, 0xa8, 0x15, 0x2a, 0x89, 0xc2, 0x4b, 0x6a, 0x07, 0x57, 0x5f, + 0x82, 0x72, 0x50, 0x3c, 0xc4, 0xcc, 0xdb, 0x8e, 0x6a, 0x39, 0x54, 0x0b, 0x47, 0x65, 0xf6, 0x40, + 0x1c, 0x11, 0x36, 0x9a, 0xd4, 0xca, 0x8d, 0xca, 0xe4, 0x27, 0x7a, 0xbf, 0xd7, 0xe1, 0x0c, 0xed, + 0xf0, 0x5d, 0xfd, 0x23, 0x1a, 0x40, 0x0e, 0xf7, 0xbb, 0xfa, 0x08, 0x8c, 0x07, 0x3a, 0x90, 0xb4, + 0x6a, 0xe9, 0x43, 0x70, 0x24, 0x12, 0x1a, 0x3d, 0x07, 0xd3, 0x3d, 0x43, 0x37, 0x1c, 0x6c, 0x75, + 0x2d, 0x4c, 0x34, 0x96, 0x55, 0x35, 0xf3, 0x17, 0x63, 0x03, 0x74, 0x6e, 0xd3, 0x4f, 0xcd, 0x50, + 0xe4, 0xa9, 0x5e, 0x7f, 0xe1, 0x3d, 0x85, 0xfc, 0x77, 0xc7, 0x2a, 0x2f, 0xbf, 0xfc, 0xf2, 0xcb, + 0x69, 0xe9, 0x95, 0x1c, 0x4c, 0x47, 0xcd, 0x99, 0xc8, 0xe9, 0x7b, 0x14, 0x72, 0x46, 0xaf, 0xb3, + 0x85, 0x2d, 0x2a, 0xa4, 0x51, 0x99, 0x3f, 0xa1, 0x79, 0x18, 0x6d, 0xab, 0x5b, 0x98, 0xb9, 0xe4, + 0xf2, 0xd9, 0x7b, 0x13, 0xcd, 0xca, 0xb9, 0x15, 0xc2, 0x22, 0x33, 0x4e, 0xf4, 0x04, 0x64, 0xb9, + 0x89, 0x26, 0x08, 0xf7, 0x24, 0x43, 0x20, 0x73, 0x49, 0xa6, 0x7c, 0xe8, 0x16, 0x28, 0x90, 0xbf, + 0x4c, 0x37, 0x72, 0xb4, 0xcd, 0x79, 0x52, 0x40, 0xf4, 0x02, 0x55, 0x21, 0x4f, 0xa7, 0x49, 0x13, + 0x0b, 0xd7, 0xe6, 0x3e, 0x13, 0xc5, 0x6a, 0xe2, 0x6d, 0xb5, 0xd7, 0x76, 0x94, 0xab, 0x6a, 0xbb, + 0x87, 0xa9, 0xc2, 0x17, 0xe4, 0x12, 0x2f, 0xbc, 0x42, 0xca, 0x48, 0xe4, 0xc1, 0x66, 0x95, 0x6e, + 0x34, 0xf1, 0x1e, 0xb5, 0x9e, 0xa3, 0x32, 0x9b, 0x68, 0xcb, 0xa4, 0x84, 0x54, 0xff, 0x82, 0x6d, + 0x1a, 0x42, 0x35, 0x69, 0x15, 0xa4, 0x80, 0x56, 0xff, 0x48, 0xd8, 0x70, 0xdf, 0x16, 0xdd, 0xbd, + 0xb0, 0x4e, 0x49, 0x5f, 0x4e, 0x43, 0x96, 0xda, 0x8b, 0x09, 0x28, 0x6e, 0x7c, 0x60, 0x6d, 0x49, + 0x59, 0xbc, 0xbc, 0xd9, 0x58, 0x59, 0xaa, 0xa4, 0x50, 0x19, 0x80, 0x16, 0x9c, 0x5f, 0xb9, 0x3c, + 0xbf, 0x51, 0x49, 0xbb, 0xcf, 0xcb, 0x97, 0x36, 0x1e, 0x7e, 0xb0, 0x92, 0x71, 0x19, 0x36, 0x59, + 0x41, 0xd6, 0x4f, 0xf0, 0xde, 0xb3, 0x95, 0x51, 0x54, 0x81, 0x12, 0x03, 0x58, 0x7e, 0x6e, 0x69, + 0xf1, 0xe1, 0x07, 0x2b, 0xb9, 0x60, 0xc9, 0x7b, 0xcf, 0x56, 0xc6, 0xd0, 0x38, 0x14, 0x68, 0x49, + 0xe3, 0xf2, 0xe5, 0x95, 0x4a, 0xde, 0xc5, 0x5c, 0xdf, 0x90, 0x97, 0x2f, 0x5d, 0xa8, 0x14, 0x5c, + 0xcc, 0x0b, 0xf2, 0xe5, 0xcd, 0xb5, 0x0a, 0xb8, 0x08, 0xab, 0x4b, 0xeb, 0xeb, 0xf3, 0x17, 0x96, + 0x2a, 0x45, 0x97, 0xa2, 0xf1, 0x81, 0x8d, 0xa5, 0xf5, 0x4a, 0x29, 0xd0, 0xac, 0xf7, 0x9e, 0xad, + 0x8c, 0xbb, 0x55, 0x2c, 0x5d, 0xda, 0x5c, 0xad, 0x94, 0xd1, 0x24, 0x8c, 0xb3, 0x2a, 0x44, 0x23, + 0x26, 0x42, 0x45, 0x0f, 0x3f, 0x58, 0xa9, 0x78, 0x0d, 0x61, 0x28, 0x93, 0x81, 0x82, 0x87, 0x1f, + 0xac, 0x20, 0x69, 0x01, 0x46, 0xa9, 0x76, 0x21, 0x04, 0xe5, 0x95, 0xf9, 0xc6, 0xd2, 0x8a, 0x72, + 0x79, 0x6d, 0x63, 0xf9, 0xf2, 0xa5, 0xf9, 0x95, 0x4a, 0xca, 0x2b, 0x93, 0x97, 0x9e, 0xd9, 0x5c, + 0x96, 0x97, 0x16, 0x2b, 0x69, 0x7f, 0xd9, 0xda, 0xd2, 0xfc, 0xc6, 0xd2, 0x62, 0x25, 0x23, 0x69, + 0x30, 0x1d, 0x65, 0x27, 0x23, 0x67, 0x86, 0x6f, 0x88, 0xd3, 0x03, 0x86, 0x98, 0x62, 0xf5, 0x0d, + 0xf1, 0xeb, 0x69, 0x98, 0x8a, 0xf0, 0x15, 0x91, 0x95, 0x3c, 0x09, 0xa3, 0x4c, 0x45, 0x99, 0xf7, + 0x3c, 0x1d, 0xe9, 0x74, 0xa8, 0xc2, 0xf6, 0x79, 0x50, 0xca, 0xe7, 0x8f, 0x20, 0x32, 0x03, 0x22, + 0x08, 0x02, 0xd1, 0x67, 0xd3, 0x7f, 0xba, 0xcf, 0xa6, 0x33, 0xb7, 0xf7, 0x70, 0x12, 0xb7, 0x47, + 0xcb, 0x0e, 0x67, 0xdb, 0x47, 0x23, 0x6c, 0xfb, 0x39, 0x98, 0xec, 0x03, 0x4a, 0x6c, 0x63, 0x7f, + 0x2e, 0x05, 0x33, 0x83, 0x84, 0x13, 0x63, 0xe9, 0xd2, 0x01, 0x4b, 0x77, 0x2e, 0x2c, 0xc1, 0xdb, + 0x07, 0x0f, 0x42, 0xdf, 0x58, 0x7f, 0x21, 0x05, 0x47, 0xa3, 0x23, 0xc5, 0xc8, 0x36, 0x3c, 0x01, + 0xb9, 0x0e, 0x76, 0x76, 0x4c, 0x11, 0x2d, 0xdd, 0x15, 0xe1, 0x83, 0xc9, 0xeb, 0xf0, 0x60, 0x73, + 0x2e, 0xbf, 0x13, 0xcf, 0x0c, 0x0a, 0xf7, 0x58, 0x6b, 0xfa, 0x5a, 0xfa, 0xd1, 0x34, 0x1c, 0x89, + 0x04, 0x8f, 0x6c, 0xe8, 0x6d, 0x00, 0xba, 0xd1, 0xed, 0x39, 0x2c, 0x22, 0x62, 0x06, 0xb6, 0x40, + 0x4b, 0xa8, 0xf1, 0x22, 0xc6, 0xb3, 0xe7, 0xb8, 0xef, 0x33, 0xf4, 0x3d, 0xb0, 0x22, 0x4a, 0xf0, + 0xa8, 0xd7, 0xd0, 0x2c, 0x6d, 0xe8, 0x89, 0x01, 0x3d, 0xed, 0x53, 0xcc, 0x07, 0xa0, 0xa2, 0xb5, + 0x75, 0x6c, 0x38, 0x8a, 0xed, 0x58, 0x58, 0xed, 0xe8, 0x46, 0x8b, 0x7a, 0x90, 0x7c, 0x7d, 0x74, + 0x5b, 0x6d, 0xdb, 0x58, 0x9e, 0x60, 0xaf, 0xd7, 0xc5, 0x5b, 0xc2, 0x41, 0x15, 0xc8, 0xf2, 0x71, + 0xe4, 0x02, 0x1c, 0xec, 0xb5, 0xcb, 0x21, 0x7d, 0xb2, 0x00, 0x45, 0x5f, 0x5c, 0x8d, 0x6e, 0x87, + 0xd2, 0x0b, 0xea, 0x55, 0x55, 0x11, 0x6b, 0x25, 0x26, 0x89, 0x22, 0x29, 0x5b, 0xe3, 0xeb, 0xa5, + 0x07, 0x60, 0x9a, 0x92, 0x98, 0x3d, 0x07, 0x5b, 0x8a, 0xd6, 0x56, 0x6d, 0x9b, 0x0a, 0x2d, 0x4f, + 0x49, 0x11, 0x79, 0x77, 0x99, 0xbc, 0x5a, 0x10, 0x6f, 0xd0, 0x43, 0x30, 0x45, 0x39, 0x3a, 0xbd, + 0xb6, 0xa3, 0x77, 0xdb, 0x58, 0x21, 0xab, 0x37, 0x9b, 0x7a, 0x12, 0xb7, 0x65, 0x93, 0x84, 0x62, + 0x95, 0x13, 0x90, 0x16, 0xd9, 0x68, 0x11, 0x6e, 0xa3, 0x6c, 0x2d, 0x6c, 0x60, 0x4b, 0x75, 0xb0, + 0x82, 0x5f, 0xec, 0xa9, 0x6d, 0x5b, 0x51, 0x8d, 0xa6, 0xb2, 0xa3, 0xda, 0x3b, 0x33, 0xd3, 0x04, + 0xa0, 0x91, 0x9e, 0x49, 0xc9, 0xc7, 0x09, 0xe1, 0x05, 0x4e, 0xb7, 0x44, 0xc9, 0xe6, 0x8d, 0xe6, + 0x45, 0xd5, 0xde, 0x41, 0x75, 0x38, 0x4a, 0x51, 0x6c, 0xc7, 0xd2, 0x8d, 0x96, 0xa2, 0xed, 0x60, + 0x6d, 0x57, 0xe9, 0x39, 0xdb, 0x8f, 0xce, 0xdc, 0xe2, 0xaf, 0x9f, 0xb6, 0x70, 0x9d, 0xd2, 0x2c, + 0x10, 0x92, 0x4d, 0x67, 0xfb, 0x51, 0xb4, 0x0e, 0x25, 0x32, 0x18, 0x1d, 0xfd, 0x25, 0xac, 0x6c, + 0x9b, 0x16, 0x75, 0x8d, 0xe5, 0x08, 0xd3, 0xe4, 0x93, 0xe0, 0xdc, 0x65, 0xce, 0xb0, 0x6a, 0x36, + 0x71, 0x7d, 0x74, 0x7d, 0x6d, 0x69, 0x69, 0x51, 0x2e, 0x0a, 0x94, 0xf3, 0xa6, 0x45, 0x14, 0xaa, + 0x65, 0xba, 0x02, 0x2e, 0x32, 0x85, 0x6a, 0x99, 0x42, 0xbc, 0x0f, 0xc1, 0x94, 0xa6, 0xb1, 0x3e, + 0xeb, 0x9a, 0xc2, 0xd7, 0x58, 0xf6, 0x4c, 0x25, 0x20, 0x2c, 0x4d, 0xbb, 0xc0, 0x08, 0xb8, 0x8e, + 0xdb, 0xe8, 0x31, 0x38, 0xe2, 0x09, 0xcb, 0xcf, 0x38, 0xd9, 0xd7, 0xcb, 0x30, 0xeb, 0x43, 0x30, + 0xd5, 0xdd, 0xef, 0x67, 0x44, 0x81, 0x1a, 0xbb, 0xfb, 0x61, 0xb6, 0x47, 0x60, 0xba, 0xbb, 0xd3, + 0xed, 0xe7, 0xbb, 0xc7, 0xcf, 0x87, 0xba, 0x3b, 0xdd, 0x30, 0xe3, 0x9d, 0x74, 0xc1, 0x6d, 0x61, + 0x4d, 0x75, 0x70, 0x73, 0xe6, 0x98, 0x9f, 0xdc, 0xf7, 0x02, 0x9d, 0x81, 0x8a, 0xa6, 0x29, 0xd8, + 0x50, 0xb7, 0xda, 0x58, 0x51, 0x2d, 0x6c, 0xa8, 0xf6, 0x4c, 0xcd, 0x4f, 0x5c, 0xd6, 0xb4, 0x25, + 0xfa, 0x76, 0x9e, 0xbe, 0x44, 0xf7, 0xc0, 0xa4, 0xb9, 0xf5, 0x82, 0xc6, 0x54, 0x52, 0xe9, 0x5a, + 0x78, 0x5b, 0xdf, 0x9b, 0xb9, 0x83, 0xca, 0x77, 0x82, 0xbc, 0xa0, 0x0a, 0xb9, 0x46, 0x8b, 0xd1, + 0x69, 0xa8, 0x68, 0xf6, 0x8e, 0x6a, 0x75, 0xa9, 0x4d, 0xb6, 0xbb, 0xaa, 0x86, 0x67, 0xee, 0x64, + 0xa4, 0xac, 0xfc, 0x92, 0x28, 0x26, 0x53, 0xc2, 0xbe, 0xa6, 0x6f, 0x3b, 0x02, 0xf1, 0x6e, 0x36, + 0x25, 0x68, 0x19, 0x47, 0x9b, 0x85, 0x0a, 0x11, 0x45, 0xa0, 0xe2, 0x59, 0x4a, 0x56, 0xee, 0xee, + 0x74, 0xfd, 0xf5, 0x9e, 0x82, 0x71, 0x42, 0xe9, 0x55, 0x7a, 0x9a, 0x05, 0x64, 0xdd, 0x1d, 0x5f, + 0x8d, 0x0f, 0xc2, 0x51, 0x42, 0xd4, 0xc1, 0x8e, 0xda, 0x54, 0x1d, 0xd5, 0x47, 0x7d, 0x1f, 0xa5, + 0x26, 0x72, 0x5f, 0xe5, 0x2f, 0x03, 0xed, 0xb4, 0x7a, 0x5b, 0xfb, 0xae, 0x66, 0xdd, 0xcf, 0xda, + 0x49, 0xca, 0x84, 0x6e, 0xbd, 0x6d, 0x41, 0xb7, 0x54, 0x87, 0x92, 0x5f, 0xf1, 0x51, 0x01, 0x98, + 0xea, 0x57, 0x52, 0x24, 0x0a, 0x5a, 0xb8, 0xbc, 0x48, 0xe2, 0x97, 0xe7, 0x97, 0x2a, 0x69, 0x12, + 0x47, 0xad, 0x2c, 0x6f, 0x2c, 0x29, 0xf2, 0xe6, 0xa5, 0x8d, 0xe5, 0xd5, 0xa5, 0x4a, 0xc6, 0x17, + 0xb0, 0x3f, 0x95, 0xcd, 0xdf, 0x55, 0xb9, 0x5b, 0xfa, 0x56, 0x1a, 0xca, 0xc1, 0x15, 0x18, 0x7a, + 0x1c, 0x8e, 0x89, 0x74, 0x89, 0x8d, 0x1d, 0xe5, 0x9a, 0x6e, 0xd1, 0x19, 0xd9, 0x51, 0x99, 0x77, + 0x74, 0x75, 0x62, 0x9a, 0x53, 0xad, 0x63, 0xe7, 0x59, 0xdd, 0x22, 0xf3, 0xad, 0xa3, 0x3a, 0x68, + 0x05, 0x6a, 0x86, 0xa9, 0xd8, 0x8e, 0x6a, 0x34, 0x55, 0xab, 0xa9, 0x78, 0x89, 0x2a, 0x45, 0xd5, + 0x34, 0x6c, 0xdb, 0x26, 0xf3, 0x84, 0x2e, 0xca, 0xad, 0x86, 0xb9, 0xce, 0x89, 0x3d, 0x17, 0x31, + 0xcf, 0x49, 0x43, 0xfa, 0x9b, 0x19, 0xa4, 0xbf, 0xb7, 0x40, 0xa1, 0xa3, 0x76, 0x15, 0x6c, 0x38, + 0xd6, 0x3e, 0x8d, 0xbb, 0xf3, 0x72, 0xbe, 0xa3, 0x76, 0x97, 0xc8, 0xf3, 0x3b, 0xb2, 0xfc, 0x79, + 0x2a, 0x9b, 0xcf, 0x57, 0x0a, 0x4f, 0x65, 0xf3, 0x85, 0x0a, 0x48, 0xaf, 0x65, 0xa0, 0xe4, 0x8f, + 0xc3, 0xc9, 0xb2, 0x46, 0xa3, 0x2e, 0x2b, 0x45, 0x8d, 0xda, 0xa9, 0xa1, 0x51, 0xfb, 0xdc, 0x02, + 0xf1, 0x65, 0xf5, 0x1c, 0x8b, 0x8e, 0x65, 0xc6, 0x49, 0xe2, 0x08, 0xa2, 0x6c, 0x98, 0x45, 0x23, + 0x79, 0x99, 0x3f, 0xa1, 0x0b, 0x90, 0x7b, 0xc1, 0xa6, 0xd8, 0x39, 0x8a, 0x7d, 0xc7, 0x70, 0xec, + 0xa7, 0xd6, 0x29, 0x78, 0xe1, 0xa9, 0x75, 0xe5, 0xd2, 0x65, 0x79, 0x75, 0x7e, 0x45, 0xe6, 0xec, + 0xe8, 0x38, 0x64, 0xdb, 0xea, 0x4b, 0xfb, 0x41, 0xaf, 0x47, 0x8b, 0x92, 0x0e, 0xc2, 0x71, 0xc8, + 0x5e, 0xc3, 0xea, 0x6e, 0xd0, 0xd7, 0xd0, 0xa2, 0xb7, 0x71, 0x32, 0x9c, 0x81, 0x51, 0x2a, 0x2f, + 0x04, 0xc0, 0x25, 0x56, 0x19, 0x41, 0x79, 0xc8, 0x2e, 0x5c, 0x96, 0xc9, 0x84, 0xa8, 0x40, 0x89, + 0x95, 0x2a, 0x6b, 0xcb, 0x4b, 0x0b, 0x4b, 0x95, 0xb4, 0xf4, 0x10, 0xe4, 0x98, 0x10, 0xc8, 0x64, + 0x71, 0xc5, 0x50, 0x19, 0xe1, 0x8f, 0x1c, 0x23, 0x25, 0xde, 0x6e, 0xae, 0x36, 0x96, 0xe4, 0x4a, + 0x3a, 0x38, 0xd4, 0xd9, 0xca, 0xa8, 0x64, 0x43, 0xc9, 0x1f, 0x88, 0xbf, 0x33, 0x8b, 0xec, 0xaf, + 0xa7, 0xa0, 0xe8, 0x0b, 0xac, 0x49, 0x44, 0xa4, 0xb6, 0xdb, 0xe6, 0x35, 0x45, 0x6d, 0xeb, 0xaa, + 0xcd, 0x55, 0x03, 0x68, 0xd1, 0x3c, 0x29, 0x49, 0x3a, 0x74, 0xef, 0xd0, 0x14, 0x19, 0xad, 0xe4, + 0xa4, 0xcf, 0xa6, 0xa0, 0x12, 0x8e, 0x6c, 0x43, 0xcd, 0x4c, 0xfd, 0x28, 0x9b, 0x29, 0x7d, 0x3a, + 0x05, 0xe5, 0x60, 0x38, 0x1b, 0x6a, 0xde, 0xed, 0x3f, 0xd2, 0xe6, 0xfd, 0x79, 0x1a, 0xc6, 0x03, + 0x41, 0x6c, 0xd2, 0xd6, 0xbd, 0x08, 0x93, 0x7a, 0x13, 0x77, 0xba, 0xa6, 0x83, 0x0d, 0x6d, 0x5f, + 0x69, 0xe3, 0xab, 0xb8, 0x3d, 0x23, 0x51, 0xa3, 0x71, 0x66, 0x78, 0x98, 0x3c, 0xb7, 0xec, 0xf1, + 0xad, 0x10, 0xb6, 0xfa, 0xd4, 0xf2, 0xe2, 0xd2, 0xea, 0xda, 0xe5, 0x8d, 0xa5, 0x4b, 0x0b, 0x1f, + 0x50, 0x36, 0x2f, 0x3d, 0x7d, 0xe9, 0xf2, 0xb3, 0x97, 0xe4, 0x8a, 0x1e, 0x22, 0x7b, 0x1b, 0xa7, + 0xfd, 0x1a, 0x54, 0xc2, 0x8d, 0x42, 0xc7, 0x20, 0xaa, 0x59, 0x95, 0x11, 0x34, 0x05, 0x13, 0x97, + 0x2e, 0x2b, 0xeb, 0xcb, 0x8b, 0x4b, 0xca, 0xd2, 0xf9, 0xf3, 0x4b, 0x0b, 0x1b, 0xeb, 0x2c, 0xf1, + 0xe1, 0x52, 0x6f, 0x04, 0x26, 0xb8, 0xf4, 0xa9, 0x0c, 0x4c, 0x45, 0xb4, 0x04, 0xcd, 0xf3, 0x25, + 0x0b, 0x5b, 0x45, 0xdd, 0x9f, 0xa4, 0xf5, 0x73, 0x24, 0x66, 0x58, 0x53, 0x2d, 0x87, 0xaf, 0x70, + 0x4e, 0x03, 0x91, 0x92, 0xe1, 0xe8, 0xdb, 0x3a, 0xb6, 0x78, 0x9e, 0x88, 0xad, 0x63, 0x26, 0xbc, + 0x72, 0x96, 0x2a, 0xba, 0x0f, 0x50, 0xd7, 0xb4, 0x75, 0x47, 0xbf, 0x8a, 0x15, 0xdd, 0x10, 0x49, + 0xa5, 0x2c, 0xdd, 0x65, 0xaa, 0x88, 0x37, 0xcb, 0x86, 0xe3, 0x52, 0x1b, 0xb8, 0xa5, 0x86, 0xa8, + 0x89, 0x31, 0xcf, 0xc8, 0x15, 0xf1, 0xc6, 0xa5, 0xbe, 0x1d, 0x4a, 0x4d, 0xb3, 0x47, 0x82, 0x3d, + 0x46, 0x47, 0x7c, 0x47, 0x4a, 0x2e, 0xb2, 0x32, 0x97, 0x84, 0x87, 0xf1, 0x5e, 0x36, 0xab, 0x24, + 0x17, 0x59, 0x19, 0x23, 0xb9, 0x1b, 0x26, 0xd4, 0x56, 0xcb, 0x22, 0xe0, 0x02, 0x88, 0x2d, 0x4c, + 0xca, 0x6e, 0x31, 0x25, 0xac, 0x3e, 0x05, 0x79, 0x21, 0x07, 0xe2, 0xaa, 0x89, 0x24, 0x94, 0x2e, + 0x5b, 0x6d, 0xa7, 0x67, 0x0b, 0x72, 0xde, 0x10, 0x2f, 0x6f, 0x87, 0x92, 0x6e, 0x2b, 0x5e, 0x72, + 0x3e, 0x7d, 0x32, 0x3d, 0x9b, 0x97, 0x8b, 0xba, 0xed, 0x26, 0x36, 0xa5, 0x2f, 0xa4, 0xa1, 0x1c, + 0xdc, 0x5c, 0x40, 0x8b, 0x90, 0x6f, 0x9b, 0x1a, 0xdd, 0x3d, 0xe4, 0x3b, 0x5b, 0xb3, 0x31, 0xfb, + 0x11, 0x73, 0x2b, 0x9c, 0x5e, 0x76, 0x39, 0xab, 0xff, 0x21, 0x05, 0x79, 0x51, 0x8c, 0x8e, 0x42, + 0xb6, 0xab, 0x3a, 0x3b, 0x14, 0x6e, 0xb4, 0x91, 0xae, 0xa4, 0x64, 0xfa, 0x4c, 0xca, 0xed, 0xae, + 0x6a, 0x50, 0x15, 0xe0, 0xe5, 0xe4, 0x99, 0x8c, 0x6b, 0x1b, 0xab, 0x4d, 0xba, 0xea, 0x31, 0x3b, + 0x1d, 0x6c, 0x38, 0xb6, 0x18, 0x57, 0x5e, 0xbe, 0xc0, 0x8b, 0xd1, 0xbd, 0x30, 0xe9, 0x58, 0xaa, + 0xde, 0x0e, 0xd0, 0x66, 0x29, 0x6d, 0x45, 0xbc, 0x70, 0x89, 0xeb, 0x70, 0x5c, 0xe0, 0x36, 0xb1, + 0xa3, 0x6a, 0x3b, 0xb8, 0xe9, 0x31, 0xe5, 0x68, 0x76, 0xe3, 0x18, 0x27, 0x58, 0xe4, 0xef, 0x05, + 0xaf, 0xf4, 0xad, 0x14, 0x4c, 0x8a, 0x75, 0x5a, 0xd3, 0x15, 0xd6, 0x2a, 0x80, 0x6a, 0x18, 0xa6, + 0xe3, 0x17, 0x57, 0xbf, 0x2a, 0xf7, 0xf1, 0xcd, 0xcd, 0xbb, 0x4c, 0xb2, 0x0f, 0xa0, 0xda, 0x01, + 0xf0, 0xde, 0x0c, 0x14, 0x5b, 0x0d, 0x8a, 0x7c, 0xe7, 0x88, 0x6e, 0x3f, 0xb2, 0x95, 0x3d, 0xb0, + 0x22, 0xb2, 0xa0, 0x43, 0xd3, 0x30, 0xba, 0x85, 0x5b, 0xba, 0xc1, 0xf3, 0xc1, 0xec, 0x41, 0xe4, + 0x5f, 0xb2, 0x6e, 0xfe, 0xa5, 0xf1, 0xf1, 0x14, 0x4c, 0x69, 0x66, 0x27, 0xdc, 0xde, 0x46, 0x25, + 0x94, 0x5e, 0xb0, 0x2f, 0xa6, 0x9e, 0x7f, 0xc2, 0xb7, 0xd3, 0xda, 0x32, 0xdb, 0xaa, 0xd1, 0xf2, + 0xf6, 0x4f, 0xe9, 0x0f, 0xed, 0xfe, 0x16, 0x36, 0xee, 0x6f, 0x99, 0xbe, 0xdd, 0xd4, 0x73, 0xde, + 0xcf, 0xbf, 0x4e, 0xa5, 0x3e, 0x9f, 0xce, 0x5c, 0x58, 0x6b, 0x7c, 0x31, 0x5d, 0xbd, 0xc0, 0xaa, + 0x5b, 0x13, 0xe2, 0x91, 0xf1, 0x76, 0x1b, 0x6b, 0xa4, 0xcb, 0xf0, 0xbd, 0x7b, 0x61, 0xba, 0x65, + 0xb6, 0x4c, 0x8a, 0x78, 0x86, 0xfc, 0xe2, 0x3b, 0xb2, 0x05, 0xb7, 0xb4, 0x1a, 0xbb, 0x7d, 0x5b, + 0xbf, 0x04, 0x53, 0x9c, 0x58, 0xa1, 0x5b, 0x42, 0x6c, 0x61, 0x83, 0x86, 0xa6, 0xd5, 0x66, 0x7e, + 0xff, 0x3b, 0xd4, 0xa1, 0xcb, 0x93, 0x9c, 0x95, 0xbc, 0x63, 0x6b, 0x9f, 0xba, 0x0c, 0x47, 0x02, + 0x78, 0x6c, 0xda, 0x62, 0x2b, 0x06, 0xf1, 0xdf, 0x72, 0xc4, 0x29, 0x1f, 0xe2, 0x3a, 0x67, 0xad, + 0x2f, 0xc0, 0xf8, 0x61, 0xb0, 0xfe, 0x1d, 0xc7, 0x2a, 0x61, 0x3f, 0xc8, 0x05, 0x98, 0xa0, 0x20, + 0x5a, 0xcf, 0x76, 0xcc, 0x0e, 0xb5, 0x89, 0xc3, 0x61, 0xfe, 0xe8, 0x3b, 0x6c, 0x1e, 0x95, 0x09, + 0xdb, 0x82, 0xcb, 0x55, 0xaf, 0x03, 0xdd, 0x05, 0x6b, 0x62, 0xad, 0x1d, 0x83, 0xf0, 0x0d, 0xde, + 0x10, 0x97, 0xbe, 0x7e, 0x05, 0xa6, 0xc9, 0x6f, 0x6a, 0xb2, 0xfc, 0x2d, 0x89, 0xcf, 0xc1, 0xcd, + 0x7c, 0xeb, 0xe7, 0xd8, 0x54, 0x9d, 0x72, 0x01, 0x7c, 0x6d, 0xf2, 0x8d, 0x62, 0x0b, 0x3b, 0x0e, + 0xb6, 0x6c, 0x45, 0x6d, 0x47, 0x35, 0xcf, 0x97, 0xc4, 0x98, 0xf9, 0x8d, 0x37, 0x82, 0xa3, 0x78, + 0x81, 0x71, 0xce, 0xb7, 0xdb, 0xf5, 0x4d, 0x38, 0x16, 0xa1, 0x15, 0x09, 0x30, 0x3f, 0xc5, 0x31, + 0xa7, 0xfb, 0x34, 0x83, 0xc0, 0xae, 0x81, 0x28, 0x77, 0xc7, 0x32, 0x01, 0xe6, 0x6f, 0x72, 0x4c, + 0xc4, 0x79, 0xc5, 0x90, 0x12, 0xc4, 0xa7, 0x60, 0xf2, 0x2a, 0xb6, 0xb6, 0x4c, 0x9b, 0x27, 0x8e, + 0x12, 0xc0, 0x7d, 0x9a, 0xc3, 0x4d, 0x70, 0x46, 0x9a, 0x49, 0x22, 0x58, 0x8f, 0x41, 0x7e, 0x5b, + 0xd5, 0x70, 0x02, 0x88, 0xcf, 0x70, 0x88, 0x31, 0x42, 0x4f, 0x58, 0xe7, 0xa1, 0xd4, 0x32, 0xb9, + 0xd7, 0x8a, 0x67, 0xff, 0x2c, 0x67, 0x2f, 0x0a, 0x1e, 0x0e, 0xd1, 0x35, 0xbb, 0xbd, 0x36, 0x71, + 0x69, 0xf1, 0x10, 0xbf, 0x25, 0x20, 0x04, 0x0f, 0x87, 0x38, 0x84, 0x58, 0x5f, 0x15, 0x10, 0xb6, + 0x4f, 0x9e, 0x4f, 0x42, 0xd1, 0x34, 0xda, 0xfb, 0xa6, 0x91, 0xa4, 0x11, 0x9f, 0xe3, 0x08, 0xc0, + 0x59, 0x08, 0xc0, 0x39, 0x28, 0x24, 0x1d, 0x88, 0x7f, 0xf8, 0x86, 0x98, 0x1e, 0x62, 0x04, 0x2e, + 0xc0, 0x84, 0x30, 0x50, 0xba, 0x69, 0x24, 0x80, 0xf8, 0x47, 0x1c, 0xa2, 0xec, 0x63, 0xe3, 0xdd, + 0x70, 0xb0, 0xed, 0xb4, 0x70, 0x12, 0x90, 0x2f, 0x88, 0x6e, 0x70, 0x16, 0x2e, 0xca, 0x2d, 0x6c, + 0x68, 0x3b, 0xc9, 0x10, 0x7e, 0x5b, 0x88, 0x52, 0xf0, 0x10, 0x88, 0x05, 0x18, 0xef, 0xa8, 0x96, + 0xbd, 0xa3, 0xb6, 0x13, 0x0d, 0xc7, 0x3f, 0xe6, 0x18, 0x25, 0x97, 0x89, 0x4b, 0xa4, 0x67, 0x1c, + 0x06, 0xe6, 0x8b, 0x42, 0x22, 0x3e, 0x36, 0x3e, 0xf5, 0x6c, 0x87, 0x66, 0xd9, 0x0e, 0x83, 0xf6, + 0x4f, 0xc4, 0xd4, 0x63, 0xbc, 0xab, 0x7e, 0xc4, 0x73, 0x50, 0xb0, 0xf5, 0x97, 0x12, 0xc1, 0xfc, + 0x53, 0x31, 0xd2, 0x94, 0x81, 0x30, 0x7f, 0x00, 0x8e, 0x47, 0xba, 0x89, 0x04, 0x60, 0xff, 0x8c, + 0x83, 0x1d, 0x8d, 0x70, 0x15, 0xdc, 0x24, 0x1c, 0x16, 0xf2, 0x77, 0x84, 0x49, 0xc0, 0x21, 0xac, + 0x35, 0xb2, 0x8e, 0xb0, 0xd5, 0xed, 0xc3, 0x49, 0xed, 0x77, 0x85, 0xd4, 0x18, 0x6f, 0x40, 0x6a, + 0x1b, 0x70, 0x94, 0x23, 0x1e, 0x6e, 0x5c, 0x7f, 0x4f, 0x18, 0x56, 0xc6, 0xbd, 0x19, 0x1c, 0xdd, + 0x0f, 0x42, 0xd5, 0x15, 0xa7, 0x08, 0x58, 0x6d, 0xa5, 0xa3, 0x76, 0x13, 0x20, 0xff, 0x3e, 0x47, + 0x16, 0x16, 0xdf, 0x8d, 0x78, 0xed, 0x55, 0xb5, 0x4b, 0xc0, 0x9f, 0x83, 0x19, 0x01, 0xde, 0x33, + 0x2c, 0xac, 0x99, 0x2d, 0x43, 0x7f, 0x09, 0x37, 0x13, 0x40, 0xff, 0xf3, 0xd0, 0x50, 0x6d, 0xfa, + 0xd8, 0x09, 0xf2, 0x32, 0x54, 0xdc, 0x58, 0x45, 0xd1, 0x3b, 0x5d, 0xd3, 0x72, 0x62, 0x10, 0xff, + 0x85, 0x18, 0x29, 0x97, 0x6f, 0x99, 0xb2, 0xd5, 0x97, 0xa0, 0x4c, 0x1f, 0x93, 0xaa, 0xe4, 0x97, + 0x38, 0xd0, 0xb8, 0xc7, 0xc5, 0x0d, 0x87, 0x66, 0x76, 0xba, 0xaa, 0x95, 0xc4, 0xfe, 0xfd, 0x4b, + 0x61, 0x38, 0x38, 0x0b, 0x37, 0x1c, 0xce, 0x7e, 0x17, 0x13, 0x6f, 0x9f, 0x00, 0xe1, 0xcb, 0xc2, + 0x70, 0x08, 0x1e, 0x0e, 0x21, 0x02, 0x86, 0x04, 0x10, 0x5f, 0x11, 0x10, 0x82, 0x87, 0x40, 0x3c, + 0xe3, 0x39, 0x5a, 0x0b, 0xb7, 0x74, 0xdb, 0xb1, 0x58, 0x98, 0x3c, 0x1c, 0xea, 0xab, 0x6f, 0x04, + 0x83, 0x30, 0xd9, 0xc7, 0x4a, 0x2c, 0x11, 0x4f, 0xbb, 0xd2, 0x55, 0x54, 0x7c, 0xc3, 0xbe, 0x26, + 0x2c, 0x91, 0x8f, 0x8d, 0xb4, 0xcd, 0x17, 0x21, 0x12, 0xb1, 0x6b, 0x64, 0xed, 0x90, 0x00, 0xee, + 0x0f, 0x42, 0x8d, 0x5b, 0x17, 0xbc, 0x04, 0xd3, 0x17, 0xff, 0xf4, 0x8c, 0x5d, 0xbc, 0x9f, 0x48, + 0x3b, 0xff, 0x30, 0x14, 0xff, 0x6c, 0x32, 0x4e, 0x66, 0x43, 0x26, 0x42, 0xf1, 0x14, 0x8a, 0x3b, + 0x3f, 0x34, 0xf3, 0xb7, 0xdf, 0xe4, 0xfd, 0x0d, 0x86, 0x53, 0xf5, 0x15, 0xa2, 0xe4, 0xc1, 0xa0, + 0x27, 0x1e, 0xec, 0xe7, 0xde, 0x74, 0xf5, 0x3c, 0x10, 0xf3, 0xd4, 0xcf, 0xc3, 0x78, 0x20, 0xe0, + 0x89, 0x87, 0xfa, 0x79, 0x0e, 0x55, 0xf2, 0xc7, 0x3b, 0xf5, 0x87, 0x20, 0x4b, 0x82, 0x97, 0x78, + 0xf6, 0x5f, 0xe0, 0xec, 0x94, 0xbc, 0xfe, 0x3e, 0xc8, 0x8b, 0xa0, 0x25, 0x9e, 0xf5, 0x17, 0x39, + 0xab, 0xcb, 0x42, 0xd8, 0x45, 0xc0, 0x12, 0xcf, 0xfe, 0x61, 0xc1, 0x2e, 0x58, 0x08, 0x7b, 0x72, + 0x11, 0x7e, 0xfd, 0xef, 0x64, 0xb9, 0xd3, 0x11, 0xb2, 0x3b, 0x07, 0x63, 0x3c, 0x52, 0x89, 0xe7, + 0xfe, 0x28, 0xaf, 0x5c, 0x70, 0xd4, 0x1f, 0x81, 0xd1, 0x84, 0x02, 0xff, 0x65, 0xce, 0xca, 0xe8, + 0xeb, 0x0b, 0x50, 0xf4, 0x45, 0x27, 0xf1, 0xec, 0xbf, 0xc2, 0xd9, 0xfd, 0x5c, 0xa4, 0xe9, 0x3c, + 0x3a, 0x89, 0x07, 0xf8, 0xb8, 0x68, 0x3a, 0xe7, 0x20, 0x62, 0x13, 0x81, 0x49, 0x3c, 0xf7, 0x27, + 0x84, 0xd4, 0x05, 0x4b, 0xfd, 0x49, 0x28, 0xb8, 0xce, 0x26, 0x9e, 0xff, 0xef, 0x72, 0x7e, 0x8f, + 0x87, 0x48, 0xc0, 0xe7, 0xec, 0xe2, 0x21, 0x3e, 0x29, 0x24, 0xe0, 0xe3, 0x22, 0xd3, 0x28, 0x1c, + 0xc0, 0xc4, 0x23, 0xfd, 0x3d, 0x31, 0x8d, 0x42, 0xf1, 0x0b, 0x19, 0x4d, 0x6a, 0xf3, 0xe3, 0x21, + 0x7e, 0x55, 0x8c, 0x26, 0xa5, 0x27, 0xcd, 0x08, 0x47, 0x04, 0xf1, 0x18, 0x7f, 0x5f, 0x34, 0x23, + 0x14, 0x10, 0xd4, 0xd7, 0x00, 0xf5, 0x47, 0x03, 0xf1, 0x78, 0xaf, 0x70, 0xbc, 0xc9, 0xbe, 0x60, + 0xa0, 0xfe, 0x2c, 0x1c, 0x8d, 0x8e, 0x04, 0xe2, 0x51, 0x7f, 0xe3, 0xcd, 0xd0, 0xda, 0xcd, 0x1f, + 0x08, 0xd4, 0x37, 0x3c, 0x97, 0xe2, 0x8f, 0x02, 0xe2, 0x61, 0x3f, 0xf5, 0x66, 0xd0, 0x70, 0xfb, + 0x83, 0x80, 0xfa, 0x3c, 0x80, 0xe7, 0x80, 0xe3, 0xb1, 0x3e, 0xcd, 0xb1, 0x7c, 0x4c, 0x64, 0x6a, + 0x70, 0xff, 0x1b, 0xcf, 0xff, 0x19, 0x31, 0x35, 0x38, 0x07, 0x99, 0x1a, 0xc2, 0xf5, 0xc6, 0x73, + 0x7f, 0x56, 0x4c, 0x0d, 0xc1, 0x42, 0x34, 0xdb, 0xe7, 0xdd, 0xe2, 0x11, 0x3e, 0x27, 0x34, 0xdb, + 0xc7, 0x55, 0xbf, 0x04, 0x93, 0x7d, 0x0e, 0x31, 0x1e, 0xea, 0xf3, 0x1c, 0xaa, 0x12, 0xf6, 0x87, + 0x7e, 0xe7, 0xc5, 0x9d, 0x61, 0x3c, 0xda, 0x3f, 0x08, 0x39, 0x2f, 0xee, 0x0b, 0xeb, 0xe7, 0x20, + 0x6f, 0xf4, 0xda, 0x6d, 0x32, 0x79, 0xd0, 0xf0, 0x33, 0x7f, 0x33, 0xff, 0xfd, 0x87, 0x5c, 0x3a, + 0x82, 0xa1, 0xfe, 0x10, 0x8c, 0xe2, 0xce, 0x16, 0x6e, 0xc6, 0x71, 0x7e, 0xef, 0x87, 0xc2, 0x60, + 0x12, 0xea, 0xfa, 0x93, 0x00, 0x2c, 0x35, 0x42, 0xb7, 0x07, 0x63, 0x78, 0xff, 0xc7, 0x0f, 0xf9, + 0x69, 0x1c, 0x8f, 0xc5, 0x03, 0x60, 0x67, 0x7b, 0x86, 0x03, 0xbc, 0x11, 0x04, 0xa0, 0x23, 0xf2, + 0x18, 0x8c, 0xbd, 0x60, 0x9b, 0x86, 0xa3, 0xb6, 0xe2, 0xb8, 0xff, 0x27, 0xe7, 0x16, 0xf4, 0x44, + 0x60, 0x1d, 0xd3, 0xc2, 0x8e, 0xda, 0xb2, 0xe3, 0x78, 0xff, 0x17, 0xe7, 0x75, 0x19, 0x08, 0xb3, + 0xa6, 0xda, 0x4e, 0x92, 0x7e, 0xff, 0x6f, 0xc1, 0x2c, 0x18, 0x48, 0xa3, 0xc9, 0xef, 0x5d, 0xbc, + 0x1f, 0xc7, 0xfb, 0x7d, 0xd1, 0x68, 0x4e, 0x5f, 0x7f, 0x1f, 0x14, 0xc8, 0x4f, 0x76, 0xc4, 0x2e, + 0x86, 0xf9, 0xff, 0x70, 0x66, 0x8f, 0x83, 0xd4, 0x6c, 0x3b, 0x4d, 0x47, 0x8f, 0x17, 0xf6, 0x75, + 0x3e, 0xd2, 0x82, 0xbe, 0x3e, 0x0f, 0x45, 0xdb, 0x69, 0x36, 0x7b, 0x3c, 0x3e, 0x8d, 0x61, 0xff, + 0xbf, 0x3f, 0x74, 0x53, 0x16, 0x2e, 0x0f, 0x19, 0xed, 0x6b, 0xbb, 0x4e, 0xd7, 0xa4, 0x5b, 0x20, + 0x71, 0x08, 0x6f, 0x72, 0x04, 0x1f, 0x4b, 0x7d, 0x01, 0x4a, 0xa4, 0x2f, 0x16, 0xee, 0x62, 0xba, + 0x5f, 0x15, 0x03, 0xf1, 0x97, 0x5c, 0x00, 0x01, 0xa6, 0xc6, 0x4f, 0x0f, 0xba, 0x77, 0x13, 0x9d, + 0x36, 0x86, 0x0b, 0xe6, 0x05, 0x93, 0x25, 0x8c, 0x9f, 0x97, 0x02, 0xe9, 0xe2, 0x96, 0xe9, 0x65, + 0x6b, 0xdd, 0x45, 0x0e, 0xfc, 0x41, 0x1a, 0xee, 0xa4, 0xc7, 0x7d, 0xad, 0x8e, 0x6e, 0x38, 0x67, + 0x34, 0x6b, 0xbf, 0xeb, 0x98, 0x67, 0x3a, 0xd8, 0xda, 0x6d, 0x63, 0xfe, 0x87, 0x67, 0x7f, 0x67, + 0x3c, 0xb2, 0x39, 0x46, 0x36, 0xc7, 0xde, 0x57, 0x23, 0xb3, 0xc5, 0xd2, 0x02, 0x8c, 0xad, 0x59, + 0xa6, 0xb9, 0x7d, 0xb9, 0x8b, 0x10, 0x3f, 0xc1, 0xcc, 0x4f, 0xc6, 0x51, 0x35, 0xe4, 0x37, 0x9e, + 0xd2, 0xde, 0x8d, 0x27, 0x04, 0xd9, 0xa6, 0xea, 0xa8, 0x34, 0x61, 0x5e, 0x92, 0xe9, 0x6f, 0xa9, + 0x01, 0xa3, 0x14, 0x04, 0x3d, 0x06, 0x19, 0xb3, 0x6b, 0xf3, 0xec, 0xfe, 0xed, 0x73, 0x83, 0xda, + 0x32, 0xc7, 0xab, 0x6c, 0x64, 0xbf, 0x71, 0x50, 0x1b, 0x91, 0x09, 0x4f, 0x63, 0xed, 0xaf, 0xbf, + 0x7d, 0x22, 0xf5, 0xdb, 0xaf, 0x9d, 0x48, 0x0d, 0xbc, 0xc1, 0x34, 0xe7, 0x13, 0x94, 0x4f, 0x18, + 0x83, 0xe4, 0xe2, 0xde, 0x63, 0xfa, 0xa5, 0x34, 0x9c, 0xf0, 0x11, 0xb5, 0xf5, 0x2d, 0xfb, 0xcc, + 0xee, 0x55, 0x76, 0xe5, 0x89, 0x4b, 0x0d, 0xf9, 0x5a, 0x4a, 0xde, 0xcf, 0xed, 0x5e, 0x1d, 0x20, + 0xaf, 0x39, 0xc8, 0xae, 0xa9, 0xba, 0x15, 0x71, 0x15, 0x6c, 0xda, 0x3b, 0xdc, 0x4a, 0xca, 0xd8, + 0x83, 0x74, 0x16, 0xf2, 0x4f, 0x2f, 0x3f, 0xfc, 0x60, 0x12, 0x9e, 0x0c, 0xe7, 0x69, 0xc8, 0x42, + 0x14, 0x5f, 0x8d, 0x10, 0xc7, 0xd7, 0x5f, 0x3f, 0x91, 0x8a, 0xbc, 0xd4, 0x15, 0x2d, 0x12, 0xde, + 0x5b, 0x57, 0x18, 0x9f, 0x48, 0x43, 0x2d, 0xbc, 0x2b, 0x40, 0xa6, 0xa2, 0xed, 0xa8, 0x9d, 0xee, + 0xa0, 0x3b, 0x5d, 0xe7, 0xa0, 0xb0, 0x21, 0x68, 0xd0, 0x0c, 0x8c, 0xd9, 0x58, 0x33, 0x8d, 0xa6, + 0x4d, 0x7b, 0x92, 0x91, 0xc5, 0x23, 0xe9, 0x8d, 0xa1, 0x1a, 0xa6, 0xcd, 0x8f, 0x9c, 0xb2, 0x87, + 0xc6, 0xaf, 0xa7, 0x0e, 0x37, 0x37, 0xca, 0x6e, 0x55, 0x74, 0x82, 0xac, 0xa5, 0x9e, 0xbf, 0x77, + 0xd8, 0x86, 0x0a, 0xbb, 0xb9, 0xe6, 0x76, 0xc1, 0xb7, 0x7b, 0x72, 0x22, 0xbc, 0x7b, 0xf2, 0x2c, + 0x6e, 0xb7, 0x9f, 0x36, 0xcc, 0x6b, 0xc6, 0x06, 0xe1, 0x71, 0x45, 0xf2, 0xb1, 0x34, 0x9c, 0xe8, + 0xdb, 0x28, 0xe1, 0xe6, 0x65, 0x90, 0x44, 0xea, 0x90, 0x5f, 0x14, 0x56, 0xeb, 0xb0, 0x02, 0xf9, + 0xd5, 0x43, 0x0a, 0x64, 0x5c, 0xd4, 0x24, 0xe4, 0x71, 0x4f, 0xbc, 0x3c, 0x44, 0xfb, 0x6f, 0x40, + 0x1c, 0x3f, 0xff, 0x04, 0xdc, 0xee, 0x53, 0x20, 0x75, 0x4b, 0xd3, 0xf9, 0xf5, 0x40, 0xff, 0x8c, + 0x39, 0xe2, 0x9b, 0x31, 0x84, 0x64, 0x8e, 0xbe, 0x8c, 0x9e, 0x34, 0xd5, 0x64, 0xb6, 0xab, 0x1a, + 0x33, 0x4b, 0xab, 0x71, 0x8a, 0x5b, 0x8d, 0x19, 0x46, 0xe9, 0xaf, 0x46, 0x61, 0x4c, 0xdc, 0xe5, + 0x7c, 0x14, 0xb2, 0x58, 0xdb, 0x31, 0xf9, 0x69, 0x77, 0x69, 0x2e, 0xb2, 0x3f, 0x73, 0x9c, 0x7a, + 0x49, 0xdb, 0x31, 0x2f, 0x8e, 0xc8, 0x94, 0x83, 0xde, 0x01, 0x6b, 0xf7, 0xec, 0x1d, 0x7e, 0x28, + 0xf9, 0xd4, 0x70, 0xd6, 0xf3, 0x84, 0xf4, 0xe2, 0x88, 0xcc, 0x78, 0x48, 0xb5, 0xf4, 0xfe, 0x5a, + 0x36, 0x49, 0xb5, 0xcb, 0xc6, 0x36, 0xad, 0x96, 0x70, 0xa0, 0x8b, 0x00, 0x36, 0x76, 0xc4, 0x51, + 0x86, 0x51, 0xca, 0x7f, 0xf7, 0x70, 0xfe, 0x75, 0xec, 0x30, 0xb7, 0x75, 0x71, 0x44, 0x2e, 0xd8, + 0xe2, 0x81, 0x20, 0xe9, 0x86, 0xee, 0x28, 0xda, 0x8e, 0xaa, 0x1b, 0x74, 0x0f, 0x3e, 0x16, 0x69, + 0xd9, 0xd0, 0x9d, 0x05, 0x42, 0x4e, 0x90, 0x74, 0xf1, 0x40, 0x44, 0x41, 0xef, 0x8c, 0xf2, 0x4b, + 0x56, 0x31, 0xa2, 0x78, 0x86, 0x90, 0x12, 0x51, 0x50, 0x1e, 0xf4, 0x34, 0x14, 0xe9, 0x76, 0xab, + 0xb2, 0xd5, 0x36, 0xb5, 0x5d, 0x7e, 0xb3, 0x64, 0x76, 0x38, 0x44, 0x83, 0x30, 0x34, 0x08, 0xfd, + 0xc5, 0x11, 0x19, 0xb6, 0xdc, 0x27, 0xd4, 0x80, 0x3c, 0x3b, 0xf6, 0xeb, 0xec, 0xf1, 0xbb, 0x81, + 0x77, 0x0e, 0x47, 0xa2, 0x27, 0x80, 0x37, 0xf6, 0x2e, 0x8e, 0xc8, 0x63, 0x1a, 0xfb, 0x89, 0x96, + 0xa0, 0x80, 0x8d, 0x26, 0x6f, 0x4e, 0x91, 0xdf, 0xa2, 0x1a, 0xae, 0x17, 0x46, 0x53, 0x34, 0x26, + 0x8f, 0xf9, 0x6f, 0xf4, 0x04, 0xe4, 0x34, 0xb3, 0xd3, 0xd1, 0x1d, 0x7a, 0xc7, 0xb0, 0x78, 0xf6, + 0x8e, 0x98, 0x86, 0x50, 0xda, 0x8b, 0x23, 0x32, 0xe7, 0x22, 0xc3, 0xd3, 0xc4, 0x6d, 0xfd, 0x2a, + 0xb6, 0x48, 0x67, 0xa6, 0x92, 0x0c, 0xcf, 0x22, 0xa3, 0xa7, 0xdd, 0x29, 0x34, 0xc5, 0x43, 0x63, + 0x8c, 0xbb, 0x17, 0xe9, 0x6e, 0x28, 0xfa, 0x34, 0x99, 0x58, 0x2c, 0xbe, 0x02, 0xe1, 0xce, 0x5e, + 0x3c, 0x4a, 0x65, 0x28, 0xf9, 0xf5, 0x56, 0xea, 0xb8, 0x8c, 0x74, 0x13, 0x7f, 0x06, 0xc6, 0xae, + 0x62, 0xcb, 0x66, 0x3b, 0xf8, 0x94, 0x91, 0x3f, 0xa2, 0x53, 0x30, 0x4e, 0xe5, 0xa6, 0x88, 0xf7, + 0xec, 0x5a, 0x72, 0x89, 0x16, 0x5e, 0xe1, 0x44, 0x35, 0x28, 0x76, 0xcf, 0x76, 0x5d, 0x12, 0x76, + 0x37, 0x1a, 0xba, 0x67, 0xbb, 0x9c, 0x40, 0xaa, 0x43, 0x25, 0xac, 0xba, 0x7e, 0xaf, 0x59, 0x88, + 0xf0, 0x9a, 0x05, 0xe1, 0x69, 0x7f, 0x2f, 0xed, 0x32, 0xbb, 0xda, 0x4a, 0xa6, 0x1b, 0x31, 0x12, + 0x94, 0xbb, 0x78, 0xb6, 0xda, 0x17, 0xda, 0xb9, 0xbe, 0xa6, 0x91, 0x27, 0xa1, 0xc8, 0x27, 0xfe, + 0xac, 0x96, 0x92, 0x29, 0x07, 0x3a, 0x4e, 0x14, 0x4a, 0xd5, 0x0d, 0x45, 0x6f, 0x8a, 0xdb, 0xc4, + 0xf4, 0x79, 0xb9, 0x89, 0x9e, 0x81, 0x8a, 0x66, 0x1a, 0x36, 0x36, 0xec, 0x9e, 0xad, 0x74, 0x55, + 0x4b, 0xed, 0x78, 0x97, 0xee, 0xa2, 0x87, 0x69, 0x41, 0x90, 0xaf, 0x51, 0x6a, 0x79, 0x42, 0x0b, + 0x16, 0xa0, 0x15, 0x80, 0xab, 0x6a, 0x5b, 0x6f, 0xaa, 0x8e, 0x69, 0xd9, 0xfc, 0x72, 0xca, 0x20, + 0xb0, 0x2b, 0x82, 0x70, 0xb3, 0xdb, 0x54, 0x1d, 0xcc, 0x83, 0x28, 0x1f, 0x3f, 0xba, 0x0b, 0x26, + 0xd4, 0x6e, 0x57, 0xb1, 0x1d, 0xd5, 0xc1, 0xca, 0xd6, 0xbe, 0x83, 0x6d, 0x6a, 0x2f, 0x4a, 0xf2, + 0xb8, 0xda, 0xed, 0xae, 0x93, 0xd2, 0x06, 0x29, 0x94, 0x9a, 0xee, 0x68, 0xd3, 0xa9, 0xe9, 0xc6, + 0x76, 0x29, 0x2f, 0xb6, 0x23, 0x65, 0xf4, 0x68, 0x05, 0x93, 0x81, 0x38, 0x8d, 0x92, 0xdb, 0xc1, + 0x7a, 0x6b, 0x87, 0x5d, 0x6f, 0xcf, 0xc8, 0xfc, 0x89, 0x0c, 0x4c, 0xd7, 0x32, 0xaf, 0x62, 0x7e, + 0xb3, 0x9d, 0x3d, 0x48, 0xbf, 0x96, 0x86, 0xc9, 0xbe, 0xe9, 0x4b, 0x70, 0xe9, 0x01, 0x7f, 0x5e, + 0x17, 0xf9, 0x8d, 0xce, 0x11, 0x5c, 0xb5, 0xc9, 0x2f, 0xad, 0x14, 0xcf, 0xde, 0x36, 0x40, 0x02, + 0x17, 0x29, 0x11, 0xef, 0x38, 0x67, 0x41, 0x9b, 0x50, 0x69, 0xab, 0xb6, 0xa3, 0xb0, 0x59, 0xc4, + 0x6e, 0x09, 0x67, 0x86, 0x5a, 0x82, 0x15, 0x55, 0xcc, 0x3e, 0xa2, 0xdc, 0x1c, 0xae, 0xdc, 0x0e, + 0x94, 0xa2, 0xe7, 0x60, 0x7a, 0x6b, 0xff, 0x25, 0xd5, 0x70, 0x74, 0x83, 0x1e, 0x36, 0x0a, 0x8e, + 0x51, 0x6d, 0x00, 0xf4, 0xd2, 0x55, 0xbd, 0x89, 0x0d, 0x4d, 0x0c, 0xce, 0x94, 0x0b, 0xe1, 0x0e, + 0x9e, 0x2d, 0x3d, 0x07, 0xe5, 0xa0, 0x2d, 0x42, 0x65, 0x48, 0x3b, 0x7b, 0x5c, 0x22, 0x69, 0x67, + 0x0f, 0x3d, 0xcc, 0x23, 0xf2, 0x34, 0x3d, 0x2d, 0x37, 0xc8, 0x59, 0x70, 0x6e, 0xef, 0x2e, 0xa1, + 0x24, 0xb9, 0x33, 0xc1, 0x35, 0x0c, 0x61, 0x6c, 0xe9, 0x34, 0x4c, 0x84, 0x8c, 0x98, 0x6f, 0x58, + 0x53, 0xfe, 0x61, 0x95, 0x26, 0x60, 0x3c, 0x60, 0xab, 0xa4, 0x3f, 0xce, 0x41, 0xde, 0xfd, 0x46, + 0xc1, 0x45, 0x28, 0xe0, 0x3d, 0x0d, 0x77, 0x1d, 0x61, 0x15, 0x86, 0x19, 0x71, 0xc6, 0xb3, 0x24, + 0xe8, 0x89, 0xb9, 0x72, 0x99, 0xd1, 0x63, 0x01, 0x97, 0x7c, 0x2a, 0x0e, 0xc4, 0xef, 0x93, 0x1f, + 0x0f, 0xfa, 0xe4, 0x3b, 0x62, 0x78, 0x43, 0x4e, 0xf9, 0xb1, 0x80, 0x53, 0x8e, 0xab, 0x38, 0xe0, + 0x95, 0x97, 0x23, 0xbc, 0x72, 0x5c, 0xf7, 0x07, 0xb8, 0xe5, 0xe5, 0x08, 0xb7, 0x3c, 0x1b, 0xdb, + 0x96, 0x48, 0xbf, 0xfc, 0x78, 0xd0, 0x2f, 0xc7, 0x89, 0x23, 0xe4, 0x98, 0x57, 0xa2, 0x1c, 0xf3, + 0xe9, 0x18, 0x8c, 0x81, 0x9e, 0x79, 0xa1, 0xcf, 0x33, 0xdf, 0x15, 0x03, 0x15, 0xe1, 0x9a, 0x97, + 0x03, 0x3e, 0x11, 0x12, 0xc9, 0x26, 0xda, 0x29, 0xa2, 0xf3, 0xfd, 0x5e, 0xfe, 0xee, 0x38, 0x55, + 0x8b, 0x72, 0xf3, 0x4f, 0x86, 0xdc, 0xfc, 0x9d, 0x71, 0xbd, 0x0a, 0xf9, 0x79, 0xcf, 0x3b, 0x9f, + 0x26, 0xf6, 0x31, 0x34, 0x33, 0x88, 0x2d, 0xc5, 0x96, 0x65, 0x5a, 0xdc, 0xf1, 0xb1, 0x07, 0x69, + 0x96, 0x58, 0x6c, 0x4f, 0xff, 0x87, 0x78, 0x72, 0x3a, 0x69, 0x7d, 0xda, 0x2e, 0x7d, 0x35, 0xe5, + 0xf1, 0x52, 0xcb, 0xe6, 0xb7, 0xf6, 0x05, 0x6e, 0xed, 0x7d, 0x0e, 0x3e, 0x1d, 0x74, 0xf0, 0x35, + 0x28, 0x12, 0x9f, 0x12, 0xf2, 0xdd, 0x6a, 0x57, 0xf8, 0x6e, 0x74, 0x0f, 0x4c, 0x52, 0xfb, 0xcb, + 0xc2, 0x00, 0x6e, 0x48, 0xb2, 0xd4, 0x90, 0x4c, 0x90, 0x17, 0x4c, 0x82, 0xcc, 0x51, 0xdc, 0x0f, + 0x53, 0x3e, 0x5a, 0x82, 0x4b, 0x7d, 0x01, 0x73, 0x52, 0x15, 0x97, 0x7a, 0xbe, 0xdb, 0xbd, 0xa8, + 0xda, 0x3b, 0xd2, 0xaa, 0x27, 0x20, 0x2f, 0x2e, 0x40, 0x90, 0xd5, 0xcc, 0x26, 0xeb, 0xf7, 0xb8, + 0x4c, 0x7f, 0x93, 0x58, 0xa1, 0x6d, 0xb6, 0xf8, 0x09, 0x48, 0xf2, 0x93, 0x50, 0xb9, 0x53, 0xbb, + 0xc0, 0xe6, 0xac, 0xf4, 0xa5, 0x94, 0x87, 0xe7, 0x85, 0x0a, 0x51, 0x5e, 0x3d, 0x75, 0x33, 0xbd, + 0x7a, 0xfa, 0xad, 0x79, 0x75, 0xe9, 0xcd, 0x94, 0x37, 0xa4, 0xae, 0xbf, 0xbe, 0x31, 0x11, 0x10, + 0xed, 0x62, 0x37, 0xc1, 0xd9, 0x49, 0x5d, 0xf6, 0x20, 0x42, 0xad, 0x5c, 0x44, 0x82, 0x62, 0xcc, + 0x97, 0xd4, 0x40, 0x0f, 0x51, 0x3f, 0x6f, 0x6e, 0x73, 0xd3, 0x50, 0x8b, 0x49, 0xf4, 0xc8, 0x8c, + 0xda, 0xe7, 0x5f, 0x0a, 0x81, 0xb0, 0xe1, 0x56, 0x28, 0x90, 0xa6, 0xb3, 0xeb, 0x4f, 0xc0, 0xd3, + 0x8b, 0xa2, 0x40, 0x6a, 0x02, 0xea, 0xb7, 0x31, 0xe8, 0x12, 0xe4, 0xf0, 0x55, 0x7a, 0x1a, 0x95, + 0x25, 0x9b, 0x6e, 0x1d, 0xe8, 0x88, 0xb1, 0xe1, 0x34, 0x66, 0x88, 0x30, 0xbf, 0x77, 0x50, 0xab, + 0x30, 0x9e, 0xfb, 0xcc, 0x8e, 0xee, 0xe0, 0x4e, 0xd7, 0xd9, 0x97, 0x39, 0x8a, 0xf4, 0xe1, 0x34, + 0xf1, 0x87, 0x01, 0xfb, 0x13, 0x29, 0x5e, 0x31, 0x69, 0xd2, 0xbe, 0x10, 0x29, 0x99, 0xc8, 0x6f, + 0x03, 0x68, 0xa9, 0xb6, 0x72, 0x4d, 0x35, 0x1c, 0xdc, 0xe4, 0x72, 0x2f, 0xb4, 0x54, 0xfb, 0x59, + 0x5a, 0x40, 0xe2, 0x4d, 0xf2, 0xba, 0x67, 0xe3, 0x26, 0x1d, 0x80, 0x8c, 0x3c, 0xd6, 0x52, 0xed, + 0x4d, 0x1b, 0x37, 0x7d, 0x7d, 0x1d, 0xbb, 0x19, 0x7d, 0x0d, 0xca, 0x3b, 0x1f, 0x96, 0xf7, 0x47, + 0xd3, 0xde, 0xec, 0xf0, 0xc2, 0x87, 0x1f, 0x4f, 0x59, 0x7c, 0x86, 0xae, 0x29, 0x82, 0x4e, 0x00, + 0x7d, 0x00, 0x26, 0xdd, 0x59, 0xa9, 0xf4, 0xe8, 0x6c, 0x15, 0x5a, 0x78, 0xb8, 0xc9, 0x5d, 0xb9, + 0x1a, 0x2c, 0xb6, 0xd1, 0xcf, 0xc0, 0xb1, 0x90, 0x0d, 0x72, 0x2b, 0x48, 0x1f, 0xca, 0x14, 0x1d, + 0x09, 0x9a, 0x22, 0x81, 0xef, 0x49, 0x2f, 0x73, 0x53, 0x66, 0xcd, 0x1d, 0x24, 0x84, 0xf5, 0xbb, + 0xb7, 0x28, 0x9d, 0x90, 0xfe, 0x24, 0x05, 0x13, 0xa1, 0x06, 0xa2, 0x47, 0x61, 0x94, 0x79, 0xe0, + 0xd4, 0xd0, 0x44, 0x08, 0x95, 0x38, 0xef, 0x13, 0x63, 0x40, 0xf3, 0x90, 0xc7, 0x3c, 0xba, 0xe6, + 0x42, 0xb9, 0x33, 0x26, 0x08, 0xe7, 0xfc, 0x2e, 0x1b, 0x5a, 0x84, 0x82, 0x2b, 0xfa, 0x98, 0x95, + 0x9b, 0x3b, 0x72, 0x1c, 0xc4, 0x63, 0x94, 0x16, 0xa0, 0xe8, 0x6b, 0x1e, 0xbb, 0x0b, 0xb8, 0xc7, + 0x97, 0x5b, 0x2c, 0x80, 0xce, 0x77, 0xd4, 0x3d, 0xba, 0xd2, 0x42, 0xc7, 0x60, 0x8c, 0xbc, 0x6c, + 0xf1, 0xcb, 0x52, 0x19, 0x39, 0xd7, 0x51, 0xf7, 0x2e, 0xa8, 0xb6, 0xf4, 0xb1, 0x14, 0x94, 0x83, + 0xed, 0x44, 0xf7, 0x02, 0x22, 0xb4, 0x6a, 0x0b, 0x2b, 0x46, 0xaf, 0xc3, 0x7c, 0xa4, 0x40, 0x9c, + 0xe8, 0xa8, 0x7b, 0xf3, 0x2d, 0x7c, 0xa9, 0xd7, 0xa1, 0x55, 0xdb, 0x68, 0x15, 0x2a, 0x82, 0x58, + 0x24, 0xbb, 0xb8, 0x54, 0x8e, 0xf7, 0x7f, 0xaf, 0x86, 0x13, 0xb0, 0xb5, 0xee, 0x2b, 0x64, 0xad, + 0x5b, 0x66, 0x78, 0xe2, 0x8d, 0xf4, 0x10, 0x4c, 0x84, 0x7a, 0x8c, 0x24, 0x18, 0xef, 0xf6, 0xb6, + 0x94, 0x5d, 0xbc, 0x4f, 0xaf, 0xbf, 0x33, 0x55, 0x2f, 0xc8, 0xc5, 0x6e, 0x6f, 0xeb, 0x69, 0xbc, + 0x4f, 0x73, 0x87, 0x92, 0x06, 0xe5, 0xe0, 0x62, 0x8a, 0x38, 0x0e, 0xcb, 0xec, 0x19, 0x4d, 0xf1, + 0x61, 0x03, 0xfa, 0x80, 0xce, 0xc1, 0xe8, 0x55, 0x93, 0x69, 0xf3, 0xb0, 0xd5, 0xd3, 0x15, 0xd3, + 0xc1, 0xbe, 0x25, 0x19, 0xe3, 0x91, 0x6c, 0x18, 0xa5, 0x7a, 0x19, 0xb9, 0x51, 0x71, 0x05, 0x40, + 0x75, 0x1c, 0x4b, 0xdf, 0xea, 0x79, 0xf0, 0x33, 0x73, 0xfd, 0x69, 0xfd, 0xb9, 0x35, 0x55, 0xb7, + 0x1a, 0xb7, 0x72, 0xcd, 0x9e, 0xf6, 0x78, 0x7c, 0xda, 0xed, 0x43, 0x92, 0xde, 0xc8, 0x42, 0x8e, + 0x2d, 0x37, 0xd1, 0x13, 0xc1, 0xe4, 0x47, 0xf1, 0xec, 0x89, 0x41, 0xcd, 0x67, 0x54, 0xbc, 0xf5, + 0x6e, 0x04, 0x75, 0x57, 0x38, 0xa3, 0xd0, 0x28, 0xbe, 0x76, 0x50, 0x1b, 0xa3, 0xd1, 0xc7, 0xf2, + 0xa2, 0x97, 0x5e, 0x18, 0xb4, 0xba, 0x16, 0xb9, 0x8c, 0xec, 0xa1, 0x73, 0x19, 0x17, 0x61, 0xdc, + 0x17, 0x6e, 0xe9, 0x4d, 0xbe, 0x4e, 0x39, 0x31, 0x6c, 0xd2, 0x2d, 0x2f, 0xf2, 0xf6, 0x17, 0xdd, + 0x70, 0x6c, 0xb9, 0x89, 0x66, 0x83, 0x8b, 0x6c, 0x1a, 0xb5, 0xb1, 0x70, 0xc1, 0xb7, 0x6e, 0xa6, + 0x77, 0xf2, 0x6f, 0x81, 0x02, 0xbd, 0xd8, 0x4c, 0x49, 0x58, 0xf4, 0x90, 0x27, 0x05, 0xf4, 0xe5, + 0xdd, 0x30, 0xe1, 0x05, 0x36, 0x8c, 0x24, 0xcf, 0x50, 0xbc, 0x62, 0x4a, 0xf8, 0x00, 0x4c, 0xd3, + 0x0f, 0xe0, 0x85, 0xa9, 0x0b, 0x94, 0x1a, 0x91, 0x77, 0x57, 0x82, 0x1c, 0x77, 0x42, 0xd9, 0x33, + 0xa1, 0x94, 0x16, 0x58, 0xea, 0xc3, 0x2d, 0xa5, 0x64, 0xc7, 0x21, 0xef, 0x86, 0x9d, 0x45, 0xf6, + 0x65, 0x3d, 0x95, 0x45, 0x9b, 0x6e, 0x20, 0x6b, 0x61, 0xbb, 0xd7, 0x76, 0x38, 0x48, 0x89, 0xd2, + 0xd0, 0x40, 0x56, 0x66, 0xe5, 0x94, 0xf6, 0x14, 0x8c, 0x0b, 0xab, 0xc2, 0xe8, 0xc6, 0x29, 0x5d, + 0x49, 0x14, 0x52, 0xa2, 0xd3, 0x50, 0xe9, 0x5a, 0x66, 0xd7, 0xb4, 0xb1, 0xa5, 0xa8, 0xcd, 0xa6, + 0x85, 0x6d, 0x7b, 0xa6, 0xcc, 0xf0, 0x44, 0xf9, 0x3c, 0x2b, 0x96, 0xde, 0x03, 0x63, 0x22, 0x9e, + 0x9e, 0x86, 0xd1, 0x86, 0x6b, 0x21, 0xb3, 0x32, 0x7b, 0x20, 0xfe, 0x75, 0xbe, 0xdb, 0xe5, 0xd9, + 0x35, 0xf2, 0x53, 0x6a, 0xc3, 0x18, 0x1f, 0xb0, 0xc8, 0x9c, 0xca, 0x2a, 0x94, 0xba, 0xaa, 0x45, + 0xba, 0xe1, 0xcf, 0xac, 0x0c, 0x5a, 0x11, 0xae, 0xa9, 0x96, 0xb3, 0x8e, 0x9d, 0x40, 0x82, 0xa5, + 0x48, 0xf9, 0x59, 0x91, 0xf4, 0x18, 0x8c, 0x07, 0x68, 0xbc, 0xef, 0x10, 0xf2, 0x89, 0x4e, 0x1f, + 0xdc, 0x96, 0xa4, 0xbd, 0x96, 0x48, 0xe7, 0xa0, 0xe0, 0x8e, 0x15, 0x59, 0x68, 0x08, 0x51, 0xf0, + 0x0f, 0x1b, 0xf2, 0x47, 0x9a, 0x44, 0x32, 0xaf, 0xf1, 0x4f, 0x34, 0x65, 0x64, 0xf6, 0x20, 0x61, + 0x9f, 0x61, 0x62, 0xde, 0x0c, 0x3d, 0x0e, 0x63, 0xdc, 0x30, 0xf1, 0xf9, 0x38, 0x28, 0x5d, 0xb4, + 0x46, 0x2d, 0x95, 0x48, 0x17, 0x31, 0xbb, 0xe5, 0x55, 0x93, 0xf6, 0x57, 0xf3, 0x21, 0xc8, 0x0b, + 0xe3, 0x13, 0xf4, 0x12, 0xac, 0x86, 0x93, 0x71, 0x5e, 0x82, 0x57, 0xe2, 0x31, 0x12, 0x6d, 0xb2, + 0xf5, 0x96, 0x81, 0x9b, 0x8a, 0x37, 0x05, 0xf9, 0x85, 0xd9, 0x09, 0xf6, 0x62, 0x45, 0xcc, 0x2f, + 0xe9, 0x01, 0xc8, 0xb1, 0xb6, 0x46, 0x9a, 0xb8, 0x28, 0xd7, 0xfa, 0x9d, 0x14, 0xe4, 0x85, 0xfb, + 0x88, 0x64, 0x0a, 0x74, 0x22, 0x7d, 0xa3, 0x9d, 0xb8, 0xf9, 0x26, 0xe9, 0x3e, 0x40, 0x54, 0x53, + 0x94, 0xab, 0xa6, 0xa3, 0x1b, 0x2d, 0x85, 0x8d, 0x05, 0xbf, 0x37, 0x48, 0xdf, 0x5c, 0xa1, 0x2f, + 0xd6, 0x48, 0xf9, 0x3d, 0xa7, 0xa0, 0xe8, 0xcb, 0x72, 0xa1, 0x31, 0xc8, 0x5c, 0xc2, 0xd7, 0x2a, + 0x23, 0xa8, 0x08, 0x63, 0x32, 0xa6, 0x39, 0x82, 0x4a, 0xea, 0xec, 0x1b, 0x63, 0x30, 0x31, 0xdf, + 0x58, 0x58, 0x9e, 0xef, 0x76, 0xdb, 0x3a, 0xbf, 0x4f, 0x77, 0x19, 0xb2, 0x74, 0x9d, 0x9c, 0x60, + 0x7f, 0xa7, 0x9a, 0x24, 0xe1, 0x84, 0x64, 0x18, 0xa5, 0xcb, 0x69, 0x94, 0x64, 0xdb, 0xa7, 0x9a, + 0x28, 0x0f, 0x45, 0x1a, 0x49, 0x15, 0x2e, 0xc1, 0x6e, 0x50, 0x35, 0x49, 0x72, 0x0a, 0xfd, 0x0c, + 0x14, 0xbc, 0x75, 0x72, 0xd2, 0x3d, 0xa2, 0x6a, 0xe2, 0xb4, 0x15, 0xc1, 0xf7, 0x56, 0x06, 0x49, + 0xb7, 0x26, 0xaa, 0x89, 0xf3, 0x35, 0xe8, 0x39, 0x18, 0x13, 0x6b, 0xb0, 0x64, 0xbb, 0x38, 0xd5, + 0x84, 0x29, 0x25, 0x32, 0x7c, 0x6c, 0xe9, 0x9c, 0x64, 0xab, 0xaa, 0x9a, 0x28, 0x6f, 0x86, 0x36, + 0x21, 0xc7, 0x83, 0xdf, 0x44, 0x3b, 0x3d, 0xd5, 0x64, 0x89, 0x22, 0x22, 0x64, 0x2f, 0x39, 0x91, + 0x74, 0x7b, 0xae, 0x9a, 0x38, 0x61, 0x88, 0x54, 0x00, 0xdf, 0x7a, 0x3a, 0xf1, 0xbe, 0x5b, 0x35, + 0x79, 0x22, 0x10, 0x7d, 0x10, 0xf2, 0xee, 0xaa, 0x29, 0xe1, 0x4e, 0x5a, 0x35, 0x69, 0x2e, 0xae, + 0xb1, 0x99, 0xf8, 0x94, 0xc4, 0xbd, 0xb1, 0xa7, 0x24, 0xbc, 0x4d, 0x6e, 0x77, 0x1b, 0xfc, 0x2f, + 0x53, 0x70, 0x3c, 0xbc, 0x9d, 0xac, 0x1a, 0xfb, 0x03, 0x0e, 0x04, 0x0c, 0x38, 0x2d, 0xf2, 0x38, + 0x64, 0xe6, 0x8d, 0x7d, 0x12, 0x6c, 0xd0, 0x6f, 0xfb, 0xf5, 0xac, 0xb6, 0x48, 0xd3, 0x91, 0xe7, + 0x4d, 0xab, 0x1d, 0x7d, 0x6a, 0xa4, 0x9e, 0xfd, 0xfe, 0xe7, 0x6a, 0x23, 0x8d, 0xdd, 0x88, 0x5e, + 0xc5, 0x9c, 0x15, 0xc8, 0xcf, 0x1b, 0xfb, 0xe2, 0x98, 0xc0, 0x28, 0xed, 0xd0, 0x61, 0xb7, 0xff, + 0x5f, 0x2f, 0x11, 0x64, 0xdf, 0xf7, 0x81, 0x79, 0x8f, 0x73, 0xec, 0x69, 0xc0, 0x0e, 0x7f, 0xfc, + 0x89, 0x81, 0xea, 0x60, 0x69, 0x4a, 0x17, 0x20, 0xbb, 0x60, 0xea, 0x34, 0xe4, 0x69, 0x62, 0xc3, + 0xec, 0x88, 0x9c, 0x27, 0x7d, 0x40, 0xa7, 0x20, 0xa7, 0x76, 0xcc, 0x9e, 0xe1, 0x88, 0xa8, 0x99, + 0xb8, 0x92, 0xff, 0x7a, 0x50, 0xcb, 0x2c, 0x1b, 0x8e, 0xcc, 0x5f, 0xd5, 0xb3, 0xdf, 0x7d, 0xb5, + 0x96, 0x92, 0x9e, 0x82, 0xb1, 0x45, 0xac, 0xdd, 0x08, 0xd6, 0x22, 0xd6, 0x42, 0x58, 0xa7, 0x21, + 0xbf, 0x6c, 0x38, 0xec, 0xa3, 0x61, 0xb7, 0x41, 0x46, 0x37, 0xd8, 0xb6, 0x48, 0xa8, 0x7e, 0x52, + 0x4e, 0x48, 0x17, 0xb1, 0xe6, 0x92, 0x36, 0xb1, 0x16, 0x26, 0x25, 0xf0, 0xa4, 0x5c, 0x6a, 0x40, + 0xe9, 0x8a, 0xda, 0xe6, 0xe1, 0x1e, 0xb6, 0xd1, 0x7d, 0x50, 0x50, 0xc5, 0x03, 0x5d, 0x59, 0x95, + 0x1a, 0xe5, 0x1f, 0x1c, 0xd4, 0xc0, 0x23, 0x92, 0x3d, 0x82, 0x7a, 0xf6, 0xe5, 0xff, 0x76, 0x32, + 0x25, 0x99, 0x30, 0x76, 0x41, 0xb5, 0xa9, 0xa5, 0x7f, 0x30, 0x90, 0x48, 0xa1, 0x91, 0x62, 0xe3, + 0xc8, 0xf5, 0x83, 0xda, 0xe4, 0xbe, 0xda, 0x69, 0xd7, 0x25, 0xef, 0x9d, 0xe4, 0xcf, 0xaf, 0xcc, + 0xf9, 0xf2, 0x2b, 0x34, 0x92, 0x6c, 0x4c, 0x5d, 0x3f, 0xa8, 0x4d, 0x78, 0x3c, 0xe4, 0x8d, 0xe4, + 0x26, 0x5d, 0xa4, 0x2e, 0xe4, 0x58, 0xd0, 0x1b, 0xb9, 0x43, 0xc8, 0x53, 0x3e, 0x69, 0x2f, 0xe5, + 0x53, 0x3f, 0x54, 0x9a, 0x81, 0xc7, 0x65, 0x8c, 0xa3, 0x9e, 0xfd, 0xc8, 0xab, 0xb5, 0x11, 0xc9, + 0x02, 0xb4, 0xae, 0x77, 0x7a, 0x6d, 0x76, 0xf1, 0x5b, 0x6c, 0x35, 0x3d, 0xc8, 0xda, 0x4d, 0xd3, + 0x49, 0x2c, 0x20, 0x9b, 0x98, 0xe3, 0x4a, 0xca, 0x05, 0xc2, 0xe2, 0x8c, 0x6f, 0x1e, 0xd4, 0x52, + 0xb4, 0xf5, 0x54, 0x46, 0x77, 0x41, 0x8e, 0x85, 0xf2, 0x3c, 0xfe, 0x29, 0x0b, 0x1e, 0xd6, 0x27, + 0x99, 0xbf, 0x95, 0x9e, 0x80, 0xb1, 0x55, 0xbb, 0xb5, 0x48, 0xba, 0x74, 0x1c, 0xf2, 0x1d, 0xbb, + 0xa5, 0xf8, 0xa2, 0xa9, 0xb1, 0x8e, 0xdd, 0xda, 0x18, 0x10, 0x85, 0xf1, 0x61, 0x79, 0x2f, 0xe4, + 0x36, 0xf6, 0x28, 0xfb, 0x29, 0x57, 0x4a, 0x19, 0x7f, 0x1b, 0x39, 0x7a, 0x80, 0xe9, 0xe7, 0x33, + 0x00, 0x1b, 0x7b, 0x6e, 0x0f, 0x07, 0x6c, 0xc1, 0x21, 0x09, 0x72, 0xce, 0x9e, 0x1b, 0x51, 0x17, + 0x1a, 0xf0, 0xda, 0x41, 0x2d, 0xb7, 0xb1, 0x47, 0x96, 0x17, 0x32, 0x7f, 0x13, 0x4c, 0x65, 0x65, + 0x42, 0xa9, 0x2c, 0x37, 0x81, 0x97, 0x8d, 0x48, 0xe0, 0x8d, 0xfa, 0x76, 0x00, 0x8e, 0xc1, 0x98, + 0xa5, 0x5e, 0x53, 0xc8, 0x88, 0xb2, 0xaf, 0x90, 0xe6, 0x2c, 0xf5, 0xda, 0x8a, 0xd9, 0x42, 0x0b, + 0x90, 0x6d, 0x9b, 0x2d, 0x91, 0x77, 0x3b, 0x2a, 0x3a, 0x45, 0x22, 0x2e, 0x7e, 0x9a, 0x78, 0xc5, + 0x6c, 0x35, 0x8e, 0x11, 0xf9, 0x7f, 0xf1, 0xcf, 0x6a, 0x13, 0xc1, 0x72, 0x5b, 0xa6, 0xcc, 0x6e, + 0x32, 0x30, 0x3f, 0x30, 0x19, 0x58, 0x18, 0x96, 0x0c, 0x84, 0x60, 0x32, 0xf0, 0x0e, 0xba, 0xa7, + 0xc9, 0xf6, 0x70, 0xa6, 0xfb, 0x82, 0xcf, 0x79, 0x63, 0x9f, 0xee, 0xa2, 0xde, 0x0a, 0x05, 0xf7, + 0xa0, 0x10, 0xff, 0xec, 0xb3, 0x57, 0xc0, 0xf5, 0xed, 0x23, 0x29, 0x28, 0x07, 0x5b, 0x4c, 0xf3, + 0x39, 0x76, 0x8b, 0x7f, 0x30, 0x95, 0xa5, 0x3d, 0x89, 0x52, 0x2c, 0x8b, 0x4c, 0x79, 0x48, 0xe7, + 0xe7, 0x43, 0x3a, 0x3f, 0x25, 0x04, 0xc4, 0xee, 0xee, 0x30, 0x55, 0x9f, 0xe6, 0xd2, 0x29, 0xf9, + 0x0a, 0x6d, 0x4f, 0xf5, 0xa9, 0x46, 0xfc, 0x2c, 0x14, 0x7d, 0x6f, 0x23, 0x83, 0xfa, 0x47, 0x22, + 0x92, 0x1d, 0x93, 0xee, 0x80, 0x88, 0x37, 0x62, 0x0b, 0xc1, 0x23, 0x75, 0x15, 0xb5, 0xe0, 0x12, + 0x25, 0x3d, 0x5e, 0xd1, 0x58, 0xfc, 0xd3, 0x6f, 0x9f, 0x18, 0x79, 0xf9, 0xb5, 0x13, 0x23, 0x03, + 0xcf, 0x67, 0x4a, 0xf1, 0x5f, 0x98, 0x77, 0xbd, 0xcc, 0x47, 0xdf, 0x0f, 0xb7, 0x72, 0x1a, 0xdb, + 0x51, 0x77, 0x75, 0xa3, 0x25, 0xfe, 0x72, 0x77, 0x53, 0xe6, 0xbd, 0xe1, 0xa5, 0x37, 0xee, 0x76, + 0xde, 0xea, 0xa1, 0xb1, 0x6a, 0x94, 0x37, 0x94, 0x0e, 0xb2, 0x80, 0x56, 0xed, 0xd6, 0x82, 0x85, + 0xd9, 0xc7, 0x46, 0xf8, 0x3a, 0x29, 0x78, 0xd9, 0x87, 0xdb, 0xa8, 0x5b, 0xe6, 0x82, 0x7d, 0x71, + 0xbf, 0x1b, 0xed, 0xe5, 0x88, 0x02, 0x57, 0x84, 0x96, 0x00, 0x68, 0x7a, 0xc5, 0xb6, 0xbd, 0x64, + 0x5e, 0x2d, 0x8c, 0xb1, 0xe0, 0x52, 0xc8, 0xaa, 0x83, 0x6d, 0x31, 0xd6, 0x1e, 0x23, 0xfa, 0x10, + 0x4c, 0x75, 0x74, 0x43, 0xb1, 0x71, 0x7b, 0x5b, 0x69, 0xe2, 0x36, 0xfd, 0x14, 0x0b, 0xdf, 0xb8, + 0x2b, 0x34, 0x56, 0xb8, 0x63, 0xba, 0x2b, 0x7e, 0xcc, 0xe6, 0x96, 0x0d, 0xe7, 0xfa, 0x41, 0xad, + 0xca, 0xbc, 0x43, 0x04, 0xa4, 0x24, 0x4f, 0x76, 0x74, 0x63, 0x1d, 0xb7, 0xb7, 0x17, 0xdd, 0x32, + 0xf4, 0x12, 0x4c, 0x72, 0x0a, 0xd3, 0x4b, 0x7a, 0x10, 0xdb, 0x53, 0x6a, 0xac, 0x5e, 0x3f, 0xa8, + 0xcd, 0x30, 0xb4, 0x3e, 0x12, 0xe9, 0x07, 0x07, 0xb5, 0xfb, 0x13, 0xb4, 0x69, 0x5e, 0xd3, 0x84, + 0x7b, 0xac, 0xb8, 0x20, 0xbc, 0x84, 0xd4, 0xed, 0x25, 0xe8, 0x45, 0xdd, 0xa3, 0xe1, 0xba, 0xfb, + 0x48, 0x92, 0xd6, 0xed, 0x73, 0xcd, 0x5e, 0x06, 0x5f, 0xd4, 0x7d, 0x14, 0x72, 0xdd, 0xde, 0x96, + 0xd8, 0x45, 0x2b, 0xc8, 0xfc, 0x09, 0xcd, 0xfa, 0x37, 0xd2, 0x8a, 0x67, 0x4b, 0x62, 0x3c, 0x49, + 0xac, 0xe2, 0xa6, 0x39, 0x59, 0xec, 0x47, 0xa3, 0x8f, 0xaf, 0x66, 0xa0, 0xb2, 0x6a, 0xb7, 0x96, + 0x9a, 0xba, 0x73, 0x93, 0xd5, 0xab, 0x1b, 0x25, 0x1d, 0xea, 0xcd, 0x1a, 0x0b, 0xd7, 0x0f, 0x6a, + 0x65, 0x26, 0x9d, 0x9b, 0x29, 0x93, 0x0e, 0x4c, 0x78, 0x7a, 0xa9, 0x58, 0xaa, 0xc3, 0xdd, 0x53, + 0x63, 0x31, 0xa1, 0x06, 0x2e, 0x62, 0xed, 0xfa, 0x41, 0xed, 0x28, 0x6b, 0x59, 0x08, 0x4a, 0x92, + 0xcb, 0x5a, 0x60, 0x2e, 0xa0, 0xbd, 0x68, 0xc5, 0xa7, 0xfb, 0x4f, 0x8d, 0x8b, 0x6f, 0xa3, 0xd2, + 0xf3, 0xa1, 0xfb, 0x4a, 0x1a, 0x8a, 0xc4, 0xd5, 0xb3, 0x72, 0x1c, 0x3d, 0x15, 0x52, 0x3f, 0xc2, + 0xa9, 0x90, 0x7e, 0x67, 0xa6, 0xc2, 0x3d, 0x6e, 0xac, 0x9d, 0x19, 0xa8, 0xf3, 0xc1, 0x90, 0xfb, + 0x3f, 0x66, 0xa8, 0x55, 0xa5, 0x2b, 0x48, 0x19, 0x37, 0xdf, 0x0d, 0x02, 0xfc, 0x85, 0x14, 0x1c, + 0xf1, 0xc4, 0x63, 0x5b, 0x5a, 0x48, 0x8a, 0xcf, 0x5c, 0x3f, 0xa8, 0xdd, 0x1a, 0x96, 0xa2, 0x8f, + 0xec, 0x06, 0x24, 0x39, 0xe5, 0x02, 0xad, 0x5b, 0x5a, 0x74, 0x3b, 0x9a, 0xb6, 0xe3, 0xb6, 0x23, + 0x33, 0xb8, 0x1d, 0x3e, 0xb2, 0xb7, 0xd4, 0x8e, 0x45, 0xdb, 0xe9, 0x1f, 0xd4, 0x6c, 0xc2, 0x41, + 0xfd, 0x5a, 0x1a, 0xc6, 0x57, 0xed, 0xd6, 0xa6, 0xd1, 0xfc, 0xc9, 0x84, 0x38, 0xec, 0x84, 0xf8, + 0x58, 0x0a, 0xca, 0x17, 0x75, 0xdb, 0x31, 0x2d, 0x5d, 0x53, 0xdb, 0x74, 0x35, 0xe3, 0x9d, 0x91, + 0x4c, 0x1d, 0xfe, 0x8c, 0xe4, 0x23, 0x90, 0xbb, 0xaa, 0xb6, 0xd9, 0xbf, 0x2b, 0xca, 0xd0, 0x3d, + 0xc2, 0x90, 0xef, 0x08, 0xe7, 0x80, 0x39, 0x39, 0x6f, 0xce, 0xef, 0xa6, 0x61, 0x22, 0x14, 0x78, + 0xa0, 0x06, 0x64, 0xa9, 0x45, 0x67, 0x0b, 0xde, 0xb9, 0x43, 0xc4, 0x15, 0x64, 0x4d, 0x4c, 0x79, + 0xd1, 0x4f, 0x41, 0xbe, 0xa3, 0xee, 0x31, 0xcf, 0xc0, 0xd6, 0x37, 0xf3, 0x87, 0xc3, 0xf1, 0x56, + 0xaf, 0x02, 0x47, 0x92, 0xc7, 0x3a, 0xea, 0x1e, 0xf5, 0x07, 0x5d, 0x98, 0x20, 0xa5, 0xda, 0x8e, + 0x6a, 0xb4, 0xb0, 0xdf, 0xfd, 0x5c, 0x3c, 0x74, 0x25, 0x47, 0xbd, 0x4a, 0x7c, 0x70, 0x92, 0x3c, + 0xde, 0x51, 0xf7, 0x16, 0x68, 0x01, 0xa9, 0xb1, 0x9e, 0x7f, 0xe5, 0xd5, 0xda, 0x08, 0x95, 0xd8, + 0xbf, 0x4f, 0x01, 0x78, 0x12, 0x43, 0x1b, 0x50, 0x09, 0xb9, 0x2f, 0x71, 0xc6, 0x28, 0x36, 0xc0, + 0xf3, 0x16, 0xb6, 0x13, 0x5a, 0x68, 0x08, 0x3e, 0x08, 0x45, 0x76, 0x4a, 0x40, 0xa1, 0xc9, 0xf8, + 0x74, 0x6c, 0x32, 0xfe, 0x04, 0xc1, 0xba, 0x7e, 0x50, 0x43, 0xac, 0x3b, 0x3e, 0x66, 0x89, 0xa6, + 0xe8, 0x81, 0x95, 0x10, 0x86, 0x60, 0x5f, 0x8a, 0xbe, 0xd8, 0x82, 0x9e, 0x3d, 0x33, 0x0d, 0x7d, + 0x17, 0x5b, 0xee, 0x1a, 0x99, 0x3d, 0xa2, 0x2a, 0xe4, 0xd9, 0x57, 0x05, 0x9d, 0x7d, 0xf1, 0xef, + 0x2a, 0xc4, 0x33, 0xe1, 0xba, 0x86, 0xb7, 0x6c, 0x5d, 0x8c, 0x82, 0x2c, 0x1e, 0xd1, 0x79, 0xa8, + 0xd8, 0x58, 0xeb, 0x59, 0xba, 0xb3, 0xaf, 0x68, 0xa6, 0xe1, 0xa8, 0x9a, 0xc3, 0x9d, 0xf6, 0x2d, + 0xd7, 0x0f, 0x6a, 0xc7, 0x58, 0x5b, 0xc3, 0x14, 0x92, 0x3c, 0x21, 0x8a, 0x16, 0x58, 0x09, 0xa9, + 0xa1, 0x89, 0x1d, 0x55, 0x6f, 0xdb, 0x7c, 0x61, 0x2b, 0x1e, 0x7d, 0x7d, 0xf9, 0x9d, 0x31, 0xff, + 0x66, 0xd4, 0x35, 0xa8, 0x98, 0x5d, 0x6c, 0x45, 0xd8, 0xa3, 0x15, 0xaf, 0xe6, 0x30, 0xc5, 0x0d, + 0x98, 0x84, 0x09, 0x81, 0x21, 0x2c, 0xc2, 0xf9, 0xc0, 0x99, 0x33, 0x16, 0x37, 0xa6, 0xc3, 0x5d, + 0x0e, 0x53, 0x48, 0xfe, 0x83, 0x66, 0x2c, 0xba, 0x3c, 0x0a, 0xb9, 0x17, 0x54, 0xbd, 0x2d, 0x3e, + 0xb5, 0x2a, 0xf3, 0x27, 0xb4, 0x0c, 0x39, 0xdb, 0x51, 0x9d, 0x1e, 0x0b, 0xbd, 0x47, 0x1b, 0xef, + 0x49, 0xd8, 0xe6, 0x86, 0x69, 0x34, 0xd7, 0x29, 0xa3, 0xcc, 0x01, 0xd0, 0x79, 0xc8, 0x39, 0xe6, + 0x2e, 0x36, 0xb8, 0x50, 0x0f, 0x35, 0xd3, 0x69, 0xa2, 0x8e, 0x71, 0x23, 0x07, 0x3c, 0xa3, 0xac, + 0xd8, 0x3b, 0xaa, 0x85, 0x6d, 0x16, 0x2a, 0x37, 0x96, 0x0f, 0x3d, 0x1d, 0x8f, 0x85, 0x3d, 0x05, + 0xc3, 0x93, 0xe4, 0x09, 0xb7, 0x68, 0x9d, 0x96, 0x84, 0x23, 0xe7, 0xb1, 0x1b, 0x8a, 0x9c, 0xcf, + 0x43, 0xa5, 0x67, 0x6c, 0x99, 0x06, 0xfd, 0x2c, 0x22, 0x4f, 0xd3, 0xe4, 0x4f, 0xa6, 0x66, 0x33, + 0xfe, 0xd1, 0x0a, 0x53, 0x48, 0xf2, 0x84, 0x5b, 0xc4, 0x4f, 0x3f, 0x36, 0xa1, 0xec, 0x51, 0xd1, + 0x29, 0x5b, 0x88, 0x9d, 0xb2, 0xb7, 0xf3, 0x29, 0x7b, 0x24, 0x5c, 0x8b, 0x37, 0x6b, 0xc7, 0xdd, + 0x42, 0xc2, 0x86, 0xde, 0x1f, 0x58, 0x46, 0x02, 0xaf, 0x61, 0xa0, 0x95, 0x49, 0xbe, 0x82, 0x2c, + 0xbe, 0x23, 0x2b, 0xc8, 0x7a, 0xe9, 0x23, 0xaf, 0xd6, 0x46, 0xdc, 0x09, 0xfb, 0x4b, 0x69, 0xc8, + 0x2d, 0x5e, 0xa1, 0xd7, 0x28, 0x7f, 0x4c, 0xc3, 0x07, 0x9f, 0xf5, 0x7a, 0x1f, 0x8c, 0x31, 0x59, + 0xd8, 0xe8, 0x2c, 0x8c, 0x76, 0xc9, 0x0f, 0x9e, 0x6b, 0x3c, 0xda, 0xa7, 0xd2, 0x94, 0x4e, 0xac, + 0x30, 0x29, 0xa9, 0xf4, 0xf9, 0x0c, 0xc0, 0xe2, 0x95, 0x2b, 0x1b, 0x96, 0xde, 0x6d, 0x63, 0xe7, + 0x27, 0xe1, 0xf5, 0xbb, 0x27, 0xbc, 0xf6, 0x8d, 0xf1, 0xd3, 0x50, 0xf4, 0xc6, 0xc8, 0x46, 0x8f, + 0x43, 0xde, 0xe1, 0xbf, 0xf9, 0x50, 0x57, 0xfb, 0x87, 0x5a, 0x90, 0xf3, 0xe1, 0x76, 0x39, 0xa4, + 0xff, 0x92, 0x06, 0x88, 0x4b, 0xce, 0xfc, 0x18, 0x04, 0xe0, 0xe7, 0x21, 0xc7, 0x3d, 0x4e, 0xe6, + 0x86, 0xa2, 0x55, 0xce, 0xed, 0x1b, 0xa5, 0x6f, 0xa7, 0x61, 0x6a, 0x53, 0x98, 0xdd, 0x9f, 0x48, + 0x18, 0x5d, 0x84, 0x31, 0x6c, 0x38, 0x96, 0x8e, 0x45, 0x1a, 0x7c, 0x36, 0xac, 0xa5, 0x11, 0xd2, + 0xa2, 0xff, 0x2e, 0x41, 0x9c, 0x96, 0xe3, 0xec, 0x3e, 0x19, 0x7f, 0x3c, 0x03, 0x33, 0x83, 0xb8, + 0xd0, 0x02, 0x4c, 0x68, 0x16, 0xa6, 0x05, 0x8a, 0x7f, 0xe7, 0xa4, 0x51, 0xf5, 0x65, 0x8c, 0x82, + 0x04, 0x92, 0x5c, 0x16, 0x25, 0xdc, 0x21, 0xb7, 0x68, 0x82, 0x8a, 0x4c, 0x15, 0x42, 0x95, 0x30, + 0x88, 0x96, 0xb8, 0x47, 0xf6, 0xd2, 0x52, 0x7e, 0x00, 0xe6, 0x92, 0xcb, 0x5e, 0x29, 0xf5, 0xc9, + 0x2f, 0xc2, 0x84, 0x6e, 0xe8, 0x8e, 0xae, 0xb6, 0x95, 0x2d, 0xb5, 0xad, 0x1a, 0xda, 0x8d, 0x2c, + 0x45, 0x98, 0x37, 0xe5, 0xd5, 0x86, 0xe0, 0x24, 0xb9, 0xcc, 0x4b, 0x1a, 0xac, 0x80, 0x8c, 0x88, + 0xa8, 0x2a, 0x7b, 0x43, 0x81, 0x9b, 0x60, 0xf7, 0x8d, 0xc8, 0x2f, 0x67, 0x60, 0xd2, 0xcd, 0xcf, + 0xfc, 0x64, 0x28, 0x92, 0x0e, 0xc5, 0x2a, 0x00, 0x33, 0x20, 0xc4, 0x73, 0xdc, 0xc0, 0x68, 0x10, + 0x13, 0x54, 0x60, 0x08, 0x8b, 0xb6, 0xe3, 0x1b, 0x8f, 0xbf, 0xc8, 0x40, 0xc9, 0x3f, 0x1e, 0x3f, + 0x71, 0xe9, 0xef, 0xa2, 0x8c, 0xd9, 0xbc, 0x67, 0x12, 0xb3, 0xfc, 0xbb, 0x28, 0x21, 0x93, 0xd8, + 0x37, 0x95, 0x06, 0xdb, 0xc2, 0xbf, 0x4a, 0x43, 0x8e, 0x9f, 0xcb, 0xd6, 0xfa, 0x56, 0x11, 0xa9, + 0xb8, 0x73, 0xdf, 0xc3, 0x17, 0x11, 0xaf, 0x44, 0x2e, 0x22, 0xca, 0x1d, 0x75, 0x4f, 0x09, 0xdc, + 0x62, 0x4a, 0xcd, 0x8e, 0x37, 0x8e, 0x7b, 0x28, 0xc1, 0xf7, 0x2c, 0x17, 0xe2, 0x9d, 0xc9, 0x45, + 0x8f, 0x40, 0x91, 0x50, 0x78, 0x5e, 0x81, 0xb0, 0x1f, 0xf5, 0x92, 0x0f, 0xbe, 0x97, 0x92, 0x0c, + 0x1d, 0x75, 0x6f, 0x89, 0x3d, 0xa0, 0x15, 0x40, 0x3b, 0x6e, 0xea, 0x4b, 0xf1, 0x44, 0x48, 0xf8, + 0x6f, 0xbb, 0x7e, 0x50, 0x3b, 0xce, 0xf8, 0xfb, 0x69, 0x24, 0x79, 0xd2, 0x2b, 0x14, 0x68, 0x0f, + 0x02, 0x90, 0x7e, 0x29, 0xec, 0x4c, 0x08, 0x5b, 0xc2, 0xfa, 0x0e, 0x4a, 0x78, 0xef, 0x24, 0xb9, + 0x40, 0x1e, 0x16, 0xc9, 0x6f, 0x9f, 0xe0, 0x7f, 0x25, 0x05, 0xc8, 0xf3, 0x3d, 0xee, 0x7e, 0xfd, + 0xfb, 0xe9, 0xbd, 0x44, 0xb1, 0x32, 0x4a, 0x45, 0x2f, 0xb2, 0x3c, 0x3e, 0xb1, 0xc8, 0xf2, 0x4d, + 0xd5, 0xfb, 0x3c, 0xfb, 0x9c, 0x1e, 0x98, 0x15, 0x8c, 0xb0, 0xc1, 0xff, 0x3a, 0x05, 0xc7, 0xfb, + 0x14, 0xc7, 0x6d, 0xd7, 0x15, 0x40, 0x96, 0xef, 0x25, 0xff, 0x0f, 0x45, 0x29, 0xfe, 0x1f, 0xff, + 0x12, 0xea, 0xdf, 0xa4, 0xd5, 0x67, 0xe3, 0x6f, 0x9e, 0x37, 0xe1, 0x19, 0xc5, 0x14, 0x4c, 0xfb, + 0xab, 0x77, 0x3b, 0x70, 0x1e, 0x4a, 0xfe, 0xda, 0x79, 0xd3, 0x6f, 0x1d, 0xd6, 0x74, 0xde, 0xea, + 0x00, 0x1f, 0x5a, 0xf6, 0x66, 0x9f, 0xf8, 0xa7, 0x93, 0x71, 0xbd, 0x77, 0x0f, 0xb2, 0x85, 0x66, + 0x21, 0x6b, 0xf1, 0xff, 0x4b, 0x41, 0x76, 0xcd, 0x34, 0xdb, 0xc8, 0x84, 0x49, 0xc3, 0x74, 0x14, + 0xa2, 0x2c, 0xb8, 0xa9, 0xf0, 0xdc, 0x08, 0xcb, 0x82, 0x2e, 0x1c, 0x4e, 0x28, 0xdf, 0x3b, 0xa8, + 0xf5, 0x43, 0xc9, 0x13, 0x86, 0xe9, 0x34, 0x68, 0xc9, 0x06, 0xcb, 0x9c, 0x7c, 0x08, 0xc6, 0x83, + 0x95, 0xb1, 0x4c, 0xd1, 0xb3, 0x87, 0xae, 0x2c, 0x08, 0x73, 0xfd, 0xa0, 0x36, 0xed, 0x4d, 0x02, + 0xb7, 0x58, 0x92, 0x4b, 0x5b, 0xbe, 0xda, 0xeb, 0x79, 0xd2, 0xfb, 0xef, 0xbf, 0x5a, 0x4b, 0x35, + 0xce, 0x0f, 0x3c, 0x01, 0x70, 0xdf, 0xd0, 0x26, 0xec, 0xb9, 0x5b, 0xfd, 0xc1, 0xb3, 0x00, 0xdf, + 0x3d, 0x03, 0xd5, 0xd0, 0x59, 0x00, 0x7a, 0x0f, 0x79, 0xc0, 0x49, 0x80, 0xe1, 0xff, 0xc0, 0x7f, + 0xc0, 0x41, 0x81, 0xa1, 0x87, 0x0d, 0xa4, 0x5d, 0x38, 0x4a, 0x8f, 0x72, 0x7a, 0x66, 0x4b, 0x7c, + 0x25, 0xe6, 0xa8, 0x9b, 0x40, 0x4b, 0xf1, 0xff, 0x17, 0xce, 0xb2, 0x61, 0x8f, 0x01, 0x78, 0x35, + 0xbb, 0x17, 0x6e, 0x78, 0x4b, 0x59, 0xeb, 0xd9, 0x3f, 0xf2, 0xa7, 0x30, 0xb2, 0x8f, 0x58, 0xfa, + 0xf5, 0x14, 0x1c, 0xeb, 0xab, 0x8d, 0x6b, 0xfd, 0x93, 0x81, 0x0b, 0xa3, 0xa9, 0x64, 0x39, 0x7a, + 0xff, 0x97, 0x1f, 0xea, 0x11, 0xed, 0xaa, 0x46, 0xb5, 0x8b, 0x55, 0x18, 0x68, 0xd8, 0x8b, 0x70, + 0x24, 0xd8, 0x2e, 0x21, 0x84, 0xe7, 0xa0, 0x1c, 0x5c, 0x2d, 0xf0, 0x50, 0xe2, 0x3d, 0x87, 0xf7, + 0x90, 0xe3, 0x81, 0x15, 0x83, 0xf4, 0x6c, 0x58, 0xf0, 0xae, 0x24, 0xde, 0xd7, 0x7f, 0xf8, 0x3e, + 0x56, 0x10, 0xbe, 0xbb, 0x59, 0x5f, 0x49, 0xc1, 0xc9, 0x20, 0xb2, 0x67, 0x84, 0xed, 0xb7, 0xbd, + 0x5f, 0x6f, 0x45, 0x3d, 0xfe, 0x53, 0x0a, 0x6e, 0x1f, 0xd2, 0x72, 0x2e, 0x1e, 0x0b, 0xa6, 0x7d, + 0xd6, 0xdd, 0xe2, 0xc5, 0x42, 0x65, 0xa4, 0xc1, 0x1e, 0xc8, 0x35, 0x6e, 0xb7, 0xf0, 0xa3, 0x48, + 0x53, 0xfd, 0xef, 0x6c, 0x79, 0xaa, 0xdf, 0x22, 0xbf, 0x35, 0xdd, 0xfa, 0x7a, 0x0a, 0x4e, 0x07, + 0x7b, 0x15, 0xb1, 0xa2, 0x7b, 0x77, 0x0f, 0xcc, 0xbf, 0x49, 0xc1, 0x3d, 0x49, 0xba, 0xc0, 0x47, + 0xe8, 0x79, 0x98, 0xf2, 0xe2, 0xab, 0xf0, 0x00, 0x9d, 0x4a, 0xb0, 0x2a, 0xe6, 0x4a, 0x8d, 0x5c, + 0x94, 0x9b, 0x33, 0x12, 0x7f, 0x9c, 0xe2, 0x73, 0xce, 0x3f, 0xee, 0xae, 0xd8, 0x83, 0x4b, 0x82, + 0x43, 0x8a, 0xdd, 0xb7, 0x2c, 0x18, 0x0f, 0x2c, 0x0b, 0x22, 0x06, 0x34, 0x7d, 0x93, 0x2c, 0xc8, + 0x2f, 0x0a, 0x6b, 0x1a, 0x11, 0x9c, 0xed, 0xc2, 0x54, 0xc4, 0x24, 0x71, 0x6f, 0x9c, 0xc6, 0xcf, + 0x91, 0xa3, 0x3f, 0x38, 0xa8, 0x45, 0x44, 0x7d, 0x32, 0xea, 0x9f, 0x1e, 0xd2, 0x7f, 0x4e, 0x41, + 0x8d, 0x36, 0x24, 0x62, 0x28, 0xff, 0x26, 0x0b, 0x18, 0x73, 0x43, 0x1a, 0xd9, 0x2d, 0x2e, 0xe8, + 0x79, 0xc8, 0x31, 0x2d, 0xe5, 0xb2, 0x3d, 0x84, 0x7a, 0x73, 0x46, 0xcf, 0x60, 0x2f, 0x8a, 0x7e, + 0x45, 0xdb, 0x85, 0xb7, 0x49, 0x7e, 0x6f, 0xc1, 0x2e, 0xfc, 0x2b, 0x61, 0xb0, 0xa3, 0x5b, 0xce, + 0x45, 0xf4, 0xc1, 0xb7, 0x6c, 0xb0, 0xf9, 0x97, 0x84, 0xde, 0x36, 0xcb, 0xec, 0x36, 0x3f, 0xc6, + 0x32, 0xbf, 0xfb, 0x46, 0xc0, 0xb5, 0xcc, 0x31, 0x5d, 0x78, 0x97, 0x5b, 0xe6, 0xeb, 0x69, 0x38, + 0x4e, 0xbb, 0xe1, 0x5f, 0x91, 0xbc, 0x03, 0x92, 0x57, 0x00, 0xd9, 0x96, 0xa6, 0xdc, 0x2c, 0xfb, + 0x51, 0xb1, 0x2d, 0xed, 0x4a, 0xc0, 0xe9, 0x2a, 0x80, 0x9a, 0xb6, 0x13, 0xae, 0x20, 0x73, 0xc3, + 0x15, 0x34, 0x6d, 0xe7, 0xca, 0x10, 0xaf, 0x9e, 0x3d, 0x8c, 0xee, 0xfc, 0x61, 0x0a, 0xaa, 0x51, + 0x42, 0xe7, 0xba, 0xa2, 0xc2, 0xd1, 0xc0, 0x3a, 0x3a, 0xac, 0x2e, 0x77, 0x0c, 0x5b, 0x4d, 0x86, + 0xa6, 0xee, 0x11, 0x0b, 0xdf, 0xec, 0xc9, 0xfb, 0x65, 0xe1, 0x74, 0x5c, 0xcd, 0xef, 0x5f, 0xc2, + 0xbc, 0x2b, 0xa7, 0xec, 0x6f, 0xf5, 0x99, 0xfb, 0x77, 0xdb, 0x6a, 0xe8, 0x4f, 0x52, 0x70, 0x62, + 0x40, 0x0b, 0xff, 0x26, 0xbb, 0xf3, 0x9f, 0x1d, 0xa8, 0x30, 0x37, 0x6b, 0xe9, 0xf5, 0x20, 0x9f, + 0x50, 0xc1, 0x73, 0x6b, 0xbe, 0x05, 0x75, 0xe4, 0x37, 0xe6, 0x9e, 0x81, 0x5b, 0x22, 0xb9, 0x78, + 0x9b, 0xce, 0x42, 0x76, 0x47, 0xb7, 0x1d, 0xf7, 0xc3, 0x0b, 0xa1, 0xe6, 0x84, 0xb8, 0x28, 0xad, + 0x84, 0xa0, 0x42, 0x21, 0xd7, 0x4c, 0xb3, 0xcd, 0xab, 0x97, 0x16, 0x60, 0xd2, 0x57, 0xc6, 0xc1, + 0xe7, 0x20, 0xdb, 0x35, 0xcd, 0x36, 0x07, 0x9f, 0x0e, 0x83, 0x13, 0x5a, 0xde, 0x4d, 0x4a, 0x27, + 0x4d, 0x03, 0x62, 0x20, 0xec, 0x93, 0x20, 0x1c, 0xfa, 0xc3, 0x29, 0x98, 0x0a, 0x14, 0xbb, 0x97, + 0x96, 0x72, 0x81, 0xaf, 0x49, 0xf5, 0x6d, 0xd1, 0x33, 0x7a, 0xf7, 0x7a, 0x3a, 0xcb, 0xee, 0xbe, + 0x05, 0xd5, 0x3d, 0xfb, 0x47, 0x25, 0x71, 0xcb, 0x55, 0x01, 0xf0, 0xa5, 0x62, 0xef, 0x0a, 0xd7, + 0x1c, 0x9d, 0xf4, 0xa8, 0xde, 0x1d, 0x4b, 0xc7, 0x63, 0xde, 0x11, 0xf4, 0x53, 0xfe, 0x63, 0x54, + 0x77, 0x0e, 0xe7, 0x13, 0xf0, 0x77, 0xc5, 0x91, 0xb9, 0xe8, 0x7f, 0x0b, 0xa6, 0xa3, 0x56, 0xc1, + 0xe8, 0x81, 0xe1, 0x08, 0xfd, 0x71, 0x4b, 0xf5, 0x3d, 0x87, 0xe0, 0x70, 0xab, 0x7f, 0x25, 0x05, + 0xb7, 0x0d, 0x5d, 0xec, 0xa1, 0xc7, 0x86, 0xc3, 0x0e, 0x89, 0xa4, 0xaa, 0xf5, 0x1b, 0x61, 0x75, + 0x9b, 0xa6, 0x04, 0xf6, 0xf3, 0xa3, 0x25, 0xda, 0xb7, 0xfe, 0x18, 0x30, 0xb0, 0xfd, 0xb1, 0xa6, + 0x34, 0x82, 0x5e, 0x8a, 0xde, 0xd7, 0x3e, 0x13, 0x89, 0x30, 0x78, 0xc9, 0x53, 0x7d, 0x20, 0x39, + 0x83, 0x7f, 0xd8, 0xa3, 0x62, 0xe9, 0x01, 0xc3, 0x3e, 0x64, 0xc1, 0x30, 0x60, 0xd8, 0x87, 0x05, + 0xea, 0x7c, 0xd8, 0x87, 0x46, 0x92, 0x03, 0x86, 0x3d, 0x49, 0x00, 0x3d, 0x60, 0xd8, 0x13, 0x05, + 0xae, 0xd2, 0x08, 0xda, 0x81, 0xf1, 0x40, 0x9c, 0x82, 0x4e, 0x47, 0xc2, 0x45, 0x05, 0x90, 0xd5, + 0x7b, 0x92, 0x90, 0xfa, 0xc7, 0x3f, 0xc2, 0x35, 0x0f, 0x18, 0xff, 0xc1, 0xd1, 0x47, 0xf5, 0x81, + 0xe4, 0x0c, 0x6e, 0xdd, 0xd7, 0xdc, 0xad, 0x16, 0x1f, 0x01, 0x9a, 0x4b, 0x88, 0x24, 0x6a, 0x3e, + 0x93, 0x98, 0xde, 0xad, 0x78, 0xb7, 0xef, 0xb4, 0x75, 0xb4, 0xd0, 0x22, 0x5d, 0x5b, 0xf5, 0xde, + 0x44, 0xb4, 0x6e, 0x65, 0xab, 0x7c, 0x1f, 0xe1, 0x64, 0x24, 0x9b, 0xcf, 0x69, 0x55, 0x6f, 0x1f, + 0x42, 0xe1, 0xc2, 0xad, 0xbb, 0x1b, 0x83, 0x52, 0x34, 0xb9, 0xdf, 0x59, 0x55, 0x4f, 0x0d, 0xa5, + 0x11, 0xa0, 0x37, 0x3d, 0xd5, 0xff, 0xa5, 0x7c, 0xdf, 0xb5, 0xbf, 0x16, 0x36, 0xb0, 0xad, 0xdb, + 0x87, 0xba, 0xf6, 0x37, 0x3c, 0x9b, 0xff, 0x8b, 0x39, 0x28, 0x5d, 0x60, 0xa8, 0xf4, 0x5b, 0xc7, + 0xe8, 0x89, 0x84, 0x1e, 0xb8, 0x4c, 0x3c, 0xf0, 0x0f, 0x0e, 0x6a, 0x5c, 0x90, 0xae, 0x2f, 0xb6, + 0xf9, 0x47, 0x8f, 0xd8, 0x07, 0x4b, 0xbc, 0xaf, 0xc6, 0x94, 0x0e, 0x75, 0x64, 0x95, 0x9d, 0x15, + 0xe0, 0xa7, 0x44, 0xc3, 0x78, 0x12, 0xfb, 0x7e, 0xd2, 0x06, 0x29, 0xa1, 0x9f, 0x3c, 0x41, 0x9f, + 0x4c, 0xc1, 0x11, 0x4a, 0xe5, 0x05, 0x82, 0x94, 0x52, 0x1c, 0xac, 0xe9, 0x1b, 0xe5, 0x15, 0xd5, + 0xb7, 0x2c, 0xa2, 0x18, 0x8d, 0x3a, 0xdf, 0xef, 0xbd, 0xd5, 0x57, 0x69, 0x18, 0x4e, 0xfa, 0xc1, + 0x41, 0x0d, 0xf5, 0xf3, 0xca, 0xf4, 0x03, 0x9d, 0xc1, 0xb2, 0xe8, 0xcf, 0x54, 0x0f, 0x89, 0x0d, + 0x27, 0xb9, 0x40, 0xbd, 0x18, 0x21, 0x10, 0x9e, 0xaf, 0x41, 0xd1, 0x67, 0x7c, 0x66, 0x46, 0x07, + 0x1c, 0x6b, 0xf3, 0xd6, 0xdd, 0x88, 0xe3, 0xf9, 0x7c, 0x9f, 0xec, 0x87, 0x40, 0xbf, 0x96, 0x82, + 0x23, 0xde, 0xda, 0xde, 0x0f, 0x9e, 0x4b, 0xbe, 0xba, 0x3f, 0x17, 0x94, 0x5a, 0x24, 0x1e, 0x91, + 0x5a, 0x94, 0x83, 0x94, 0xa7, 0x7b, 0x51, 0x0e, 0xe3, 0x39, 0x18, 0xf7, 0x2f, 0xfe, 0xbc, 0x8f, + 0x17, 0x0e, 0xdb, 0xce, 0x9c, 0xe6, 0xbd, 0x0d, 0x1c, 0xed, 0x90, 0x83, 0x40, 0xa8, 0x0a, 0x79, + 0xbc, 0xd7, 0x35, 0x2d, 0x07, 0x37, 0xe9, 0x59, 0xe4, 0xbc, 0xec, 0x3e, 0x4b, 0xd7, 0x20, 0x62, + 0x60, 0xd1, 0xd3, 0xa1, 0x2f, 0x2f, 0xdd, 0xc8, 0xa2, 0xa2, 0xff, 0x63, 0x4d, 0xfe, 0xaf, 0x28, + 0xdd, 0x6c, 0xb3, 0xf1, 0xff, 0x03, 0x00, 0x00, 0xff, 0xff, 0x73, 0x3c, 0xb3, 0x75, 0xb7, 0x9b, + 0x00, 0x00, } r := bytes.NewReader(gzipped) gzipr, err := compress_gzip.NewReader(r)